/* ============================================
   EXPOVACACIONES CALI 2026
   Brand Colors: #2c3d6b #f9167e #eab818 #545453
   ============================================ */

:root {
    /* ExpoVacaciones 2026 Brand Palette — Tropical, vibrant, vacation-inspired */
    --brand-azul: #2c3d6b;
    --brand-magenta: #f9167e;
    --brand-amarillo: #eab818;
    --brand-gris: #545453;
    --brand-verde: #1a8a4a;
    --brand-naranja: #F28C28;
    /* Functional aliases */
    --midnight: #1A1A1C;
    --midnight-light: #2C2C2E;
    --gold: var(--brand-amarillo);
    --gold-light: #f0cc4a;
    --gold-dark: #c99a10;
    --magenta: var(--brand-magenta);
    --magenta-dark: #d01068;
    --coral: var(--brand-naranja);
    --ocean-blue: var(--brand-azul);
    --turquoise: #30D5C8;
    --sunset-orange: var(--brand-naranja);
    --verde: var(--brand-verde);
    --verde-dark: #14703c;
    --verde-light: #22a85c;
    --gris: rgba(0,0,0,0.55);
    --gris-light: rgba(0,0,0,0.35);
    /* Legacy aliases */
    --azul: var(--brand-azul);
    --azul-dark: #1e2c52;
    --azul-light: #3d5290;
    --amarillo: var(--brand-amarillo);
    --amarillo-dark: var(--gold-dark);
    --teal: var(--turquoise);
    --teal-dark: #28B5A9;
    --teal-light: #5CE6DA;
    --sand: #FFF8EE;
    --sand-dark: #F5EDE3;
    --ocean: var(--brand-azul);
    --ocean-light: var(--azul-light);
    --seafoam: #F0F4F3;
    --palm: var(--verde);
    --sunset: var(--brand-naranja);
    --lagoon: var(--ocean-blue);
    --tropics: var(--brand-azul);
    /* Base */
    --blanco: #FFFFFF;
    --offwhite: #FFFCF5;
    --cream: #FFFDF8;
    --negro: #1D1D1F;
    --radius: 16px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 12px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-xl: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
    --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: 0.5px solid rgba(255, 255, 255, 0.18);
    --glass-blur: blur(20px) saturate(180%);
    --glass-dark: rgba(30, 30, 30, 0.72);
    --glow-magenta: 0 0 20px rgba(249, 22, 126, 0.3);
    --glow-teal: 0 0 20px rgba(48, 213, 200, 0.3);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Poppins', system-ui, sans-serif;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.53;
    background: var(--offwhite);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain/Noise Texture Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

img { max-width: 100%; display: block; }

img[loading="lazy"] {
    transition: opacity 0.4s ease;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 980px;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Poppins', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
    text-transform: none;
}

.btn--primary {
    background: var(--brand-verde);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(26,138,74,0.3);
    animation: none;
}

.btn--primary:hover {
    transform: scale(1.04);
    background: var(--verde-dark);
    box-shadow: 0 6px 20px rgba(26,138,74,0.35);
    animation: none;
}

.btn--primary:active {
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(26,138,74,0.2);
}

.btn--outline {
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    color: #fff;
    border: 0.5px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
    background: rgba(255,255,255,0.28);
    transform: scale(1.04);
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn--full {
    width: 100%;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    background: rgba(26, 138, 74, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
}

.header--scrolled {
    background: rgba(26, 138, 74, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(26,138,74,0.2);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    z-index: 1001;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 50px;
    transition: var(--transition);
    text-shadow: none;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

.header--scrolled .nav-link {
    color: rgba(255,255,255,0.85);
    text-shadow: none;
}

.header--scrolled .nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.15);
}

.nav-link--cta {
    background: #fff;
    color: var(--brand-verde) !important;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: none;
    font-size: 0.82rem;
    border-radius: 980px;
    padding: 9px 20px;
    text-shadow: none;
    box-shadow: 0 2px 8px rgba(255,255,255,0.25);
}

.nav-link--cta:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 16px rgba(255,255,255,0.35) !important;
    background: rgba(255,255,255,0.9) !important;
    color: var(--brand-verde) !important;
}

.header__logo-img {
    height: 64px;
    width: auto;
    transition: var(--transition);
}

.header__logo-color {
    display: block;
}

.header__logo-color .header__logo-img {
    filter: none;
}

.header__logo-white {
    display: none;
}

.header--scrolled .header__logo-img {
    height: 52px;
}

.header--scrolled .header__logo-color .header__logo-img {
    filter: none;
}

.header--scrolled .header__logo-white {
    display: none;
}

.header--scrolled .header__logo-color {
    display: block;
}

/* Responsive: hamburger menu also white by default */

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
    border-radius: 2px;
}

.header--scrolled .header__hamburger span {
    background: #fff;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100dvh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--midnight);
    overflow: hidden;
}

/* Ken Burns Slideshow */
.hero__slideshow {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 8s ease-in-out;
    will-change: opacity, transform;
}

.hero__slide--active {
    opacity: 1;
}

.hero__slide--zooming {
    transform: scale(1.12) translate(-1%, -0.5%);
}

.hero__slide:nth-child(2).hero__slide--zooming {
    transform: scale(1.1) translate(1%, 0.5%);
}

.hero__slide:nth-child(3).hero__slide--zooming {
    transform: scale(1.12) translate(-0.5%, 1%);
}

.hero__slide:nth-child(4).hero__slide--zooming {
    transform: scale(1.1) translate(0.5%, -0.5%);
}

/* Animated gradient overlay - Tropical */
.hero__gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.35) 0%,
        rgba(10, 22, 40, 0.05) 35%,
        rgba(10, 22, 40, 0.0) 50%,
        rgba(10, 22, 40, 0.4) 100%
    );
    background-size: 100% 100%;
    animation: none;
}

/* Hero vignette effect */
.hero__overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 3;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 20%, rgba(0, 20, 40, 0.55) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    text-align: center;
    z-index: 5;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero__badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0;
    margin-bottom: 2px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border: none;
}

.hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 980px;
    border: 0.5px solid rgba(255,255,255,0.18);
    color: rgba(0,0,0,0.55);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero__brand-logo {
    height: 36px;
    width: auto;
}

.hero__anato-logo {
    height: 102px;
    width: auto;
    transform: scaleX(1.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.hero__title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Poppins', system-ui, sans-serif;
    margin-bottom: 12px;
    text-transform: none;
}

.hero__title-line {
    display: block;
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
    text-shadow: 0 2px 40px rgba(0,0,0,0.2);
    -webkit-text-fill-color: unset;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
}

.hero__title-city {
    opacity: 1;
}

.hero__slogan {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.01em;
    font-style: italic;
    color: rgba(255,255,255,0.98);
    text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}



.hero__info {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero__info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.hero__info-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

/* Countdown */
.hero__countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.countdown__item {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 0.5px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 16px 8px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.countdown__number {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blanco);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.countdown__label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
    font-weight: 500;
}

.countdown__separator {
    color: rgba(255,255,255,0.3);
    font-size: 2rem;
    font-weight: 300;
}

.hero__ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: rgba(255,255,255,0.3);
    animation: bounceFade 2.5s ease-in-out infinite;
}

@keyframes bounceFade {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    30% { opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
    80% { opacity: 0.8; }
}

/* ============================================
   STATS INLINE (inside About section)
   ============================================ */
.stats-inline {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 32px;
    margin-bottom: 48px;
}

.stat-inline {
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.stat-inline:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(12, 186, 186, 0.25), transparent);
}

.stat-inline__number {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--coral);
    letter-spacing: -0.02em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-inline__suffix {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--magenta);
}

.stat-inline__label {
    font-size: 0.8rem;
    color: var(--gris);
    margin-top: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header__tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brand-verde);
    margin-bottom: 12px;
    padding: 0;
    background: none;
    border-radius: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
}

.section-header--light .section-header__tag {
    color: var(--gold-light);
    background: none;
}

.section-header__title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Poppins', system-ui, sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    font-weight: 700;
    color: var(--negro);
    line-height: 1.1;
    letter-spacing: -0.025em;
    max-width: 800px;
    margin: 0 auto;
}

.section-header__subtitle {
    font-size: 1.15rem;
    color: var(--gris);
    line-height: 1.7;
    margin-top: 16px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.section-header--light .section-header__subtitle {
    color: rgba(255,255,255,0.65);
}

/* Destination highlight pills */
.destination-highlights {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.destination-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0,0,0,0.04);
    border: 0.5px solid rgba(0,0,0,0.08);
    border-radius: 980px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--negro);
    transition: all 0.2s ease;
}

.destination-highlight:hover {
    background: rgba(0,0,0,0.07);
    transform: translateY(-1px);
}

.destination-highlight__emoji {
    font-size: 1rem;
    line-height: 1;
}

/* Icon-circle variant (flyer style) */
.destination-highlights--icons {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    justify-items: center;
    align-items: start;
    gap: 28px 20px;
    margin-top: 32px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .destination-highlights--icons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        max-width: 560px;
    }
}

@media (max-width: 600px) {
    .destination-highlights--icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 360px;
        gap: 24px 12px;
    }
}

.destination-highlight--icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 110px;
}

.destination-highlight__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.destination-highlight--icon:hover .destination-highlight__circle {
    transform: scale(1.1);
    box-shadow: 0 5px 16px rgba(0,0,0,0.18);
}

.destination-highlight--icon span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--negro);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .destination-highlight__circle {
        width: 52px;
        height: 52px;
    }
    .destination-highlight__circle svg {
        width: 24px;
        height: 24px;
    }
    .destination-highlight--icon span {
        font-size: 0.72rem;
    }
}

@media (max-width: 480px) {
    .destination-highlight--icon {
        max-width: 90px;
    }
    .destination-highlight__circle {
        width: 46px;
        height: 46px;
    }
    .destination-highlight__circle svg {
        width: 20px;
        height: 20px;
    }
    .destination-highlight--icon span {
        font-size: 0.68rem;
    }
}

.section-header--light .section-header__title {
    color: var(--blanco);
}

/* ============================================
   EL EVENTO (Reimagined)
   ============================================ */
.evento {
    background: var(--offwhite);
    overflow: hidden;
}

/* Hero de sección */
.evento__hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    max-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.evento__hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transition: transform 8s ease;
}

.evento__hero:hover .evento__hero-bg {
    transform: scale(1.03);
}

.evento__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%);
}

.evento__hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 64px;
    max-width: 700px;
}

.evento__eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 16px;
}

.evento__hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}

.evento__hero-title em {
    font-style: italic;
    color: var(--brand-amarillo);
}

.evento__hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 500px;
}

/* Stats - Boarding Pass style */
.evento__stats {
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 3;
}

.evento__stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.evento__stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.evento__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-verde), var(--brand-amarillo));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.evento__stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.evento__stat-card:hover::before {
    opacity: 1;
}

.evento__stat-card--accent {
    background: var(--brand-verde);
    color: #fff;
}

.evento__stat-card--accent .evento__stat-label {
    color: rgba(255,255,255,0.8);
}

.evento__stat-card--accent .evento__stat-number {
    color: #fff;
}

.evento__stat-card--highlight {
    background: var(--brand-amarillo);
    color: #1a1a1a;
}

.evento__stat-card--highlight .evento__stat-title {
    color: #1a1a1a;
}

.evento__stat-card--highlight .evento__stat-label {
    color: rgba(26,26,26,0.75);
}

.evento__stat-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.evento__stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-verde);
    line-height: 1;
    display: inline;
}

.evento__stat-title {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--brand-verde);
    letter-spacing: -0.01em;
}

.evento__stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-verde);
    margin-left: 2px;
}

.evento__stat-card--accent .evento__stat-suffix {
    color: rgba(255,255,255,0.9);
}

.evento__stat-label {
    font-size: 0.88rem;
    color: var(--gris);
    margin-top: 8px;
    font-weight: 500;
}

/* Experiencias Grid */
.evento__experiencias {
    padding: 80px 0 0;
}

.evento__exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.evento__exp-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
}

.evento__exp-card--large {
    grid-row: span 2;
    height: 100%;
    min-height: 660px;
}

.evento__exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.evento__exp-card:hover img {
    transform: scale(1.06);
}

.evento__exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
}

.evento__exp-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
}

.evento__exp-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-amarillo);
    margin-bottom: 10px;
    background: rgba(0,0,0,0.3);
    padding: 6px 14px;
    border-radius: 100px;
    backdrop-filter: blur(8px);
}

.evento__exp-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.evento__exp-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
}

/* Razones */
.evento__razones {
    padding: 100px 0 80px;
}

.evento__razones-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--negro);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.evento__razones-title em {
    font-style: italic;
    color: var(--brand-verde);
}

.evento__razones-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.evento__razon {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.evento__razon:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.evento__razon:nth-child(even) {
    direction: rtl;
}

.evento__razon:nth-child(even) > * {
    direction: ltr;
}

.evento__razon-img {
    height: 220px;
    overflow: hidden;
}

.evento__razon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.evento__razon:hover .evento__razon-img img {
    transform: scale(1.06);
}

.evento__razon-content {
    padding: 32px 40px 32px 0;
}

.evento__razon:nth-child(even) .evento__razon-content {
    padding: 32px 0 32px 40px;
}

.evento__razon-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--brand-verde);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.evento__razon-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 10px;
    line-height: 1.3;
}

.evento__razon-content p {
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.7;
}

.evento__cta {
    text-align: center;
    margin-top: 48px;
}

/* Responsive */
@media (max-width: 768px) {
    .evento__hero {
        height: 50vh;
        min-height: 380px;
    }
    .evento__hero-content {
        padding-bottom: 48px;
    }
    .evento__stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .evento__stat-card {
        padding: 20px 12px;
    }
    .evento__stat-number {
        font-size: 2.2rem;
    }
    .evento__stat-suffix {
        font-size: 1.1rem;
    }
    .evento__stat-title {
        font-size: 1.15rem;
    }
    .evento__exp-grid {
        grid-template-columns: 1fr;
    }
    .evento__exp-card--large {
        grid-row: span 1;
        min-height: 320px;
    }
    .evento__exp-card {
        height: 280px;
    }
    .evento__razon {
        grid-template-columns: 1fr;
    }
    .evento__razon:nth-child(even) {
        direction: ltr;
    }
    .evento__razon-img {
        height: 200px;
    }
    .evento__razon-content {
        padding: 24px !important;
    }
    .evento__razones {
        padding: 60px 0 48px;
    }
}

@media (max-width: 480px) {
    .evento__hero {
        height: 45vh;
        min-height: 320px;
    }
    .evento__stat-card {
        padding: 16px 8px;
    }
    .evento__stat-number {
        font-size: 1.8rem;
    }
    .evento__stat-title {
        font-size: 0.95rem;
    }
    .evento__stat-icon {
        font-size: 1.5rem;
    }
    .evento__exp-card {
        height: 240px;
    }
    .evento__exp-content h3 {
        font-size: 1.15rem;
    }
}

/* ============================================
   DESTINATION TICKER (Infinite scroll marquee)
   ============================================ */
.destination-ticker {
    background: linear-gradient(135deg, #14703c 0%, #0d5a30 100%);
    padding: 18px 0;
    overflow: hidden;
    position: relative;
}

.destination-ticker__track {
    display: flex;
    gap: 0;
    animation: tickerScroll 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

.destination-ticker__track span {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    font-style: normal;
    color: rgba(255,255,255,0.45);
    padding: 0 16px;
    letter-spacing: 0.04em;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   DREAM DESTINATIONS (Horizontal scroll)
   ============================================ */
.dream-destinations {
    padding: 80px 0;
    overflow: hidden;
    position: relative;
    background:
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='sand'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0.1'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23sand)' opacity='0.07'/%3E%3C/svg%3E"),
        linear-gradient(180deg, #FFF5E6 0%, #F5E6D0 25%, #EDD9BF 50%, #E8D1B0 75%, #E0C9A6 100%);
    background-size: 200px 200px, 100% 100%;
}

.dream-destinations__scroll {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.dream-destinations__track {
    display: flex;
    gap: 24px;
    width: fit-content;
    animation: dreamScroll 35s linear infinite;
}

@keyframes dreamScroll {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 12px)); }
}

.dream-destinations__card {
    flex: 0 0 300px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.dream-destinations__card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.dream-destinations__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.dream-destinations__card:hover img {
    transform: scale(1.05);
}

.dream-destinations__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
    pointer-events: none;
}

.dream-destinations__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
}

.dream-destinations__label h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 4px;
}

.dream-destinations__label p {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 1024px) {
    .dream-destinations__card {
        flex: 0 0 260px;
        height: 360px;
    }
    .dream-destinations__label h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .dream-destinations {
        padding: 60px 0;
    }
    .dream-destinations__card {
        flex: 0 0 220px;
        height: 300px;
    }
    .dream-destinations__label {
        padding: 20px;
    }
    .dream-destinations__label h3 {
        font-size: 1.15rem;
    }
    .dream-destinations__label p {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }
    .dream-destinations__track {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .dream-destinations {
        padding: 48px 0;
    }
    .dream-destinations__card {
        flex: 0 0 200px;
        height: 270px;
    }
    .dream-destinations__label h3 {
        font-size: 1rem;
    }
}

/* ============================================
   IMMERSIVE BREAK (Full-bleed image sections)
   ============================================ */
.immersive-break {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.immersive-break--tall {
    height: 75vh;
    min-height: 500px;
}

.immersive-break__image {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    transition: transform 0.3s ease-out;
}

.immersive-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,22,40,0.35) 0%, rgba(10,22,40,0.15) 40%, rgba(10,22,40,0.45) 100%);
}

.immersive-break__content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 24px;
}

.immersive-break__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.immersive-break__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--blanco);
    line-height: 1.2;
    max-width: 700px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.4);
}

.immersive-break__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 12px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .immersive-break {
        height: 50vh;
        min-height: 320px;
    }
    .immersive-break--tall {
        height: 55vh;
    }
    .immersive-break__image {
        background-attachment: scroll;
    }
}

/* ============================================
   VALLE DEL CAUCA
   ============================================ */
.valle {
    padding: 120px 0;
    background: linear-gradient(180deg, #EAF6FB 0%, #D6EEF5 50%, #C8E6EF 100%);
    position: relative;
    overflow: hidden;
}

.valle .section-header__title {
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 800;
    color: var(--brand-azul);
}

.valle .section-header__subtitle {
    color: rgba(44, 61, 107, 0.7);
    font-size: 1.2rem;
}

.valle__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.valle__card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.valle__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.valle__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.valle__card:hover img {
    transform: scale(1.06);
}

.valle__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    pointer-events: none;
}

.valle__card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.valle__card-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.valle__card-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 1024px) {
    .valle__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .valle {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .valle {
        padding: 60px 0;
    }
    .valle__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .valle__card {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .valle {
        padding: 48px 0;
    }
    .valle__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .valle__card {
        height: 220px;
    }
    .valle__card-content {
        padding: 18px;
    }
    .valle__card-content h3 {
        font-size: 1.15rem;
    }
    .valle__card-content p {
        font-size: 0.82rem;
    }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
    padding: 120px 0;
    background: linear-gradient(180deg, #F0F8F4 0%, #E6F2EC 50%, #DCEde4 100%);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(245,166,35,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12,186,186,0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    gap: 16px;
}

.gallery__item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12,24,33,0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    border-radius: var(--radius-lg);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item picture {
    display: contents;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease, brightness 0.4s ease;
    filter: contrast(1.05) saturate(1.2) brightness(1.08);
}

.gallery__item:hover img {
    transform: scale(1.06);
    filter: contrast(1.08) saturate(1.35) brightness(1.1);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item:nth-child(2) { transition-delay: 0.05s; }
.gallery__item:nth-child(3) { transition-delay: 0.1s; }
.gallery__item:nth-child(4) { transition-delay: 0.15s; }
.gallery__item:nth-child(5) { transition-delay: 0.2s; }
.gallery__item:nth-child(6) { transition-delay: 0.25s; }
.gallery__item:nth-child(7) { transition-delay: 0.3s; }
.gallery__item:nth-child(8) { transition-delay: 0.35s; }
.gallery__item:nth-child(9) { transition-delay: 0.4s; }
.gallery__item:nth-child(10) { transition-delay: 0.45s; }
.gallery__item:nth-child(11) { transition-delay: 0.5s; }
.gallery__item:nth-child(12) { transition-delay: 0.55s; }

@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
        gap: 14px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }

    .gallery__item--wide {
        grid-column: span 1;
    }
}

/* ============================================
   VIDEO SHOWCASE
   ============================================ */
.video-showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, #F0F8F4 0%, #E6F2EC 50%, #DFF0E6 100%);
    position: relative;
}

.video-showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.video-showcase__player {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--negro);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.video-showcase__video {
    width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
}

.video-showcase__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-showcase__play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-showcase__play.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-showcase__player::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
    pointer-events: none;
    border-radius: var(--radius-lg);
}

.video-showcase__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--azul);
    margin-top: 24px;
    margin-bottom: 8px;
}

.video-showcase__desc {
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .video-showcase__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .video-showcase {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .video-showcase__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }

    .video-showcase {
        padding: 48px 0;
    }
}

/* ============================================
   SUSTAINABILITY (Immersive)
   ============================================ */
.sustainability-immersive {
    padding: 120px 0;
    background: linear-gradient(180deg, #F2F7F0 0%, #E6F0E2 50%, #DAE8D4 100%);
    position: relative;
}

.sustainability-immersive__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sustainability-immersive__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--negro);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
}

.sustainability-immersive__text {
    font-size: 1.05rem;
    color: var(--gris);
    line-height: 1.8;
}

.sustainability-immersive__visual {
    text-align: center;
}

.sustainability-immersive__icon {
    font-size: 4rem;
    margin-bottom: 32px;
}

.sustainability-immersive__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sustainability-immersive__stat {
    background: rgba(255,255,255,0.8);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    box-shadow: var(--shadow);
    border: 0.5px solid rgba(0,0,0,0.04);
}

.sustainability-immersive__stat span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--turquoise);
    margin-bottom: 4px;
}

.sustainability-immersive__stat p {
    font-size: 0.78rem;
    color: var(--gris-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .sustainability-immersive__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    .sustainability-immersive__stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .sustainability-immersive {
        padding: 80px 0;
    }
    .sustainability-immersive__stats {
        grid-template-columns: 1fr;
        max-width: 240px;
        margin: 0 auto;
    }
}

/* ============================================
   EXHIBITORS
   ============================================ */
.exhibitors {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d4a2a 0%, #072e1a 100%);
    position: relative;
    overflow: hidden;
}

.exhibitors::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(ellipse at 30% 70%, rgba(26,138,74,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(234,184,24,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.exhibitors__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

.exhibitors__who h3,
.exhibitors__benefits h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 24px;
}

.exhibitors__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exhibitors__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.exhibitors__list li:hover {
    background: rgba(255,255,255,0.14);
}

.exhibitors__list li svg {
    color: var(--teal);
    flex-shrink: 0;
}

.benefit-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.benefit-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border-radius: var(--radius);
    padding: 28px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 0.5px solid rgba(255,255,255,0.1);
}

.benefit-card:hover {
    border-color: rgba(255,255,255,0.2);
    transform: scale(1.03);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    background: rgba(255,255,255,0.1);
}

.benefit-card__number {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 12px;
}

.benefit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Exhibitors Renders Gallery */
.exhibitors__renders {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.exhibitors__renders h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--blanco);
    margin-bottom: 12px;
    text-align: center;
}

.exhibitors__renders-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.exhibitors__renders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.exhibitors__render-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exhibitors__render-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.exhibitors__render-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.exhibitors__render-item p {
    padding: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 1024px) {
    .exhibitors__renders-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .exhibitors__renders-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .exhibitors__render-item img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .exhibitors__renders-grid {
        gap: 12px;
    }
    .exhibitors__render-item img {
        height: 140px;
    }
}

.exhibitors__cta {
    text-align: center;
    margin-top: 60px;
}

/* ============================================
   LOCATION
   ============================================ */
.location {
    padding: 120px 0;
    background: linear-gradient(180deg, #E8F5ED 0%, #D8EDDF 100%);
    position: relative;
    overflow: hidden;
}

.location::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.location__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.location__map {
    min-height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location__map iframe {
    width: 100%;
    height: 100%;
}

.location__venue {
    margin-bottom: 36px;
}

.location__venue h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--negro);
    margin-bottom: 8px;
}

.location__venue p {
    color: var(--gris);
    font-size: 1rem;
}

.location__options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location__option {
    display: flex;
    gap: 16px;
    align-items: start;
    background: var(--offwhite);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}

.location__option:hover {
    background: rgba(8,145,178,0.04);
    border-color: rgba(8,145,178,0.15);
}

.location__option-emoji {
    flex-shrink: 0;
    font-size: 2rem;
    animation: emojiFloat 3s ease-in-out infinite;
}

.location__option:nth-child(2) .location__option-emoji { animation-delay: 0.4s; }
.location__option:nth-child(3) .location__option-emoji { animation-delay: 0.8s; }

.location__option h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--negro);
    margin-bottom: 4px;
}

.location__option p {
    font-size: 0.88rem;
    color: var(--gris-light);
    line-height: 1.5;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: 120px 0;
    background: linear-gradient(180deg, #FFF9F0 0%, #FFF3E4 50%, #FFECD6 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(12,186,186,0.06) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.faq::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(245,166,35,0.05) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq__item {
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    border: 0.5px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq__item:hover {
    box-shadow: var(--shadow);
}

.faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--azul);
    text-align: left;
    transition: var(--transition);
}

.faq__question:hover {
    color: var(--coral);
}

.faq__question svg {
    flex-shrink: 0;
    transition: var(--transition);
    color: var(--gris-light);
}

.faq__item.active .faq__question svg {
    transform: rotate(180deg);
    color: var(--magenta);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--gris);
    line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, #0d4a2a 0%, #0a3d22 50%, #072e1a 100%);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact__desc {
    font-size: 1.22rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: start;
}

.contact__detail svg {
    flex-shrink: 0;
    color: var(--verde-light);
    margin-top: 4px;
}

.contact__detail strong {
    display: block;
    color: var(--blanco);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact__detail p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
}

/* Form */
.contact__form {
    background: var(--blanco);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--verde-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1.08rem;
    color: var(--negro);
    transition: var(--transition);
    background: var(--offwhite);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(26,138,74,0.5);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(26,138,74,0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23545453' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--negro);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-verde), var(--brand-amarillo), var(--brand-naranja), var(--brand-magenta), var(--brand-azul));
    opacity: 0.85;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--brand-amarillo);
    color: var(--brand-azul);
    transform: translateY(-2px);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo-img {
    height: 56px;
    width: auto;
}

.footer__brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-top: 12px;
    font-style: italic;
}

.footer__anato {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.footer__anato-logo {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* Institutional Logos Bar */
.footer__institutional {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__institutional span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer__institutional-logos {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__inst-logo {
    height: 36px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer__inst-logo:hover {
    opacity: 1;
}

.footer__institutional--support {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__institutional--support .footer__inst-logo {
    height: 28px;
}

.footer__links h4 {
    color: var(--blanco);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer__links a,
.footer__links p {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--amarillo);
}

.footer__bottom {
    padding: 24px 0;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ============================================
   ANIMATIONS (Scroll Reveal)
   ============================================ */

/* Pre-hide elements that will be animated — CSS-only, no JS class needed */
.js-ready .benefit-card,
.js-ready .location__option,
.js-ready .faq__item,
.js-ready .exhibitors__list li,
.js-ready .gallery__item,
.js-ready .section-header {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.js-ready .benefit-card.visible,
.js-ready .location__option.visible,
.js-ready .faq__item.visible,
.js-ready .exhibitors__list li.visible,
.js-ready .gallery__item.visible,
.js-ready .section-header.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Override: stagger-children for about grid */
.js-ready .stagger-children > * {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.js-ready .stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; }
.js-ready .stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Slide from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Slide from right */
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* Scale up */
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Stagger children animation */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Section headers animation */
.section-header {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax sections */
.parallax-bg {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* ============================================
   SCROLL-DRIVEN ANIMATIONS 2026
   ============================================ */

/* --- Parallax vertical (immersive breaks) --- */
.parallax-zoom {
    overflow: hidden;
}
.parallax-zoom .immersive-break__image {
    transition: transform 0.1s linear;
    will-change: transform;
}

/* --- Slide from left --- */
.scroll-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* --- Slide from right --- */
.scroll-slide-right {
    opacity: 0;
    transform: translateX(60px);
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* --- Scale + blur reveal (features) --- */
.scroll-scale-blur {
    opacity: 0;
    transform: scale(0.88);
    filter: blur(8px);
    transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.scroll-scale-blur.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* --- Clip-path reveal (gallery) --- */
.scroll-clip-reveal {
    clip-path: inset(10% 10% 10% 10% round 16px);
    opacity: 0;
    transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
}
.scroll-clip-reveal.visible {
    clip-path: inset(0% 0% 0% 0% round 16px);
    opacity: 1;
}

/* --- Fade up smooth (contact, sustainability, location) --- */
.js-ready .scroll-fade-up {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(4px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .scroll-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- Stagger cascade (features, gallery, expositores, FAQ, zones, videos) --- */
.js-ready .scroll-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(3px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .scroll-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.js-ready .scroll-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.js-ready .scroll-stagger.visible > *:nth-child(3) { transition-delay: 0.18s; }
.js-ready .scroll-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }
.js-ready .scroll-stagger.visible > *:nth-child(5) { transition-delay: 0.34s; }
.js-ready .scroll-stagger.visible > *:nth-child(6) { transition-delay: 0.42s; }
.js-ready .scroll-stagger.visible > *:nth-child(7) { transition-delay: 0.5s; }
.js-ready .scroll-stagger.visible > *:nth-child(8) { transition-delay: 0.58s; }
.js-ready .scroll-stagger.visible > *:nth-child(9) { transition-delay: 0.66s; }
.js-ready .scroll-stagger.visible > *:nth-child(10) { transition-delay: 0.74s; }
.js-ready .scroll-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* --- Parallax zoom for CTA final --- */
.immersive-break--tall .immersive-break__image {
    transform: scale(1.05);
    transition: transform 8s cubic-bezier(0.22, 1, 0.36, 1);
}
.immersive-break--tall.visible .immersive-break__image {
    transform: scale(1.15);
}

/* --- Video items alternating slide --- */
.js-ready .video-showcase__item:nth-child(odd) {
    opacity: 0;
    transform: translateX(-40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .video-showcase__item:nth-child(even) {
    opacity: 0;
    transform: translateX(40px);
    filter: blur(4px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js-ready .video-showcase__item.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .sustainability__inner {
        flex-direction: column;
        text-align: center;
    }

    .exhibitors__layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .location__grid {
        grid-template-columns: 1fr;
    }

    .location__map {
        height: 350px;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .gallery,
    .exhibitors,
    .location,
    .faq,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        inset: 0;
        background: rgba(26, 138, 74, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
        transform: translateX(100%);
        transition: var(--transition);
    }

    .header__nav.open {
        transform: translateX(0);
    }

    .header__nav .nav-link {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.85) !important;
    }

    .header__hamburger {
        display: flex;
    }

    .header__hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .header__hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .stats-inline {
        gap: 24px;
    }

    .stat-inline:not(:last-child)::after {
        display: none;
    }

    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero__info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .countdown__item {
        min-width: 64px;
        padding: 12px 6px;
    }

    .countdown__number {
        font-size: 1.6rem;
    }

    .gallery,
    .exhibitors,
    .location,
    .faq,
    .contact {
        padding: 60px 0;
    }

    .dream-destinations {
        padding: 60px 0;
    }

    .location__map {
        min-height: 300px;
    }

    .stat-inline__number {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-header__subtitle {
        font-size: 0.95rem;
    }

    .destination-highlights {
        gap: 8px;
    }

    .destination-highlight {
        padding: 7px 14px;
        font-size: 0.78rem;
    }

    .sustainability-immersive__grid {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .sustainability-immersive__stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-showcase__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .video-showcase {
        padding: 60px 0;
    }

    .hero__title-line {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero__brand {
        padding: 8px 16px;
        font-size: 0.72rem;
        gap: 8px;
    }

    .hero__brand-logo {
        height: 28px;
    }

    .hero__anato-logo {
        height: 88px;
    }

    .hero__scroll {
        bottom: 20px;
    }

    .exhibitors__layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .exhibitors__cta {
        margin-top: 40px;
    }

    .faq__question {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    .faq__answer p {
        padding: 0 20px 16px;
        font-size: 0.88rem;
    }

    .location__grid {
        grid-template-columns: 1fr;
    }

    .location__venue h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .stats-inline {
        flex-direction: column;
        gap: 20px;
    }

    .stat-inline:not(:last-child)::after {
        display: none;
    }

    .stat-inline__number {
        font-size: 1.8rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero__ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero__ctas .btn {
        width: 100%;
        max-width: 300px;
    }

    .gallery,
    .exhibitors,
    .location,
    .faq,
    .contact {
        padding: 48px 0;
    }

    .dream-destinations {
        padding: 48px 0;
    }

    .location__map {
        min-height: 250px;
    }

    .contact__form {
        padding: 20px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-group label {
        font-size: 0.92rem;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 13px 16px;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .form-checkbox label {
        font-size: 0.78rem;
    }

    .contact__anato-badge {
        padding: 12px 14px;
        margin-top: 24px;
        gap: 10px;
    }

    .contact__anato-badge img {
        height: 32px;
    }

    .contact__anato-badge span {
        font-size: 0.78rem;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer__logo-img {
        height: 44px;
    }

    .footer__anato-logo {
        height: 40px;
    }

    .footer__bottom p {
        font-size: 0.72rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn--large {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .countdown__item {
        min-width: 56px;
        padding: 10px 4px;
    }

    .countdown__number {
        font-size: 1.4rem;
    }

    .countdown__separator {
        font-size: 1.4rem;
    }

    .hero__slogan {
        font-size: 1.25rem;
        padding: 0 16px;
    }

    .header__logo-img {
        height: 48px;
    }

    .hero__anato-logo {
        height: 72px;
    }

    .hero__info-item {
        font-size: 0.95rem;
        font-weight: 700;
    }

    .hero__title-line {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .hero__brand {
        padding: 6px 12px;
        font-size: 0.68rem;
        margin-top: 20px;
    }

    .hero__brand-logo {
        height: 24px;
    }

    .destination-highlights {
        gap: 6px;
    }

    .destination-highlight {
        padding: 6px 12px;
        font-size: 0.74rem;
        gap: 6px;
    }

    .destination-highlight__emoji {
        font-size: 0.85rem;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header__tag {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .section-header__subtitle {
        font-size: 0.88rem;
        padding: 0 8px;
    }

    .video-showcase__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 400px;
        margin: 0 auto;
    }

    .video-showcase {
        padding: 48px 0;
    }

    .video-showcase__title {
        font-size: 1.15rem;
    }

    .video-showcase__desc {
        font-size: 0.85rem;
    }

    .sustainability-immersive {
        padding: 60px 0;
    }

    .sustainability-immersive__stats {
        grid-template-columns: 1fr;
        max-width: 240px;
        margin: 0 auto;
    }

    .sustainability-immersive__title {
        font-size: 1.8rem;
    }

    .sustainability-immersive__text {
        font-size: 0.95rem;
    }

    .immersive-break {
        height: 45vh;
        min-height: 280px;
    }

    .immersive-break--tall {
        height: 50vh;
        min-height: 300px;
    }

    .immersive-break__title {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .immersive-break__eyebrow {
        font-size: 0.68rem;
        letter-spacing: 3px;
    }

    .exhibitors__who h3,
    .exhibitors__benefits h3 {
        font-size: 1.1rem;
    }

    .exhibitors__list li {
        font-size: 0.88rem;
        padding: 10px 14px;
    }

    .benefit-card {
        padding: 22px;
    }

    .benefit-card__number {
        font-size: 1.3rem;
    }

    .benefit-card h4 {
        font-size: 0.92rem;
    }

    .benefit-card p {
        font-size: 0.82rem;
    }

    .contact__desc {
        font-size: 0.95rem;
    }

    .contact__detail strong {
        font-size: 0.82rem;
    }

    .contact__detail p {
        font-size: 0.82rem;
    }

    .location__option {
        padding: 16px;
        gap: 12px;
    }

    .location__option-emoji {
        font-size: 1.6rem;
    }

    .location__option h4 {
        font-size: 0.88rem;
    }

    .location__option p {
        font-size: 0.82rem;
    }

    .destination-ticker__track span {
        font-size: 0.75rem;
        padding: 0 12px;
    }
}

/* ============================================
   PREMIUM 2026 ANIMATIONS
   ============================================ */

/* ---- Scroll Progress Bar ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--brand-verde);
    z-index: 9999;
    pointer-events: none;
    transition: none;
}

/* ---- Gallery Clip-Path Reveal ---- */
.gallery__item.reveal-clip {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.gallery__item.reveal-clip.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Hero Entrance Animations ---- */
.hero__content .hero-anim {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(6px);
    transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1), filter 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.hero__content .hero-anim.hero-anim--visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* ---- Stat Counters Stagger ---- */
.stat-inline.stat-anim-ready {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.stat-inline.stat-anim-ready.stat-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Content Visibility (skip rendering off-screen sections) ---- */
.valle,
.exhibitors,
.gallery,
.location,
.faq,
.contact,
.footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 600px;
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    .scroll-progress,
    .hero-anim,
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .reveal-clip,
    .reveal-clip--left,
    .section-header,
    .stagger-children > *,
    .stat-inline.stat-anim-ready,
    .btn--primary {
        transition: none !important;
        animation: none !important;
    }

    .hero-anim,
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .section-header,
    .stagger-children > *,
    .stat-inline.stat-anim-ready {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .reveal-clip,
    .reveal-clip--left {
        clip-path: none !important;
        opacity: 1 !important;
    }

    .hero__slideshow,
    .parallax-bg {
        transform: none !important;
    }
}

/* ============================================
   WHATSAPP WIDGET
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    animation: whatsappPulse 2s ease infinite;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* ============================================
   FORM CHECKBOX (Policies)
   ============================================ */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--brand-verde);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.82rem;
    color: var(--gris);
    line-height: 1.5;
    cursor: pointer;
}

.form-checkbox label a {
    color: var(--brand-azul);
    text-decoration: underline;
}

.form-checkbox label a:hover {
    color: var(--brand-magenta);
}

/* ============================================
   CONTACT ANATO LOGO
   ============================================ */
.contact__anato-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius);
    border: 0.5px solid rgba(255,255,255,0.1);
}

.contact__anato-badge img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.contact__anato-badge span {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   SCROLL PROGRESS - Brand colors
   ============================================ */
