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

/* ─── VARIABLES ─── */
:root {
    --bg:           #0D0015;
    --bg2:          #15002A;
    --bg3:          #1A0030;
    --pink:         #FF1E9E;
    --pink-dim:     rgba(255, 30, 158, 0.15);
    --pink-glow:    rgba(255, 30, 158, 0.35);
    --green:        #00FF57;
    --green-dim:    rgba(0, 255, 87, 0.12);
    --green-glow:   rgba(0, 255, 87, 0.3);
    --blue:         #00C2FF;
    --blue-dim:     rgba(0, 194, 255, 0.1);
    --blue-glow:    rgba(0, 194, 255, 0.3);
    --yellow:       #FFD600;
    --white:        #FFFFFF;
    --muted:        rgba(255, 255, 255, 0.45);
    --muted-dim:    rgba(255, 255, 255, 0.2);
    --border:       rgba(255, 255, 255, 0.08);
    --border-hi:    rgba(255, 255, 255, 0.15);
}

/* ─── BASE ─── */
html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: clip;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0 2.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 0, 21, 0.75);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
    background: rgba(13, 0, 21, 0.95);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.nav-logo-img {
    height: 32px;
    width: auto;
    display: block;
    opacity: 0.5;
    transition: opacity 0.3s;
}
.nav-logo:hover .nav-logo-img {
    opacity: 0.8;
}

.nav-logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--white);
    line-height: 1;
}

.nav-logo-sub {
    font-family: 'Syne', sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    line-height: 1;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-cta {
    background: var(--pink);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
    opacity: 0.85;
    box-shadow: 0 0 20px var(--pink-glow);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.navbar.open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.open .nav-hamburger span:nth-child(2) { opacity: 0; }
.navbar.open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Panel móvil y backdrop: ocultos en desktop */
.mobile-menu     { display: none; }
.mobile-backdrop { display: none; }

/* ─── FONDO AURORA ─── */
.page-art {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    filter: blur(90px);
    mix-blend-mode: screen;
    will-change: transform, opacity;
}

.aurora-pink {
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, #FF1E9E 0%, transparent 70%);
    opacity: 0.14;
    animation: float-pink 20s ease-in-out infinite;
}

.aurora-green {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #00FF57 0%, transparent 70%);
    opacity: 0.11;
    animation: float-green 24s ease-in-out infinite;
}

.aurora-blue {
    width: 48vw;
    height: 48vw;
    background: radial-gradient(circle, #00C2FF 0%, transparent 70%);
    opacity: 0.11;
    animation: float-blue 28s ease-in-out infinite;
}

.aurora-yellow {
    width: 44vw;
    height: 44vw;
    background: radial-gradient(circle, #FFD600 0%, transparent 70%);
    opacity: 0.09;
    animation: float-yellow 22s ease-in-out infinite;
}

.aurora-purple {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, #9B30FF 0%, transparent 70%);
    opacity: 0.11;
    animation: float-purple 26s ease-in-out infinite;
}

/* Cada orbe viaja por zonas distintas de la pantalla */
@keyframes float-pink {
    0%   { transform: translate(5vw,   5vh);  }
    25%  { transform: translate(52vw, 12vh);  }
    50%  { transform: translate(40vw, 58vh);  }
    75%  { transform: translate(4vw,  52vh);  }
    100% { transform: translate(5vw,   5vh);  }
}

@keyframes float-green {
    0%   { transform: translate(52vw,  4vh);  }
    25%  { transform: translate(4vw,  50vh);  }
    50%  { transform: translate(22vw,  8vh);  }
    75%  { transform: translate(50vw, 54vh);  }
    100% { transform: translate(52vw,  4vh);  }
}

@keyframes float-blue {
    0%   { transform: translate(22vw, 32vh);  }
    25%  { transform: translate(48vw, 56vh);  }
    50%  { transform: translate(3vw,   8vh);  }
    75%  { transform: translate(54vw, 10vh);  }
    100% { transform: translate(22vw, 32vh);  }
}

@keyframes float-yellow {
    0%   { transform: translate(48vw, 54vh);  }
    25%  { transform: translate(22vw, 28vh);  }
    50%  { transform: translate(54vw,  8vh);  }
    75%  { transform: translate(4vw,   8vh);  }
    100% { transform: translate(48vw, 54vh);  }
}

@keyframes float-purple {
    0%   { transform: translate(4vw,  50vh);  }
    25%  { transform: translate(6vw,   4vh);  }
    50%  { transform: translate(52vw, 52vh);  }
    75%  { transform: translate(24vw, 30vh);  }
    100% { transform: translate(4vw,  50vh);  }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video de fondo (YouTube iframe) — cubre 100% igual que Campo Marte */
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

.hero-yt-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000;
}

.hero-yt-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120vw;
    height: 67.5vw;
    min-height: 120vh;
    min-width: 213.33vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}


/* Overlay sutil — deja ver el video, oscurece solo en los bordes */
.hero-yt-blocker {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to bottom,
        rgba(13, 0, 21, 0.1) 0%,
        rgba(13, 0, 21, 0.0) 30%,
        rgba(13, 0, 21, 0.0) 55%,
        rgba(13, 0, 21, 0.65) 100%
    );
}

/* Blobs quitados del hero — interfieren con el video */
.hero-bg { display: none; }

/* Hero content — entra animado al cargar, igual que Campo Marte */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 38vh;
    animation: heroEnter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

@keyframes heroEnter {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--pink);
    display: inline-block;
}

.hero-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(5rem, 14vw, 11rem);
    letter-spacing: 0.05em;
    line-height: 0.9;
    color: var(--white);
    text-shadow: 0 0 80px var(--pink-glow), 0 0 160px var(--pink-glow);
    animation: brandPulse 4s ease-in-out infinite;
}

@keyframes brandPulse {
    0%, 100% { text-shadow: 0 0 80px var(--pink-glow), 0 0 160px var(--pink-glow); }
    50%       { text-shadow: 0 0 120px rgba(255,30,158,0.6), 0 0 220px rgba(255,30,158,0.3); }
}

.brand-sub {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(0.65rem, 2vw, 0.9rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--pink);
    border: 1px solid var(--pink);
    padding: 5px 16px;
    border-radius: 2px;
}

.hero-h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    letter-spacing: 0.04em;
    line-height: 1;
    gap: 2px;
}

.h1-white  { color: var(--white); }
.h1-green  { color: var(--green); text-shadow: 0 0 30px var(--green-glow); }
.h1-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.5);
}

.hero-features {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.feat-dot { color: var(--pink); font-size: 7px; }

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Buttons */
.btn-primary {
    background: var(--pink);
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 2px;
    text-decoration: none;
    transition: opacity 0.2s, box-shadow 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 0 30px var(--pink-glow);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid var(--border-hi);
    border-radius: 2px;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-ghost:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.05);
    transform: translateY(-1px);
}

/* Hero bottom bar */
.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    align-items: stretch;
    border-top: 1px solid var(--border);
    background: rgba(13, 0, 21, 0.6);
    backdrop-filter: blur(12px);
}

.hero-location-badge,
.hero-date-badge,
.hero-countdown {
    flex: 1;
    min-width: 0;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-right: 1px solid var(--border);
    overflow: hidden;
}

.hero-countdown { border-right: none; justify-content: center; gap: 12px; }

.hero-location-badge svg { color: var(--pink); flex-shrink: 0; }
.hero-location-badge > div { min-width: 0; overflow: hidden; flex: 1; }
.aztlan-badge-logo { display: block; height: 40px; width: auto; flex-shrink: 0; opacity: 0.95; margin-left: auto; padding-left: 10px; }

.badge-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--white);
}

.badge-city {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-top: 2px;
}

.badge-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.badge-dates {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--green);
    letter-spacing: -0.01em;
}

.cd-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.cd-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
}

.cd-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.cd-sep {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 14px;
}

/* Scroll indicator — igual al de Campo Marte */
.hero-scroll-btn {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    animation: heroEnter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1s both;
}

.hero-scroll-btn span {
    font-family: 'Syne', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.hero-scroll-chevron {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    animation: chevronBounce 1.8s ease-in-out infinite;
}

.hero-scroll-chevron svg {
    display: block;
    color: var(--white);
    opacity: 0.8;
}

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

/* Bottom bar — se anima entrando con delay */
.hero-bottom {
    animation: heroEnter 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

/* ─── TICKER ─── */
.ticker {
    background: var(--pink);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    animation: ticker 28s linear infinite;
    will-change: transform;
}

.ticker-item {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
}

.ticker-sep {
    font-size: 7px;
    color: rgba(255,255,255,0.5);
}

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── SECTION COMMONS ─── */
.section-num {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.75rem;
}

.section-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.section-h2 em {
    color: var(--green);
    font-style: normal;
    text-shadow: 0 0 20px var(--green-glow);
}

.section-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 480px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* ─── SECCIÓN EVENTO ─── */
.section-evento {
    padding: 7rem 2.5rem;
    border-bottom: 1px solid var(--border);
}

.stat-row {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.stat {
    position: relative;
    padding-left: 1.25rem;
}

.stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--pink), var(--green));
    border-radius: 2px;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.02em;
    line-height: 1;
    color: var(--white);
}

.stat-aztlan-logo { display: flex; justify-content: center; margin-top: 2rem; }
.stat-aztlan-logo img { height: 56px; width: auto; opacity: 0.9; }

.stat-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
}

.col-visual {
    width: 100%;
    aspect-ratio: 16/9;
    min-height: 260px;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.vp-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-dim);
    position: relative;
    z-index: 1;
}

.vp-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(circle at center, var(--pink-dim), transparent 70%);
    animation: vpGlow 3s ease-in-out infinite;
}

@keyframes vpGlow {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* ─── EXPERIENCIAS ─── */
.section-exp {
    padding-bottom: 0;
    border-bottom: 1px solid var(--border);
}

.exp-header {
    padding: 7rem 2.5rem 3rem;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.exp-block {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.75rem;
    min-height: 320px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: default;
}

.exp-block:nth-child(2n) { border-right: none; }
.exp-block:nth-child(3),
.exp-block:nth-child(4)  { border-bottom: none; }

.exp-block:hover { transform: translateY(-4px); }
.exp-block:hover .exp-glow { opacity: 1; }

.exp-futbol  { background: #12001E; }
.exp-gastro  { background: #001A0A; }
.exp-arte    { background: #1A0A00; }
.exp-musica  { background: #001018; }

.exp-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.25;
    transition: opacity 0.4s;
    z-index: 0;
}
.exp-block:hover .exp-bg-img { opacity: 0.38; }

.exp-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.exp-futbol .exp-glow  { background: radial-gradient(circle at bottom left, var(--pink-dim), transparent 70%); }
.exp-gastro .exp-glow  { background: radial-gradient(circle at bottom left, var(--green-dim), transparent 70%); }
.exp-arte   .exp-glow  { background: radial-gradient(circle at bottom left, rgba(255,150,0,0.1), transparent 70%); }
.exp-musica .exp-glow  { background: radial-gradient(circle at bottom left, var(--blue-dim), transparent 70%); }

.exp-icon {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    opacity: 0.9;
    transition: transform 0.3s, opacity 0.3s;
}

.exp-block:hover .exp-icon {
    transform: scale(1.1) translateY(-3px);
    opacity: 1;
}

.exp-futbol .exp-icon { color: var(--pink); }
.exp-gastro .exp-icon { color: var(--green); }
.exp-arte   .exp-icon { color: var(--yellow); }
.exp-musica .exp-icon { color: var(--blue); }

.exp-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.exp-futbol  .exp-title { color: var(--pink); }
.exp-gastro  .exp-title { color: var(--green); }
.exp-arte    .exp-title { color: var(--yellow); }
.exp-musica  .exp-title { color: var(--blue); }

.exp-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    max-width: 340px;
    position: relative;
    z-index: 1;
}

/* ─── LINEUP ─── */
.section-lineup {
    padding: 7rem 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.section-lineup .section-num { color: var(--muted-dim); }
.section-lineup .section-h2  { color: var(--white); }
.section-lineup .section-h2 em { color: var(--green); }

.lineup-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 2.5rem;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.artist-card {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.artist-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), var(--green));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.artist-card:hover { background: rgba(255,255,255,0.03); }
.artist-card:hover::before { transform: scaleX(1); }

.artist-img {
    width: 100%;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg2);
    border-bottom: 1px solid var(--border);
    transition: transform 0.4s;
}

.artist-card:hover .artist-img { transform: scale(1.03); }

.artist-img.no-img {
    background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.artist-info {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.artist-num {
    font-size: 10px;
    letter-spacing: 0.18em;
    color: var(--muted-dim);
    font-weight: 500;
}

.artist-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.artist-tag {
    display: inline-block;
    background: var(--green);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 2px;
    width: fit-content;
    margin-top: 2px;
}

.artist-date {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted-dim);
    margin-top: auto;
    padding-top: 0.75rem;
}

.artist-soon .soon-name { color: var(--pink); }

/* ─── PROGRAMA: NAVEGADOR SEMANAL ─── */
.prog-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.prog-week-btn {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}
.prog-week-btn:hover:not(:disabled) { border-color: var(--pink); color: var(--pink); }
.prog-week-btn:disabled { opacity: 0.25; cursor: not-allowed; }

.prog-days {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    flex: 1;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.prog-days::-webkit-scrollbar { display: none; }

.prog-day {
    flex: 1;
    min-width: 0;
    padding: 8px 6px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    transition: all 0.2s;
    position: relative;
}
.prog-day-name  { font-family: 'Inter', sans-serif; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.06em; }
.prog-day-num   { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; line-height: 1; }
.prog-day-month { font-family: 'Inter', sans-serif; font-size: 0.6rem; opacity: 0.55; }

.prog-day.has-acts { color: var(--white); border-color: rgba(255,255,255,0.18); }
.prog-day.has-acts::after {
    content: '';
    display: block;
    width: 4px; height: 4px;
    background: var(--pink);
    border-radius: 50%;
    margin: 3px auto 0;
}
.prog-day.active {
    border-color: var(--pink);
    color: var(--white);
    background: rgba(255,30,158,0.1);
}
.prog-day.active::after { background: var(--white); }
.prog-day.disabled { opacity: 0.18; cursor: not-allowed; pointer-events: none; }
.prog-day:hover:not(.disabled):not(.active) { border-color: rgba(255,255,255,0.35); color: var(--white); }

/* Filtros categoría */
.prog-cats {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    margin-bottom: 2rem;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.prog-cats::-webkit-scrollbar { display: none; }

.prog-cat {
    flex-shrink: 0;
    padding: 5px 15px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--muted);
    cursor: pointer;
    font-family: 'Syne', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: all 0.2s;
}
.prog-cat:hover { border-color: rgba(255,255,255,0.35); color: var(--white); }
.prog-cat.active { border-color: var(--green); color: var(--green); background: rgba(0,255,87,0.06); }

/* Grid de actividades */
.prog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.25rem;
}

.act-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s;
    cursor: pointer;
}
.act-card:hover { transform: translateY(-4px); }
.act-card.hidden { display: none; }
.act-card img {
    width: 100%;
    display: block;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
}
.act-card-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    background: var(--bg2);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.prog-empty {
    display: none;
    text-align: center;
    padding: 4rem 1rem;
    color: var(--muted);
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
}

/* ─── BOLETOS ─── */
.section-boletos {
    padding: 7rem 2.5rem;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.boletos-header {
    margin-bottom: 3rem;
}

.boletos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.boleto-card {
    background: var(--bg);
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.2s;
    position: relative;
}

.boleto-card:hover { background: rgba(255,255,255,0.03); }

.boleto-featured {
    background: var(--bg3);
    outline: 1px solid var(--pink);
    outline-offset: -1px;
}

.boleto-featured:hover { background: var(--bg3); }

.boleto-badge {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 4px;
}

.boleto-type {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-dim);
    font-weight: 500;
}

.boleto-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.boleto-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    letter-spacing: 0.02em;
    color: var(--green);
    text-shadow: 0 0 20px var(--green-glow);
    margin-top: 4px;
    line-height: 1;
}

.boleto-featured .boleto-price { color: var(--pink); text-shadow: 0 0 20px var(--pink-glow); }

.boleto-price sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
}

.boleto-desde {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-dim);
    margin-top: 8px;
}

.boleto-cats {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.boleto-cats li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.bcat-label {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 400;
}

.bcat-price {
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
}

.boletos-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--pink);
    border-radius: 6px;
    padding: 14px 16px;
    margin-bottom: 2rem;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.boletos-info strong { color: var(--white); }

.boleto-tier {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2px;
}

.boleto-tier-plata { color: #c0c8d8; }
.boleto-tier-oro   { color: #e8c97a; }

.boleto-includes {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 12px;
}

.boleto-includes li {
    font-size: 0.72rem;
    color: var(--muted);
    padding-left: 14px;
    position: relative;
    line-height: 1.4;
}

.boleto-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-size: 0.65rem;
}

.boleto-featured .boleto-includes li::before { color: var(--pink); }

.boleto-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.boletos-nota {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--muted-dim);
    text-align: center;
}

.boletos-nota strong { color: var(--white); }
.boletos-nota a { color: var(--pink); text-decoration: underline; }

/* ─── PÁGINA TYC ─── */
.tyc-page { background: var(--bg); min-height: 100vh; }
.tyc-hero { padding: 8rem 0 3rem; background: linear-gradient(180deg, #1a0030 0%, var(--bg) 100%); border-bottom: 1px solid var(--border); }
.tyc-back { margin-bottom: 1.5rem; }
.tyc-back a { color: var(--muted); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.tyc-back a:hover { color: var(--white); }
.tyc-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white); letter-spacing: 0.04em; margin: 0 0 0.5rem; }
.tyc-subtitle { color: var(--pink); font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; }
.tyc-body { padding: 4rem 0 6rem; max-width: 780px; }
.tyc-body p { color: var(--muted); line-height: 1.8; margin: 0 0 1.2rem; font-size: 0.95rem; }
.tyc-body a { color: var(--pink); }
.tyc-h2 { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--white); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--border); }
.tyc-list { color: var(--muted); font-size: 0.95rem; line-height: 1.8; padding-left: 1.5rem; margin: 0 0 1.2rem; }
.tyc-list li { margin-bottom: 0.4rem; }
.tyc-plata { color: #c0c8d8; font-weight: 700; }
.tyc-oro { color: #e8c97a; font-weight: 700; }
.tyc-table-wrap { overflow-x: auto; margin: 0 0 1.5rem; }
.tyc-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.tyc-table th { background: rgba(255,255,255,0.05); color: var(--white); font-weight: 700; padding: 0.75rem 1rem; text-align: left; border-bottom: 1px solid var(--border); }
.tyc-table td { color: var(--muted); padding: 0.65rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.tyc-table tr:hover td { background: rgba(255,255,255,0.02); }
.tyc-nota { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; margin: 2.5rem 0; }
.tyc-nota p { margin: 0 0 0.75rem; }
.tyc-nota p:last-child { margin: 0; }
.tyc-cta { text-align: center; margin-top: 3rem; }

/* ─── CARRUSEL BANNERS ─── */
.section-banners {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.banner-track {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.75s ease;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}


.banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.banner-pill {
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-dim);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 99px;
}

.banner-placeholder-text {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    letter-spacing: 0.04em;
    border: 1px dashed rgba(255,255,255,0.1);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
}

/* Controles: flechas + dots */
.banner-controls {
    position: absolute;
    bottom: 0.9rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.banner-dots {
    display: flex;
    gap: 6px;
}

.banner-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.banner-dot.active {
    background: var(--pink);
    transform: scale(1.35);
}

.banner-arrow {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.banner-arrow:hover {
    background: rgba(255,255,255,0.12);
    color: var(--white);
}

/* ─── PATROCINADORES ─── */
.section-sponsors {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sponsors-eyebrow {
    font-family: 'Syne', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted-dim);
    text-align: center;
    margin-bottom: 1.75rem;
}

.sponsors-ticker-wrap {
    background: #fff;
    overflow: hidden;
    padding: 1.6rem 0;
    position: relative;
}

/* fade-out en los bordes */
.sponsors-ticker-wrap::before,
.sponsors-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.sponsors-ticker-wrap::before { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.sponsors-ticker-wrap::after  { right: 0; background: linear-gradient(to left,  #fff, transparent); }

.sponsors-ticker-inner {
    display: flex;
    align-items: center;
    width: max-content;
    animation: sponsorScroll 22s linear infinite;
    will-change: transform;
}

.sponsors-ticker-inner:hover {
    animation-play-state: paused;
}

.sponsor-logo-img {
    width: 148px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    margin: 0 2.5rem;
}

@keyframes sponsorScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ─── CONTACTO ─── */
/* ─── CONTACTO ─── */
.section-contacto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.ctc-col {
    padding: 5rem 4rem;
}

.ctc-col--info {
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ctc-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 6vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: var(--white);
    margin: 0;
}

.ctc-email {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.ctc-email:hover { color: var(--white); }

.ctc-social {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.ctc-social-link {
    color: var(--muted);
    display: flex;
    transition: color 0.2s;
}
.ctc-social-link:hover { color: var(--pink); }
.ctc-social-link svg { width: 30px; height: 30px; }

/* Form col */
.ctc-col--form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ctc-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.ctc-honey {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.ctc-input {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.ctc-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.ctc-input:focus { border-color: var(--pink); }
.ctc-input.input-error { border-color: #ff4444; }
.ctc-input.input-ok    { border-color: var(--green); }

.ctc-input-row {
    display: flex;
    gap: 0;
}
.ctc-input--email {
    border-radius: 8px 0 0 8px;
    border-right: none;
    flex: 1;
}
.ctc-submit {
    background: var(--pink);
    border: none;
    border-radius: 0 8px 8px 0;
    width: 56px;
    flex-shrink: 0;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ctc-submit:hover { background: #d4167f; }

.ctc-msg {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    background: rgba(255, 171, 0, 0.08);
    border: 1px solid #ffab00;
    color: #ffab00;
}
.ctc-msg--ok {
    background: rgba(0, 200, 83, 0.08);
    border-color: var(--green);
    color: var(--green);
}

/* ─── FOOTER ─── */
.footer {
    background: #08000F;
    padding: 4rem 2.5rem 2rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-logos-sep {
    display: block;
    width: 1px;
    height: 32px;
    background: var(--border);
    opacity: 0.6;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    opacity: 0.5;
}

.footer-soccer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.footer-powered-by {
    font-family: 'Syne', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.6;
}

.footer-soccer-logo {
    height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.55;
}

.footer-tagline {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink);
    margin-top: 6px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    width: fit-content;
}

.footer-nav a:hover { color: var(--white); }

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-location {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
}

.footer-dates {
    font-size: 11px;
    color: var(--green);
    letter-spacing: 0.06em;
}

.footer-email {
    font-size: 11px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    margin-top: 4px;
}

.footer-email:hover { color: var(--pink); }

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover {
    border-color: var(--pink);
    color: var(--white);
    background: rgba(255,30,158,0.08);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy,
.footer-legal {
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--muted-dim);
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.06em;
    color: var(--muted-dim);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-powered:hover { color: var(--muted); }
.footer-powered-logo {
    height: 18px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    opacity: 0.55;
    filter: brightness(0) invert(1);
    transition: opacity 0.2s;
}
.footer-powered:hover .footer-powered-logo { opacity: 0.85; }
.footer-powered-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-dim);
}

/* ─── STICKY PINNED SECTION ─── */
.sticky-wrap  { height: auto; }
.sticky-pinned { position: relative; height: auto; overflow: visible; }
.over-sticky   { position: relative; }

/* ─── ANIMACIONES SCROLL ─── */

/* Base: sube desde abajo */
.reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Entra desde la izquierda */
.reveal-left {
    opacity: 0;
    transform: translateX(-70px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Entra desde la derecha */
.reveal-right {
    opacity: 0;
    transform: translateX(70px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Escala + sube (para cards y stats) */
.reveal-scale {
    opacity: 0;
    transform: scale(0.88) translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Flip 3D desde abajo (boletos) */
.reveal-flip {
    opacity: 0;
    transform: perspective(700px) rotateX(-18deg) translateY(30px);
    transform-origin: top center;
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-flip.visible {
    opacity: 1;
    transform: perspective(700px) rotateX(0deg) translateY(0);
}

/* Zoom desde afuera (galería) */
.reveal-zoom {
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-zoom.visible {
    opacity: 1;
    transform: scale(1);
}

/* Wipe desde abajo — clip-path directo, sin wrapper */
.reveal-clip {
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Estado visible — todos */
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}

.reveal-clip.visible {
    clip-path: inset(0 0 0% 0);
}

/* Delays para stagger (JS los asigna via --stagger-delay) */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-clip {
    transition-delay: var(--stagger-delay, 0ms);
}

/* ─── SECCIÓN VIDEO ─── */
.section-video {
    padding: 7rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}

.video-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
}

.video-wrapper--mobile { display: none; }

@media (max-width: 768px) {
    .video-wrapper--desktop { display: none; }
    .video-wrapper--mobile {
        display: block;
        aspect-ratio: 9 / 16;
        max-width: 360px;
        margin: 0 auto;
    }
}

.video-wrapper iframe {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: calc(100% + 100px);
    border: none;
}

/* Placeholder cuando no hay video real */
.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg3) 100%);
}

.video-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px var(--pink-glow);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.video-play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 60px var(--pink-glow);
}

.video-play-btn svg { margin-left: 4px; }

.video-placeholder-label {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted-dim);
}

/* Grid de clips secundarios */
.video-clips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.video-clip {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.video-clip:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
}

.video-clip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.video-clip:hover img { transform: scale(1.05); }

.video-clip-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,0,21,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.video-clip:hover .video-clip-overlay { background: rgba(255,30,158,0.2); }

.video-clip-play {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.video-clip:hover .video-clip-play { background: var(--pink); border-color: var(--pink); }

/* ─── GALERÍA DE IMÁGENES ─── */
.section-galeria {
    padding: 5rem 0 4rem;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.galeria-header { margin-bottom: 2.5rem; }

/* ── Ticker ── */
.galeria-ticker { display: flex; flex-direction: column; gap: 8px; }

.galeria-ticker-row {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.galeria-ticker-track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: galeria-left 38s linear infinite;
}

.galeria-ticker-track--rev {
    animation: galeria-right 32s linear infinite;
}

.galeria-ticker-row:hover .galeria-ticker-track { animation-play-state: paused; }

@keyframes galeria-left  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes galeria-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.galeria-item {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
    overflow: hidden;
    position: relative;
    cursor: zoom-in;
    border-radius: 6px;
    background: linear-gradient(90deg, #1a002e 25%, #2a0045 50%, #1a002e 75%);
    background-size: 200% 100%;
    animation: galeria-shimmer 1.6s infinite;
}

@keyframes galeria-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.galeria-item.loaded { animation: none; background: none; }

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22,1,0.36,1), filter 0.4s;
    filter: brightness(0.82) saturate(1.1);
}

.galeria-item img.img-loaded { opacity: 1; }

.galeria-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.2);
}

.galeria-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,0,21,0.5) 0%, transparent 55%);
    pointer-events: none;
    transition: opacity 0.3s;
}

/* ── Lightbox galería ── */
.galeria-lb {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.galeria-lb.open { display: flex; }

.galeria-lb img {
    max-width: 88vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 60px rgba(0,0,0,0.8);
    user-select: none;
}

.galeria-lb-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.galeria-lb-close:hover { background: rgba(255,255,255,0.18); }

.galeria-lb-prev,
.galeria-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    user-select: none;
}

.galeria-lb-prev { left: 1.5rem; }
.galeria-lb-next { right: 1.5rem; }
.galeria-lb-prev:hover,
.galeria-lb-next:hover { background: rgba(255,30,158,0.35); border-color: var(--pink); }

/* Visual placeholder con imagen demo */
.visual-placeholder.has-img {
    padding: 0;
    overflow: hidden;
}

.visual-placeholder.has-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(1.15);
    transition: transform 0.5s;
}

.visual-placeholder.has-img:hover img { transform: scale(1.03); }

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.93);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.28s ease;
    padding: 1rem;
}

.lightbox.open { opacity: 1; }

.lightbox-inner {
    max-width: 95vw;
    max-height: 90vh;
    overflow: auto;
    border-radius: 6px;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
}

.lightbox-inner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Botón cerrar — fuera del overlay, siempre encima del navbar */
.lightbox-close {
    display: none;
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 10002;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, opacity 0.28s;
    backdrop-filter: blur(8px);
    opacity: 0;
}

.lightbox-close.open  { opacity: 1; }
.lightbox-close:hover { background: rgba(60, 60, 60, 0.95); }

@media (max-width: 768px) {
    .lightbox { padding: 0; }
    .lightbox-inner {
        width: 100%;
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
        overflow: auto;
    }
    .lightbox-inner img {
        width: 100%;
        height: auto;
        border-radius: 0;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .boletos-grid { grid-template-columns: 1fr; }
    .footer-top   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    /* ── Navbar ── */
    .nav-hamburger { display: flex; }
    .nav-links     { display: none; }
    .nav-cta       { display: none; }
    .nav-logo-img  { height: 26px; opacity: 0.55; }

    /* ── Hero móvil ── */
    .hero-content      { margin-top: 55vh; }

    /* Hamburger → X cuando está abierto */
    .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── Backdrop ── */
    .mobile-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-backdrop.open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* ── Panel lateral ── */
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 80vw;
        max-width: 300px;
        background: #15002A;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 9999;
        overflow-y: auto;
        transform: translateX(105%);
        transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    /* Cabecera del panel */
    .mobile-menu-header {
        padding: 1.25rem 1.5rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-top: 60px;
    }

    .mobile-menu-logo {
        height: 22px;
        width: auto;
        display: block;
        filter: none;
        mix-blend-mode: screen;
        opacity: 0.82;
        margin-bottom: 2px;
    }

    .mobile-menu-sub {
        font-family: 'Syne', sans-serif;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--pink);
        margin-top: 3px;
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
        color: var(--white);
        width: 34px;
        height: 34px;
        border-radius: 50%;
        font-size: 1rem;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: background 0.18s;
    }

    .mobile-menu-close:hover { background: rgba(255, 255, 255, 0.18); }

    /* Links */
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        flex: 1;
        padding: 0.5rem 0;
    }

    .mobile-menu-nav a {
        font-family: 'Syne', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
        display: block;
        transition: color 0.15s, background 0.15s;
    }

    .mobile-menu-nav a:first-child {
        border-top: 1px solid rgba(255, 255, 255, 0.07);
    }

    .mobile-menu-nav a:hover {
        color: var(--white);
        background: rgba(255, 255, 255, 0.05);
    }

    /* CTA al fondo */
    .mobile-menu-cta {
        display: block;
        margin: 1.5rem 1.25rem 2rem;
        padding: 14px 1.25rem;
        background: var(--pink);
        color: #fff;
        font-family: 'Syne', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        text-align: center;
        border-radius: 3px;
        box-shadow: 0 4px 18px var(--pink-glow);
    }

    .mobile-menu-cta:hover { opacity: 0.88; }

    /* ── Animaciones: translateX → translateY en mobile para evitar overflow horizontal ── */
    .reveal-left  { transform: translateY(32px); }
    .reveal-right { transform: translateY(32px); }
    .reveal-left.visible,
    .reveal-right.visible { transform: none; }

    /* ── Hero ── */
    /* padding-bottom para que el contenido no quede bajo el bottom bar */
    .hero { padding-bottom: 115px; }
    .hero-content { gap: 0.85rem; }
    .hero-scroll-btn { display: none; }

    /* Bottom bar: fila que se parte en dos (location | dates) + countdown */
    .hero-bottom       { flex-direction: row; flex-wrap: nowrap; }
    .hero-date-badge   { display: none; }

    .hero-location-badge {
        flex: 1;
        padding: 0.7rem 1rem;
        border-right: 1px solid var(--border);
        border-bottom: none;
        min-width: 0;
    }
    .hero-location-badge .badge-name {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.72rem;
    }
    .hero-location-badge .badge-city { font-size: 0.6rem; }
    .aztlan-badge-logo { height: 26px; }
    .hero-location-badge svg          { display: none; }

    .hero-countdown {
        flex: 0 0 auto;
        padding: 0.7rem 1rem;
        border-right: none;
        border-bottom: none;
        justify-content: center;
    }


    /* ── Layouts ── */
    .two-col      { grid-template-columns: 1fr; gap: 2rem; }
    .col-visual   { aspect-ratio: 16/9; min-height: 200px; }
    .visual-placeholder.has-img img { object-position: center center; }
    .exp-grid     { grid-template-columns: 1fr; }
    .boletos-grid { grid-template-columns: 1fr; }
    .lineup-grid  { grid-template-columns: 1fr 1fr; }
    .video-clips  { grid-template-columns: 1fr; }
    .footer-top   { grid-template-columns: 1fr; gap: 2rem; }

    /* ── Exp blocks ── */
    .exp-block { padding: 2.5rem 1.75rem; min-height: 220px; }
    .exp-block:nth-child(n)  { border-right: none; border-bottom: 1px solid var(--border); }
    .exp-block:last-child    { border-bottom: none; }

    /* ── Container y secciones ── */
    .container { padding: 0 1.25rem; }

    /* Solo padding vertical — container maneja horizontal */
    .section-evento   { padding: 4.5rem 0; }
    .section-boletos  { padding: 4.5rem 0; }
    .section-contacto  { grid-template-columns: 1fr; }
    .ctc-col           { padding: 3.5rem 1.5rem; }
    .ctc-col--info     { border-right: none; border-bottom: 1px solid var(--border); }
    .ctc-heading       { font-size: clamp(3rem, 14vw, 5rem); }
    .section-video    { padding: 4.5rem 0; }
    .section-galeria  { padding: 4.5rem 0; }
    .section-sponsors { padding: 3rem 0; }
    .section-lineup   { padding: 4.5rem 0; }
    .exp-header       { padding: 4.5rem 1.25rem 2.5rem; }
    .lineup-header    { padding: 0; }

    /* ── Programa ── */
    .prog-nav     { gap: 0.5rem; }
    .prog-grid    { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .prog-day     { padding: 7px 4px; }
    .prog-day-num { font-size: 1.15rem; }
    .prog-day-name  { font-size: 0.58rem; }
    .prog-day-month { font-size: 0.54rem; }

    /* ── Banner carousel ── */
    .section-banners  { height: 150px; }
    .banner-arrow     { display: none; }
    .banner-controls  { bottom: 0.6rem; }

    /* ── Patrocinadores ── */
    .section-sponsors { padding: 2.5rem 0; }
    .sponsor-logo-img { width: 120px; height: 42px; margin: 0 2rem; }

    /* ── Boletos categorías ── */
    .boleto-cats li  { padding: 5px 0; }
    .bcat-label      { font-size: 0.68rem; }
    .bcat-price      { font-size: 0.78rem; }

    /* ── Galería ── */
    .galeria-item { width: 220px; height: 148px; }

    /* ── Stat Aztlán logo ── */
    .stat-row { gap: 1.5rem; align-items: center; }
    .stat-aztlan-logo img { height: 38px; }
}

@media (max-width: 480px) {
    /* ── TyC ── */
    .tyc-hero { padding: 6rem 0 2rem; }
    .tyc-body { padding: 2.5rem 0 4rem; }
    .tyc-table th, .tyc-table td { padding: 0.5rem 0.6rem; font-size: 0.8rem; }

    /* ── Hero ── */
    .hero { padding-bottom: 150px; }
    .brand-name    { font-size: clamp(3.5rem, 20vw, 5.5rem); }
    .hero-features { display: none; }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 280px;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-ghost { text-align: center; }

    /* Bottom bar completamente apilado */
    .hero-bottom    { flex-direction: column; }
    .hero-location-badge,
    .hero-date-badge {
        flex: none;
        width: 100%;
        padding: 0.7rem 1.25rem;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .hero-countdown { padding: 0.7rem 1.25rem; }
    .cd-num  { font-size: 1.6rem; }
    .cd-sep  { font-size: 1.4rem; }

    /* ── Grids ── */
    .lineup-grid  { grid-template-columns: 1fr; }
    .boletos-grid { grid-template-columns: 1fr; }

    /* ── Banner carousel ── */
    .section-banners { height: 130px; }

    /* ── Patrocinadores ── */
    .sponsor-logo-img  { width: 100px; height: 36px; margin: 0 1.5rem; }
    .sponsors-ticker-wrap::before,
    .sponsors-ticker-wrap::after { width: 50px; }

    .col-visual { min-height: 180px; }

    /* ── Galería ── */
    .galeria-item { width: 160px; height: 110px; }
    .galeria-lb-prev { left: 0.75rem; }
    .galeria-lb-next { right: 0.75rem; }

    /* ── Footer ── */
    .footer { padding: 3rem 1.25rem 1.5rem; }
    .footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; }
    .footer-logo-img  { height: 32px; opacity: 0.72; }
    .footer-logo-img    { height: 28px; }
    .footer-soccer-logo { height: 18px; }
    .footer-logos-sep   { height: 24px; }

    /* ── Programa ── */
    .prog-grid      { grid-template-columns: 1fr; }
    .prog-day       { padding: 7px 2px; }
    .prog-day-name  { font-size: 0.5rem; letter-spacing: 0; }
    .prog-day-month { font-size: 0.46rem; }
    .prog-day-num   { font-size: 1rem; }
    .prog-week-btn  { width: 30px; height: 30px; font-size: 0.8rem; flex-shrink: 0; }
    .prog-nav       { gap: 0.35rem; }
    .prog-cats      { gap: 0.3rem; }
    .prog-cat       { padding: 4px 11px; font-size: 0.7rem; }
    .act-time       { font-size: 1.2rem; }
}
