/* Reset y base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-blue: #1a237e;
    --color-blue-dark: #0d1442;
    --color-dark: #0a0a0a;
    --color-gold: #d4af37;
    --color-gold-light: #f4d03f;
    --color-white: #ffffff;
    --gradient-main: linear-gradient(135deg, var(--color-blue) 0%, var(--color-dark) 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--color-dark);
    color: var(--color-white);
    min-height: 100vh;
    line-height: 1.6;
}


.bold {
    color: var(--color-gold);
    font-weight: 900;
}

/* Topbar */
.topbar {
    background: var(--color-gold);
    color: var(--color-dark);
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 100;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video,
.video-background .fallback-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-background .fallback-bg {
    background-size: cover;
    background-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(26 35 126 / 42%) 0%, rgb(0 0 0 / 55%) 100%);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: 0px 20px; */
    padding-bottom: 70px;
    position: relative;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    margin-bottom:-42px;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--color-white) 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
        font-size: 56px;
}

.title-accent {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: var(--color-gold);
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    margin-top: 10px;
    margin-top: -72px;
    font-size: 160px;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 0px;
    opacity: 0.95;
}

.hero-features {
    list-style: none;
    margin-bottom: 46px;
    margin-top: 21px;
    text-align: left;
    display: inline-block;
    background-color: #00000061;
    padding: 11px;
    border-radius: 25px;
    border: #d4af37 2px solid;
}

.hero-features li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.hero-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.hero-cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 684px;
    margin: 0 auto 40px;
    padding-bottom: 56.25%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Botón play personalizado */
.js-hero-video video {
    cursor: pointer;
    background: #000;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f4d03f 35%, #d4af37 70%, #8a6d1f 100%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0.95;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.video-play-icon {
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 22px solid #000;
    margin-left: 4px;
}

.js-hero-video.is-playing .video-play-button {
    opacity: 0;
    pointer-events: none;
}

.js-hero-video.is-paused .video-play-button {
    opacity: 0.95;
    pointer-events: auto;
}

@media (max-width: 480px) {
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    .video-play-icon {
        border-top-width: 10px;
        border-bottom-width: 10px;
        border-left-width: 18px;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-dark);
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    border: 2px solid var(--color-gold);
}

.cta-button:hover {
    background: transparent;
    color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 768px) {
    .topbar {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
    
    .hero {
        padding: 40px 15px;
    }
    
    .hero-features li {
        font-size: 1rem;
        padding-left: 30px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
    margin-bottom: -6px;
}
    .title-main {
        letter-spacing: 1px;
                font-size: 30px;
    }
    .title-accent {
      margin-top: -47px;
    font-size: 116px;
    }
    
    .hero-description,
    .hero-cta-text {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 0.85rem;
    }
}

/* Decoración dorada (partículas) */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
