/* =========================================
   HERO SECTION
========================================= */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}


/* VIDEO */

.hero-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

    filter: brightness(0.55);
}


/* OVERLAY */

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.45),
            rgba(0,0,0,0.65)
        );

    z-index: 2;
}


/* CONTENIDO */

.hero-content {
    position: relative;
    z-index: 3;

    max-width: 950px;

    padding: 2rem;
    padding-top: 100px;

    animation: heroFade 1.5s ease forwards;
}


/* TAGLINE */

.hero-tagline {
    font-size: 1.3rem;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: #d4af37;

    margin-bottom: 1.2rem;

    font-weight: 500;
}


/* TITULO */

.hero-title {
    font-family: 'Comfortaa', sans-serif;

    font-size: clamp(2.8rem, 5.5vw, 4.5rem);

    line-height: 1.1;

    font-weight: 700;

    color: #ffffff;

    margin-bottom: 1.5rem;

    text-shadow:
        0 4px 20px rgba(0,0,0,0.45);
}


/* DESCRIPCIÓN */

.hero-description {
    font-size: 1.15rem;

    line-height: 1.8;

    color: rgba(255,255,255,0.88);

    max-width: 700px;

    margin: 0 auto 2.5rem;
}


/* BOTONES */

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 1rem;

    flex-wrap: wrap;
}


/* BOTONES GENERALES */

.btn {
    display: inline-flex;

    justify-content: center;
    align-items: center;

    padding: 1rem 2.2rem;

    border-radius: 50px;

    font-size: 1rem;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.35s ease;
}


/* BOTÓN PRINCIPAL */

.btn-primary {
    background: linear-gradient(
        135deg,
        #d4af37,
        #f3d57a
    );

    color: var(--navy);

    box-shadow:
        0 8px 24px rgba(212,175,55,0.35);
}

.btn-primary:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 28px rgba(212,175,55,0.5);
}


/* BOTÓN SECUNDARIO */

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);

    color: white;

    backdrop-filter: blur(4px);

    background: rgba(255,255,255,0.05);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);

    transform: translateY(-4px);
}


/* ANIMACIÓN */

@keyframes heroFade {

    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   HERO EXTRA ANIMATIONS
========================================= */

.hero-content {
    transition:
        transform 0.3s linear;
}


/* SCROLL INDICATOR */

.scroll-indicator {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    width: 32px;
    height: 54px;

    border:
        2px solid rgba(255,255,255,0.55);

    border-radius: 30px;

    z-index: 3;

    display: flex;

    justify-content: center;

    padding-top: 10px;

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* PUNTO */

.scroll-indicator span {
    width: 6px;
    height: 6px;

    background: #d4af37;

    border-radius: 50%;

    animation:
        scrollMove 2s infinite;
}


/* ANIMACIÓN */

@keyframes scrollMove {

    0% {
        transform: translateY(0);
        opacity: 1;
    }

    70% {
        transform: translateY(18px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }

}

/* =========================================
   SCROLL INDICATOR RESPONSIVE
========================================= */

@media (max-height: 820px) {

    .scroll-indicator {
        display: none;
    }

}@media (max-width: 768px) {

    .scroll-indicator {
        display: none;
    }

}