
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold: #f5c518;
    --gold-dim: #c9a200;
    --gold-glow: rgba(245, 197, 24, 0.2);
    --black: #0a0a0a;
    --black2: #111111;
    --white: #f0f0f0;
    --gray: #888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.logo-image {
    height: 80px !important;
}

/* ── NAVBAR ─────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2.5rem;

}

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.7rem;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}


.btn-login {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.6rem;
    background: var(--gold);
    color: var(--black);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
}

.btn-login:hover {
    background: #ffe033;
    box-shadow: 0 6px 32px rgba(245, 197, 24, 0.5);
    transform: translateY(-1px);
}

/* ── HERO ───────────────────────────── */
.hero {
    position: relative;
    height: 100svh;           /* usa svh para mobile (evita el bug de la barra del browser) */
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(10 10 10 / 69%) 0%, rgb(10 10 10 / 18%) 40%, rgba(10, 10, 10, 0.72) 100%), url(/public/assets/img/banner.png);
    background-size: cover;
    background-position: center center;   /* centrado en mobile, no bottom */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    padding: 100px 1.5rem 2rem;  /* padding-top para compensar navbar fija */
    animation: fadeUp 0.8s ease both;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12rem;
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 14vw, 6.5rem);  /* más grande en mobile */
    line-height: 0.95;
    letter-spacing: 0.04em;

    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.8); /* sombra para leer sobre la imagen */
    margin-bottom: 0;
}

.hero-title .gold {
    color: var(--gold);
    display: block;
    text-shadow: 0 2px 24px rgba(245,197,24,0.4);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    flex-wrap: nowrap;  /* no romper en dos líneas */
}

/* botones sociales — tamaño fijo para que no se distorsionen */
.btn-hero-primary-ig,
.btn-hero-primary-tk,
.btn-hero-primary-yt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 1rem;
    font-size: 1.4rem;
    border-radius: 30px;         /* círculo perfecto */
    text-decoration: none;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.btn-hero-primary-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}
.btn-hero-primary-tk {
    background: linear-gradient(45deg, #25f4ee 0%, #fe2c55 100%);
    color: white;
}
.btn-hero-primary-yt {
    background: linear-gradient(45deg, red 0%, darkred 100%);
    color: white;
}

.btn-hero-primary-ig:hover,
.btn-hero-primary-tk:hover,
.btn-hero-primary-yt:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 600px) {
    .navbar {
        padding: 0.85rem 1.25rem;
    }

    .logo-image {
        height: 56px !important;
    }

    .btn-login {
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

    .hero-content {
        gap: 2rem;
        padding-top: 80px;
    }

    .btn-hero-primary-ig,
    .btn-hero-primary-tk,
    .btn-hero-primary-yt {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}
.lock-icon {
    font-size: 1.1rem;
}

/* ── SCROLL INDICATOR ───────────────── */
.scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-hint svg {
    width: 18px;
    height: 18px;
    stroke: rgba(245, 197, 24, 0.5);
}

/* ── FOOTER ─────────────────────────── */
.footer {
    background: var(--black2);
    border-top: 1px solid rgba(245, 197, 24, 0.08);
    padding: 2.5rem 2rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 0.08em;
}

/* ── ANIMATIONS ─────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ── RESPONSIVE ─────────────────────── */
@media (max-width: 600px) {
    .navbar {
        padding: 1rem 1.25rem;
    }

    .btn-hero-primary {
        width: 100%;
        justify-content: center;
    }
}
