        :root {
            --primary-gold: #D4AF37;
            --gold-light: #E8D49B;
            --gold-dark: #B89130;
            --secondary-navy: #0A1128;
            --navy-light: #1A2640;
            --accent-burgundy: #8B2635;
            --dark-charcoal: #0F0F0F;
            --gray-silver: #8A8D93;
            --gradient-gold: linear-gradient(135deg, #D4AF37, #F4E4A6, #D4AF37);
            --gradient-gold-subtle: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 228, 166, 0.08), rgba(212, 175, 55, 0.15));
            --gradient-navy: linear-gradient(135deg, #0A1128, #1A2640);
            --gradient-dark: linear-gradient(135deg, #050810, #0A1128);
            --gradient-card: linear-gradient(145deg, rgba(26, 38, 64, 0.9), rgba(10, 17, 40, 0.95));
            --box-shadow-elegant: 0 20px 40px rgba(0, 0, 0, 0.25);
            --box-shadow-gold: 0 15px 35px rgba(212, 175, 55, 0.2);
            --box-shadow-gold-2: 0 10px 15px rgba(212, 175, 55, 0.062);
            --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #E8E6E3;
            line-height: 1.7;
            background: var(--gradient-dark);
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
        }

        .container-2 {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 100px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }

        .section-title h2 {
            font-size: 3.2rem;
            color: var(--gold-light);
            display: inline-block;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 2px;
            background: var(--gradient-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .highlight {
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
        }

        .highlight:after {
            content: '';
            position: absolute;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.288), transparent);
            bottom: -1px;
            left: 0;
            z-index: -1;
        }

        /* Navbar Elegante */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(10, 17, 40, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 10px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            transition: var(--transition-smooth);
        }

        .navbar.scrolled {
            padding: 15px 0;
            background: rgba(10, 17, 40, 0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Navbar hide on scroll */
.navbar {
    transition: transform 0.45s ease, background 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
}

.navbar.nav-hidden {
    transform: translateY(-100%);
}


        .logo {
            display: flex;
            align-items: center;
            font-family: 'Cormorant Garamond', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold-light);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .logo span {
            color: var(--primary-gold);
            margin-left: 5px;
        }


        .logo-img {
    height: 38px;        /* Ajusta según tu diseño */
    width: auto;         /* Mantiene la proporción */
    display: block;
}

@media (min-width: 768px) {
    .logo-img {
        height: 44px;
    }
}


        /* .logo:after {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--primary-gold);
            border-radius: 50%;
            margin-left: 10px;
        } */

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 40px;
        }

        .nav-link {
            text-decoration: none;
            color: #E8E6E3;
            font-weight: 500;
            font-size: 1rem;
            letter-spacing: 0.5px;
            transition: var(--transition-smooth);
            position: relative;
            padding: 5px 0;
        }

        .nav-link:hover {
            color: var(--primary-gold);
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            background: var(--gradient-gold);
            bottom: 0;
            left: 0;
            transition: var(--transition-smooth);
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--gold-light);
            transition: var(--transition-smooth);
        }

        .hamburger:hover {
            color: var(--primary-gold);
        }

        /* Hero Section Premium */
        .hero {
             min-height: 100svh; /* viewport real moderno */
            display: flex;
            align-items: center;
            background: 
                linear-gradient(135deg, rgba(10, 17, 40, 0.9) 0%, rgba(26, 38, 64, 0.8) 100%),
                url('https://images.unsplash.com/photo-1559136555-9303baea8ebd?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            color: #E8E6E3;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23d4af37' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }

        @supports not (height: 100svh) {
    .hero {
        min-height: 100vh;
    }
}


        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 4rem;
            line-height: 1.1;
            letter-spacing: -0.03em;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 33px;
            opacity: 0.9;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .tagline {
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--gold-light);
            margin-bottom: 60px;
            font-family: 'Cormorant Garamond', serif;
            font-style: italic;
            position: relative;
            display: inline-block;
            padding: 0 20px;
        }

        .tagline:before, .tagline:after {
            content: '~';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-gold);
            font-size: 1.8rem;
        }

        .tagline:before {
            left: 0;
        }

        .tagline:after {
            right: 0;
        }


        /* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    opacity: 0.85;
}

/* Mouse shape */
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 15px;
    position: relative;
    margin-bottom: 8px;
}

.mouse .wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.8s infinite ease-in-out;
}

/* Arrow */
.scroll-indicator .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
    transform: rotate(45deg);
    animation: arrowScroll 1.8s infinite ease-in-out;
}

/* Animations */
@keyframes wheelScroll {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, 12px);
    }
}

@keyframes arrowScroll {
    0% {
        opacity: 0;
        transform: translateY(0) rotate(45deg);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px) rotate(45deg);
    }
}


        /* Buttons Premium con border-radius 15px */
        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 15px;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            transition: var(--transition-smooth);
            font-size: 0.85rem;
            border: none;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
            z-index: -1;
        }

        .btn:hover:before {
            transform: translateX(0);
        }

        .btn-primary {
            background: var(--gradient-gold);
            color: var(--secondary-navy);
            box-shadow: var(--box-shadow-gold);
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
            color: var(--secondary-navy);
        }

        .btn-secondary {
            background: transparent;
            color: var(--gold-light);
            border: 1px solid rgba(212, 175, 55, 0.5);
            margin-left: 20px;
        }

        .btn-secondary:hover {
            background: rgba(212, 175, 55, 0.1);
            transform: translateY(-5px);
            border-color: var(--primary-gold);
        }

        .btn-large {
            padding: 20px 30px;
            font-size: 1rem;
            border-radius: 15px;
        }

        /* Sections Premium - Sin fondo blanco */
        .section-bg {
            background: var(--gradient-navy);
            position: relative;
        }

        .section-bg:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-gold-subtle);
            z-index: 0;
        }

        .section-dark {
            background: var(--gradient-dark);
            color: #E8E6E3;
            position: relative;
            overflow: hidden;
        }

        .section-dark:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .section-dark .section-title h2 {
            color: var(--gold-light);
        }











        /* Manifest Section */
.manifest-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0A1128, #050810);
    position: relative;
    overflow: hidden;
}

.manifest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px; /* 👈 ESTO SOLUCIONA EL PROBLEMA */
    box-sizing: border-box;
}


.manifest-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.08), transparent 50%);
}

/* Header */
.manifest-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 80px;
}

.manifest-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.manifest-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    color: var(--gold-light);
    line-height: 1.1;
    font-weight: 520;
}

.manifest-title span {
    display: block;
    font-size: 2.2rem;
    font-weight: 400;
    color: #E8E6E3;
    margin-top: 10px;
}

/* Grid */
.manifest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Blocks */
.manifest-block {
    background: linear-gradient(145deg, rgba(26,38,64,0.85), rgba(10,17,40,0.95));
    padding: 45px 40px;
    border-radius: 20px;
    border: 1px solid rgba(212,175,55,0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

.manifest-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-silver);
}

.manifest-block strong {
    color: var(--gold-light);
    font-weight: 600;
}

/* Highlight block */
.highlight-block {
    border-left: 4px solid var(--primary-gold);
}

.highlight-block .gold {
    color: var(--primary-gold);
    font-weight: 600;
    
}

/* Responsive */
@media (max-width: 992px) {
    .manifest-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .manifest-title {
        font-size: 2.6rem;
    }

    .manifest-title span {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .manifest-section {
        padding: 90px 0;
    }

    .manifest-header {
        margin-bottom: 50px;
    }

    .manifest-block {
        padding: 35px 28px;
    }

    .manifest-block p {
        font-size: 1.05rem;
    }
}


@media (max-width: 576px) {
    .manifest-section {
        padding: 80px 0;
    }

    .manifest-header {
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .manifest-grid {
        gap: 24px;
        padding: 0 20px; /* refuerzo */
    }

    .manifest-block {
        padding: 30px 24px; /* 👈 antes era demasiado */
        border-radius: 18px;
    }

    .manifest-block p {
        font-size: 1rem;
        line-height: 1.65;
    }
}



/* =====================================================
   TERRITORY SECTION · PRESENCIA TERRITORIAL PERÚ
   ===================================================== */

.territory-section {
    padding: 90px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

/* Sutil acento de fondo */
.territory-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 15% 25%,
        rgba(212, 175, 55, 0.07),
        transparent 55%
    );
    pointer-events: none;
}

/* Layout */
.territory-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Imagen */
.territory-image {
    position: relative;
    max-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.territory-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;      /* ✅ CLAVE: no recorta */
    object-position: center;
    display: block;
    padding: 95px;            /* respiración interna */
}


        .perfil-image {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem; /* 🔹 Espacio entre la imagen y el párrafo */
}


.perfil-text, .perfil-image {
            flex: 1;
            min-width: 300px;
        }

.perfil-image img {
            max-width: 100%;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }


.perfil-image img {
  width: 100%;
  max-width: 470px;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.perfil-image img:hover {
  transform: scale(1.03);
}


/* Overlay sutil */
.territory-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 17, 40, 0.35),
        rgba(10, 17, 40, 0.75)
    );
}

/* Contenido */
.territory-content {
    max-width: 540px;
    position: relative;
    z-index: 1;
}

.territory-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 22px;
}

.territory-eyebrow {
    display: block;       /* permite centrar */
    text-align: center;   /* centra el texto */
    width: 100%;          /* asegura el centrado en cualquier layout */
}


.territory-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    line-height: 1.15;
    color: var(--gold-light);
    margin-bottom: 22px;
}

.territory-title span {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: #E8E6E3;
    margin-top: 6px;
}

/* Texto */
.territory-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-silver);
    margin-bottom: 18px;
}

.territory-text.subtle {
    font-size: 1.05rem;
    font-style: italic;
    opacity: 0.85;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .territory-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .territory-content {
        max-width: 100%;
    }

    .territory-title {
        font-size: 2.4rem;
    }

    .territory-title span {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .territory-section {
        padding: 70px 0;
    }

    .territory-image {
        max-height: 260px;
    }

    .territory-wrapper {
        gap: 35px;
        padding: 0 20px;
    }

               
     .perfil-imagen {
                width: 250px;
                height: 250px;
            }
            

    .territory-title {
        font-size: 2.2rem;
    }

    .territory-title span {
        font-size: 1.7rem;
    }

    .territory-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .territory-title {
        font-size: 2rem;
    }

    .territory-title span {
        font-size: 1.6rem;
    }
}

/* =====================================================
   ACTIVATION SECTION · INICIO & CUPOS
   ===================================================== */

.activation-section {
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        #070D1F,
        #050A18
    );
    position: relative;
    overflow: hidden;
}

/* Glow sutil de fondo */
.activation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 20%,
        rgba(212, 175, 55, 0.10),
        transparent 60%
    );
    pointer-events: none;
}

.activation-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 28px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.activation-badge {
    display: inline-flex;              /* permite centrar mejor */
    justify-content: center;
    align-items: center;

    padding: 12px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.08);

    line-height: 1.2;
    margin: 0 auto 18px;               /* ← CENTRADO REAL */
    max-width: fit-content;
}

/* Responsivo */
@media (max-width: 768px) {
    .activation-badge {
        font-size: 0.8rem;
        padding: 12px 12px;
        letter-spacing: 0.8px;
        margin-left: auto;             /* refuerza centrado */
        margin-right: auto;
    }
}

/* Título */
.activation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: var(--gold-light);
    margin-bottom: 22px;
}

.activation-title span {
    color: var(--primary-gold);
}

/* Descripción */
.activation-description {
    max-width: 720px;
    margin: 0 auto 36px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-silver);
}

/* CTA */
.activation-cta {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 768px) {
    .activation-section {
        padding: 65px 0;
    }

    .activation-title {
        font-size: 2.5rem;
    }

    .activation-description {
        font-size: 1.05rem;
        margin-bottom: 32px;
    }

    .activation-cta {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .activation-title {
        font-size: 2.7rem;
    }

    .activation-cta a {
        width: 100%;
        max-width: 320px;
    }
}


/* =====================================================
   CONTENIDO DEL MANIFEST BLOCK
   ===================================================== */

.manifest-block-section {
    padding: 90px 0;
    display: flex;
    justify-content: center;
}


/* Rectángulo glass */
.manifest-block {
    max-width: 960px;
    width: 100%;
    padding: 72px 80px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(12, 26, 48, 0.78),
        rgba(7, 16, 32, 0.68)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    text-align: center;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(212, 175, 55, 0.22);
    overflow: hidden;
}

.manifest-block-2 {
    max-width: 960px;
    width: 100%;
    padding: 72px 80px;
    border-radius: 26px;
    background: linear-gradient(
        135deg,
        rgba(12, 26, 48, 0.78),
        rgba(7, 16, 32, 0.68)
    );
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    text-align: center;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(212, 175, 55, 0.22);
    overflow: hidden;
}

/* Glow sutil */
.manifest-block-2::before {
    content: '';
    position: absolute;
    inset: -35%;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(212, 175, 55, 0.16),
        transparent 55%
    );
    pointer-events: none;
}

/* Título */
.manifest-block-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #ECE9E4;
    position: relative;
    z-index: 1;
}

.manifest-block-title span {
    display: block;
    font-weight: 620;
    color: var(--primary-gold);
}

/* Texto descriptivo */
.manifest-block-description {
    max-width: 640px;
    margin: 0 auto 36px;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-silver);
    position: relative;
    z-index: 1;
}

/* MÉTODO (UNA SOLA PIEZA) */
.manifest-block-method {
    display: inline-block;
    margin-top: 8px;
    padding: 14px 34px;
    border-radius: 999px;
    font-size: 0.95rem;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.06);
    position: relative;
    z-index: 1;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */


/* =====================================================
   AJUSTE SOLO WEB / DESKTOP GRANDE
   ===================================================== */

@media (min-width: 1200px) {

    .manifest-block {
        max-width: 800px;              /* antes 960px */
        padding: 64px 72px;            /* más compacto */
    }

    .manifest-block-title {
        font-size: 2.5rem;             /* antes 3rem */
        margin-bottom: 24px;
        font-weight: 700;
    }

    .manifest-block-description {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }

    .manifest-block-method {
        font-size: 0.9rem;
        padding: 12px 30px;
        letter-spacing: 2.2px;
    }

}

@media (max-width: 768px) {
    .manifest-block-section {
        padding: 70px 0;
    }

    .manifest-block {
        padding: 25px 15px;
        /* margin: 0 20px; */
    }

    .manifest-block-2 {
        padding: 56px 32px;
        margin: 0 20px;
    }

    .manifest-block-title {
        font-size: 2.3rem;
    }

    .manifest-block-description {
        font-size: 1.05rem;
    }

    .manifest-block-method {
        font-size: 0.85rem;
        letter-spacing: 2px;
        padding: 12px 26px;
    }
}

@media (max-width: 480px) {
    .manifest-block-title {
        font-size: 2.05rem;
    }
}

/* =====================================================
   ROUTE DEFINITION · SECCIÓN REFINADA
   ===================================================== */

.route-definition {
    padding: 90px 0;
    background: var(--gradient-dark);
}

.route-container {
    max-width: 1100px; /* más contenido, menos ancho */
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

/* =====================================================
   INTRO
   ===================================================== */

.route-intro {
    text-align: left;
}

.route-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.route-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: #ECE9E4;
    margin-bottom: 24px;
}

.route-title span {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
}

.route-description {
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-silver);
}

.route-description strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* =====================================================
   CAPACIDADES
   ===================================================== */

.route-capabilities {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Item */
.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 24px;
    border-radius: 18px;
    background: var(--gradient-card);
    box-shadow: var(--box-shadow-elegant);
    color: var(--gray-silver);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition-smooth);
}

/* Icono */
.capability-item i {
    font-size: 1.1rem;
    color: var(--primary-gold);
    margin-top: 4px;
}

/* Texto clave */
.capability-item span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 4px;
}

/* Destacado */
.capability-item.highlight {
    background: linear-gradient(
        145deg,
        rgba(212, 175, 55, 0.18),
        rgba(26, 38, 64, 0.9)
    );
    color: #ECE9E4;
    box-shadow: var(--box-shadow-gold-2);
}

/* Hover sutil */
.capability-item:hover {
    transform: translateY(-3px);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .route-container {
        grid-template-columns: 1fr;
        gap: 55px;
        text-align: center;
    }

    .route-intro {
        text-align: center;
    }

    .route-description {
        margin: 0 auto;
    }

    .capability-item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .route-definition {
        padding: 75px 0;
    }

    .route-title {
        font-size: 2.4rem;
    }

    .capability-item {
        padding: 18px 20px;
    }
}

@media (max-width: 480px) {
    .route-title {
        font-size: 2.1rem;
    }

    .capability-item {
        gap: 14px;
        font-size: 0.9rem;
    }
}


/* =====================================================
   CORE AXIS · EJE CENTRAL DEL MODELO
   ===================================================== */

.core-axis-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    position: relative;
}

.core-axis-container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    gap: 40px;
}

/* =====================================================
   HEADER
   ===================================================== */

.core-axis-header {
    text-align: center;
}

.core-axis-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.core-axis-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    line-height: 1.1;
    color: #ECE9E4;
    margin-bottom: 26px;
}

.core-axis-title span {
    display: block;
    font-weight: 600;
    color: var(--primary-gold);
}

.core-axis-intro {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gray-silver);
}

.core-axis-intro strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* =====================================================
   BODY
   ===================================================== */

.core-axis-body {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

/* Lista */
.core-axis-list {
    padding: 40px 42px;
    border-radius: 24px;
    background: var(--gradient-card);
    box-shadow: var(--box-shadow-elegant);
}

.core-axis-list span {
    display: block;
    margin-bottom: 26px;
    font-size: 1.1rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    text-align: center;
}

.core-axis-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.core-axis-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: var(--gray-silver);
    line-height: 1.6;
}

.core-axis-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-gold);
    font-size: 1.4rem;
    line-height: 1;
}

/* Statement */
.core-axis-statement {
    padding: 36px 34px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.18),
        rgba(10, 17, 40, 0.9)
    );
    box-shadow: var(--box-shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.core-axis-statement p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ECE9E4;
}

.core-axis-statement strong {
    display: block;
    margin-top: 10px;
    color: var(--primary-gold);
    font-weight: 600;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .core-axis-body {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

@media (max-width: 768px) {
    .core-axis-section {
        padding: 80px 0;
    }

    .core-axis-title {
        font-size: 2.6rem;
    }

    .core-axis-list {
        padding: 32px 28px;
    }

    .core-axis-statement {
        padding: 30px 26px;
    }
}

@media (max-width: 480px) {
    .core-axis-title {
        font-size: 2.7rem;
        font-weight: 681;
    }

    .core-axis-intro {
        font-size: 1.05rem;
    }

    .core-axis-statement p {
        font-size: 1.05rem;
    }
}


        /* Feature Cards Premium - Sin fondo blanco */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .feature-card {
            background: var(--gradient-card);
            border-radius: 20px;
            padding: 40px 35px;
            box-shadow: var(--box-shadow-elegant);
            transition: var(--transition-smooth);
            text-align: center;
            border: 1px solid rgba(212, 175, 55, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .feature-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition-smooth);
            z-index: -1;
        }

        .feature-card:hover:before {
            opacity: 1;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 25px;
            color: var(--primary-gold);
            position: relative;
            display: inline-block;
        }

        .feature-icon:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.1);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: -1;
        }

        .feature-card h3 {
            color: var(--gold-light);
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

        .feature-card h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 1px;
            background: var(--gradient-gold);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .feature-card p {
            color: var(--gray-silver);
        }

        /* Stats Premium */
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-top: 5px;
        }

        .stat-item {
            text-align: center;
            margin: 20px 30px;
            position: relative;
            padding: 30px;
            min-width: 180px;
        }

        .stat-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 15px;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            font-family: 'Cormorant Garamond', serif;
            color: var(--primary-gold);
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
        }

        .stat-text {
            font-size: 1.1rem;
            color: var(--gray-silver);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Timeline Elegante - Sin fondo blanco */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 70px auto 0;
        }

        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            transform: translateX(-50%);
            width: 1px;
            height: 100%;
            background: linear-gradient(to bottom, transparent, var(--primary-gold), transparent);
        }

        .timeline-item {
            margin-bottom: 70px;
            position: relative;
            width: 50%;
            padding-right: 60px;
        }

        .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding-right: 0;
            padding-left: 60px;
        }

        .timeline-content {
            background: var(--gradient-card);
            padding: 35px 30px;
            box-shadow: var(--box-shadow-elegant);
            border-left: 4px solid var(--primary-gold);
            border-radius: 15px;
            position: relative;
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        /* .timeline-item:nth-child(even) .timeline-content {
            border-left: none;
            border-right: 4px solid var(--primary-gold);
        } */

        
  /* Solo se aplica al primer hijo de .timeline */
.timeline-item:first-child .timeline-content {
    border-left: none;
    border-right: 4px solid var(--primary-gold);
}

/* Contenedor del texto de ubicación */
.timeline-content p.ubicacion {
    display: flex;
    align-items: center; /* Alinea icono y texto verticalmente */
    font-size: 1rem;
    margin: 0.5rem 0;
}

/* Icono de ubicación */
.timeline-content p.ubicacion i.fas.fa-map-marker-alt {
    
    margin-right: 0.4rem;
    font-size: 1.1rem;

        background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df096
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ciudad en strong */
.timeline-content p.ubicacion strong {
    font-weight: 600;
    /* color: var(--primary-gold); */
        background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df096
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .timeline-content p.ubicacion {
        font-size: 0.95rem;
    }

    .timeline-content p.ubicacion i.fas.fa-map-marker-alt {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
}


        .timeline-marker {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--gradient-gold);
            border: 3px solid var(--secondary-navy);
            border-radius: 50%;
            top: 30px;
            right: -10px;
            z-index: 1;
        }

        .timeline-item:nth-child(even) .timeline-marker {
            right: auto;
            left: -10px;
        }

        .timeline-date {
            font-weight: 600;
            color: var(--primary-gold);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .timeline-date i {
            margin-right: 12px;
            font-size: 1.2rem;
        }

        .timeline-content h3 {
            color: var(--gold-light);
        }

        .timeline-content p {
            color: var(--gray-silver);
        }
        .timeline-content strong{

        color: #dbd1b8;

        }



        /* CTA Section Premium */
        .cta-card {
            background: var(--gradient-card);
            max-width: 900px;
            margin: 0 auto;
            padding: 60px;
            text-align: center;
            box-shadow: var(--box-shadow-elegant);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .cta-card:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
            z-index: 0;
        }

        .cta-card h3 {
            font-size: 2.8rem;
            color: var(--gold-light);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .cta-card p {
            font-size: 1.2rem;
            color: var(--gray-silver);
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        /* Alinea icono y texto de cada línea */
div[style*="margin-bottom: 30px"] p {
    display: flex;
    align-items: center; /* Centra icono y texto verticalmente */
    margin: 0.2rem 0;    /* Espacio entre líneas */
}

/* Asegura que los iconos tengan ancho fijo y se alineen */
div[style*="margin-bottom: 30px"] p i {
    width: 20px;        /* Ancho fijo para alinear las líneas */
    text-align: center; /* Centra el icono dentro del espacio */
    margin-right: 0.5rem; /* Espacio entre icono y texto */
    flex-shrink: 0;     /* Evita que el icono se reduzca */
}


        /* Footer Premium */
        .footer {
            background: var(--gradient-dark);
            color: #E8E6E3;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: var(--gradient-gold);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-column h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
            color: var(--gold-light);
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 50px;
            height: 1px;
            background: var(--gradient-gold);
            bottom: 0;
            left: 0;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a, .footer-links li {
            color: var(--gray-silver);
            text-decoration: none;
            transition: var(--transition-smooth);
            display: flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--primary-gold);
            padding-left: 5px;
        }

        .footer-links i {
            margin-right: 12px;
            color: var(--primary-gold);
            width: 20px;
            text-align: center;
        }

        .social-icons {
            display: flex;
            margin-top: 25px;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            margin-right: 15px;
            color: var(--gold-light);
            text-decoration: none;
            transition: var(--transition-smooth);
            border: 1px solid rgba(212, 175, 55, 0.1);
        }

        .social-icons a:hover {
            background: var(--primary-gold);
            color: var(--secondary-navy);
            transform: translateY(-5px);
            border-color: var(--primary-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.95rem;
            color: var(--gray-silver);
            letter-spacing: 0.5px;
        }

        .footer-bottom p:first-child {
            margin-bottom: 15px;
        }

        /* Animations Premium */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 1s cubic-bezier(0.215, 0.61, 0.355, 1), transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* .floating {
            animation: float 6s ease-in-out infinite;
        } */
@media (min-width: 1200px) {
    .hero-content {
        max-width: 860px;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        margin-bottom: 1.2rem;
    }

    .tagline {
        margin-top: 0.2rem;
        margin-bottom: 1.4rem;
    }

    .hero p:not(.tagline) {
        margin-bottom: 2rem;
    }
}



        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title h2 {
                font-size: 2.5rem;
            }
            
            .feature-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: rgba(10, 17, 40, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                width: 100%;
                height: calc(100vh - 80px);
                text-align: center;
                transition: var(--transition-smooth);
                z-index: 999;
                padding-top: 60px;
                border-top: 1px solid rgba(212, 175, 55, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 20px 0;
            }

            .hamburger {
                display: block;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .tagline {
                font-size: 1.4rem;
                margin-top: -25px;
            }

            .btn-secondary {
                margin-left: 0;
                margin-top: 20px;
                display: block;
                width: 100%;
                max-width: 300px;
                margin-left: auto;
                margin-right: auto;
            }

            .timeline:before {
                left: 30px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 0;
            }

            .timeline-item:nth-child(even) {
                margin-left: 0;
                padding-left: 80px;
            }

            .timeline-marker {
                left: 20px !important;
                right: auto !important;
            }
            
            .cta-card {
                padding: 40px 30px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.4rem;
            }

            .section-title h2 {
                font-size: 2.4rem;
                font-weight: 700;
            }

            .btn {
                padding: 16px 30px;
                font-size: 0.95rem;
            }

            .btn-large {
                padding: 18px 35px;
            }
            
            .container {
                padding: 0 20px;
            }
            .container-2 {
                padding: 0 10px;
            }
                        
            section {
                padding: 70px 0;
            }
        }


/* =====================================================
   ACTIVATION SECTION · ALTA INTENSIDAD VISUAL
   ===================================================== */

.activation-section {
    position: relative;
    padding: 120px 0;
    background: var(--gradient-dark);
    overflow: hidden;
}

/* Glow de fondo */
.activation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 175, 55, 0.12),
            transparent 55%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(212, 175, 55, 0.08),
            transparent 60%
        );
    pointer-events: none;
}

/* =====================================================
   CONTAINER
   ===================================================== */

.activation-container {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    gap: 80px;
    z-index: 1;
}



/* =====================================================
   HEADER
   ===================================================== */

.activation-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.activation-eyebrow {
    display: inline-block;
    margin-bottom: 24px;
    font-size: 0.7rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.activation-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.3rem;
    line-height: 1.1;
    color: #F1EEE9;
    margin-bottom: 28px;
}

.activation-title span {
    display: block;
    font-weight: 600;
    color: var(--primary-gold);
}

.activation-intro {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--gray-silver);
}

.activation-intro strong {
    color: var(--gold-light);
    font-weight: 500;
}

/* =====================================================
   GRID
   ===================================================== */

.activation-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 42px;
}

/* =====================================================
   CARD
   ===================================================== */

.activation-card {
    position: relative;
    padding: 52px 44px 48px;
    border-radius: 26px;
    background: linear-gradient(
        145deg,
        rgba(26, 38, 64, 0.92),
        rgba(10, 17, 40, 0.98)
    );
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(212, 175, 55, 0.08);
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Sutil brillo interno */
.activation-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(212, 175, 55, 0.18),
        transparent 60%
    );
    opacity: 0.55;
    pointer-events: none;
}

/* Hover */
.activation-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 45px 90px rgba(0, 0, 0, 0.55),
        0 20px 40px rgba(212, 175, 55, 0.18);
}

/* =====================================================
   ICON
   ===================================================== */

.activation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 16px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.28),
        rgba(212, 175, 55, 0.08)
    );
    color: var(--primary-gold);
    font-size: 1.25rem;
    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: var(--box-shadow-gold);
}

/* =====================================================
   STEP
   ===================================================== */

.activation-step {
    position: absolute;
    top: 26px;
    right: 28px;
    font-size: 0.7rem;
    letter-spacing: 3px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    opacity: 0.6;
}

/* =====================================================
   TEXT
   ===================================================== */

.activation-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--gold-light);
}

.activation-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--gray-silver);
}

/* =====================================================
   FOOTER
   ===================================================== */

.activation-footer {
    max-width: 780px;
    margin: 0 auto;
    padding: 34px 40px;
    border-radius: 24px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.22),
        rgba(10, 17, 40, 0.95)
    );
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.activation-footer i {
    display: block;
    margin-bottom: 14px;
    font-size: 1.6rem;
    color: var(--primary-gold);
}

.activation-footer p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #f1eee9d5;
}

.activation-footer strong {
    color: var(--primary-gold);
}


/* =====================================================
   AJUSTE FINO SOLO WEB / DESKTOP
   ===================================================== */

@media (min-width: 1200px) {

    .activation-section {
        padding: 100px 0; /* antes 120px */
    }

    .activation-container {
        max-width: 905px; /* antes 1180px */
        gap: 20px;
    }

    

    /* Header */
    .activation-title {
        font-size: 2.9rem; /* antes 3.3rem */
        margin-bottom: 22px;
    }

    .activation-intro {
        font-size: 1.05rem;
    }

    /* Grid */
    .activation-grid {
        gap: 34px;
    }

    /* Cards */
    .activation-card {
        padding: 44px 38px 40px; /* antes 52 / 44 / 48 */
        border-radius: 24px;
    }

    /* Iconos */
    .activation-icon {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
        margin-bottom: 18px;
    }

    /* Step */
    .activation-step {
        top: 22px;
        right: 24px;
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    /* Footer */
    .activation-footer {
        max-width: 700px;
        padding: 28px 34px;
    }

    .activation-footer p {
        font-size: 1.05rem;
    }

}


/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .activation-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .activation-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .activation-section {
        padding: 90px 0;
    }

.activation-container {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 12px;
    display: grid;
    gap: 15px;
    z-index: 1;
}


    .activation-title {
        font-size: 2.7rem;
    }

    .activation-card {
        padding: 44px 32px 40px;
    }
}

@media (max-width: 480px) {
    .activation-title {
        font-size: 2.7rem;
    }

    .activation-intro {
        font-size: 1.05rem;
    }

    .activation-footer {
        padding: 26px 24px;
    }
}

/* =====================================================
   SYSTEM PROGRESS · IMPACTO ESTRUCTURAL
   ===================================================== */

.system-progress-section {
    padding: 120px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

/* Glow estratégico */
.system-progress-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(212,175,55,0.12), transparent 55%),
        radial-gradient(circle at 80% 75%, rgba(212,175,55,0.08), transparent 60%);
    pointer-events: none;
}

.system-progress-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    gap: 40px;
    position: relative;
    z-index: 1;
}

/* =====================================================
   HEADER
   ===================================================== */

.system-progress-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.system-progress-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 0.7rem;
    letter-spacing: 3.2px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.system-progress-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    line-height: 1.1;
    color: #F1EEE9;
    margin-bottom: 26px;
}

.system-progress-title span {
    display: block;
    font-weight: 600;
    color: var(--primary-gold);
}

.system-progress-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-silver);
}

/* =====================================================
   GRID
   ===================================================== */

.system-progress-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Card */
.progress-card {
    position: relative;
    padding: 52px 38px 44px;
    border-radius: 26px;
    background: var(--gradient-card);
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(212,175,55,0.08);
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
}

/* Hover */
.progress-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.55),
        0 20px 40px rgba(212,175,55,0.18);
}

/* Step */
.progress-step {
    position: absolute;
    top: 22px;
    right: 24px;
    font-size: 0.65rem;
    letter-spacing: 3px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(212,175,55,0.15);
    color: var(--primary-gold);
    border: 1px solid rgba(212,175,55,0.4);
}

/* Icon */
.progress-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.28),
        rgba(212,175,55,0.08)
    );
    color: var(--primary-gold);
    font-size: 1.35rem;
    box-shadow: var(--box-shadow-gold);
}

/* Text */
.progress-card h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: var(--gold-light);
    font-weight: 500;
}

.progress-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-silver);
}

/* =====================================================
   FLOW
   ===================================================== */

.system-progress-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.system-progress-flow span {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
}

.system-progress-flow i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* =====================================================
   FOOTER
   ===================================================== */

.system-progress-footer {
    max-width: 760px;
    margin: 0 auto;
    padding: 34px 40px;
    border-radius: 26px;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.22),
        rgba(10,17,40,0.95)
    );
    box-shadow:
        0 30px 60px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(212,175,55,0.25);
}

.system-progress-footer p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #f1eee9de;
    font-weight: 500;
}

.system-progress-footer strong {
    color: var(--primary-gold);
    font-weight: 500;

}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .system-progress-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .system-progress-section {
        padding: 90px 0;
    }

    .system-progress-title {
        font-size: 2.6rem;
    }

    .system-progress-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .system-progress-grid {
        grid-template-columns: 1fr;
    }

    .system-progress-title {
        font-size: 2.25rem;
    }

    .system-progress-intro {
        font-size: 1.05rem;
    }
}

/* =====================================================
   CITY EXPERIENCE SECTION
   ===================================================== */

.city-experience-section {
    padding: 110px 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

/* Ambient glow */
.city-experience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(212,175,55,0.12), transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(212,175,55,0.08), transparent 60%);
    pointer-events: none;
}

.city-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* =====================================================
   HEADER
   ===================================================== */

.city-experience-header {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.city-experience-eyebrow {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.city-experience-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.1rem;
    line-height: 1.1;
    color: #F1EEE9;
    margin-bottom: 26px;
}

.city-experience-title span {
    display: block;
    font-weight: 600;
    color: var(--primary-gold);
}

.city-experience-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-silver);
}

/* =====================================================
   GRID
   ===================================================== */

.city-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 46px;
}

/* =====================================================
   EXPERIENCE ITEM
   ===================================================== */

.experience-item {
    display: flex;
    gap: 22px;
    padding: 36px 38px;
    border-radius: 26px;
    background: var(--gradient-card);
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(212,175,55,0.08);
    transition: var(--transition-smooth);
}

.experience-item:hover {
    transform: translateY(-6px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.55),
        0 20px 40px rgba(212,175,55,0.2);
}

/* Icon */
.experience-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.3),
        rgba(212,175,55,0.1)
    );
    color: var(--primary-gold);
    font-size: 1.35rem;
    box-shadow: var(--box-shadow-gold);
}

/* Content */
.experience-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-weight: 620;
}

.experience-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-silver);
}

/* Highlight item */
.experience-item.highlight {
    grid-column: span 2;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.22),
        rgba(10,17,40,0.95)
    );
    border: 1px solid rgba(212,175,55,0.35);
    
}

/* =====================================================
   RESPONSIVE
   ===================================================== */


/* =====================================================
   AJUSTE DE ESCALA SOLO WEB (DESKTOP)
   ===================================================== */

@media (min-width: 1200px) {

    .city-experience-section {
        padding: 95px 0; /* antes 110px */
    }

    .city-experience-container {
        max-width: 1080px; /* antes 1200px */
        gap: 64px;         /* antes 80px */
    }

    /* Header */
    .city-experience-title {
        font-size: 2.75rem; /* antes 3.1rem */
        margin-bottom: 22px;
    }

    .city-experience-intro {
        font-size: 1.05rem;
    }

    /* Grid */
    .city-experience-grid {
        gap: 30px 40px; /* menos aire */
    }

    /* Cards */
    .experience-item {
        padding: 30px 32px; /* antes 36 / 38 */
        border-radius: 22px;
    }

    /* Iconos */
    .experience-icon {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
        border-radius: 16px;
    }

    /* Títulos internos */
    .experience-content h3 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .experience-content p {
        font-size: 0.93rem;
    }

}


@media (max-width: 992px) {
    .city-experience-grid {
        grid-template-columns: 1fr;
    }

    .experience-item.highlight {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .city-experience-section {
        padding: 90px 0;
    }

    .city-experience-title {
        font-size: 2.6rem;
    }

    .experience-item {
        padding: 32px 30px;
    }
}

@media (max-width: 480px) {
    .city-experience-title {
        font-size: 2.3rem;
    }

    .city-experience-intro {
        font-size: 1.05rem;
    }
}

/* =====================================================
   AUDIENCE SECTION · ¿PARA QUIÉN ES?
   ===================================================== */

.audience-section {
    padding: 110px 0;
    background: var(--gradient-navy);
    position: relative;
    overflow: hidden;
}

/* Fondo sutil */
.audience-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 20% 25%,
        rgba(212,175,55,0.12),
        transparent 55%
    );
    pointer-events: none;
}

.audience-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    gap: 80px;
    position: relative;
    z-index: 1;
}

/* =====================================================
   HEADER
   ===================================================== */

.audience-header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.audience-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-gold);
}

.audience-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    line-height: 1.1;
    color: #F1EEE9;
    margin-bottom: 24px;
}

.audience-title span {
    display: block;
    color: var(--primary-gold);
    font-weight: 600;
}

.audience-intro {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--gray-silver);
}

/* =====================================================
   GRID
   ===================================================== */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

/* =====================================================
   CARD
   ===================================================== */

.audience-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 28px;
    border-radius: 18px;
    background: var(--gradient-card);
    border: 1px solid rgba(212,175,55,0.18);
    box-shadow: var(--box-shadow-elegant);
    transition: var(--transition-smooth);
}

.audience-card i {
    font-size: 1.25rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.audience-card span {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #E8E6E3;
}

.audience-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 30px 60px rgba(0,0,0,0.45),
        0 15px 30px rgba(212,175,55,0.22);
}

/* Destacado institucional */
.audience-card.highlight {
    grid-column: span 3;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.25),
        rgba(10,17,40,0.95)
    );
    border: 1px solid rgba(212,175,55,0.4);
    font-weight: 600;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
/* =====================================================
   AJUSTE DE ESCALA SOLO WEB (DESKTOP)
   ===================================================== */

@media (min-width: 1200px) {

    .audience-section {
        padding: 95px 0; /* antes 110px */
    }

    .audience-container {
        max-width: 1080px; /* antes 1200px */
        gap: 64px;         /* antes 80px */
    }

    /* Header */
    .audience-title {
        font-size: 2.7rem; /* antes 3rem */
        margin-bottom: 20px;
    }

    .audience-intro {
        font-size: 1.05rem;
    }

    /* Grid */
    .audience-grid {
        gap: 24px 28px; /* más compacto */
    }

    /* Cards */
    .audience-card {
        padding: 22px 24px; /* antes 26 / 28 */
        border-radius: 16px;
    }

    .audience-card i {
        font-size: 1.15rem;
    }

    .audience-card span {
        font-size: 0.92rem;
    }

    /* Highlight */
    .audience-card.highlight {
        padding: 24px 26px;
    }

}

@media (max-width: 992px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-card.highlight {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .audience-section {
        padding: 90px 0;
    }

    .audience-title {
        font-size: 2.5rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .audience-card.highlight {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .audience-title {
        font-size: 2.5rem;
        font-weight: 700;
    }

    .audience-intro {
        font-size: 1.05rem;
    }
}


/* =====================================================
   SECTORS SECTION
   ===================================================== */

.sectors-section {
    padding: 110px 0;
    background: var(--gradient-dark);
}

/* Texto libre */
.sectors-header {
    max-width: 760px;
    margin: 0 auto 52px;
    text-align: center;
    padding: 0 24px;
}

.sectors-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.7rem;
    line-height: 1.15;
    color: #F1EEE9;
    margin-bottom: 22px;
}

.sectors-title span {
    color: var(--primary-gold);
    font-weight: 600;
}

.sectors-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-silver);
}

/* =====================================================
   CARD MADRE (SOLO SECTORES)
   ===================================================== */

.sectors-master-card {
    max-width: 1100px;
    margin: 0 auto;
    padding: 46px 48px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(12, 26, 48, 0.85),
        rgba(7, 16, 32, 0.75)
    );
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(212,175,55,0.22);
    position: relative;
    overflow: hidden;
}

/* Glow sutil */
.sectors-master-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(212,175,55,0.16),
        transparent 60%
    );
    pointer-events: none;
}

/* =====================================================
   GRID DE SECTORES
   ===================================================== */

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    position: relative;
    z-index: 1;
}

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 26px 18px;
    border-radius: 18px;
    background: rgba(10, 17, 40, 0.75);
    border: 1px solid rgba(212,175,55,0.18);
    text-align: center;
    transition: var(--transition-smooth);
}

.sector-card i {
    font-size: 1.6rem;
    color: var(--primary-gold);
}

.sector-card span {
    font-size: 0.95rem;
    color: #E8E6E3;
    line-height: 1.4;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* Card destacada */
.sector-card.highlight {
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.18),
        rgba(10,17,40,0.85)
    );
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

/* =====================================================
   AJUSTE DE ESCALA SOLO WEB (DESKTOP)
   ===================================================== */

@media (min-width: 1200px) {

    /* Card madre más contenida */
    .sectors-master-card {
        max-width: 980px;              /* antes 1100px */
        padding: 38px 40px;            /* reduce volumen visual */
        border-radius: 24px;
    }

    /* Grid más compacto */
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22px;                     /* antes 26px */
    }

    /* Cards individuales más equilibradas */
    .sector-card {
        padding: 22px 16px;            /* antes 26px */
        border-radius: 16px;
    }

    .sector-card i {
        font-size: 1.45rem;            /* antes 1.6rem */
    }

    .sector-card span {
        font-size: 0.9rem;             /* antes 0.95rem */
    }

    /* Header un poco más fino */
    .sectors-header {
        max-width: 700px;
        margin-bottom: 42px;
    }

    .sectors-title {
        font-size: 2.55rem;            /* antes 2.7rem */
    }

    .sectors-intro {
        font-size: 1rem;
    }
}

@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 90px 0;
    }

    .sectors-title {
        font-size: 2.78rem;
        line-height: 1;
    }

    .sectors-master-card {
        margin: 0 20px;
        padding: 36px 26px;
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}



/* =====================================================
   RESULTS SECTION · RESULTADOS POR CIUDAD
   ===================================================== */

.results-section {
    padding: 110px 0;
    background: var(--gradient-dark);
}

.results-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.results-header {
    text-align: center;
    margin-bottom: 52px;
}

.results-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    line-height: 1.15;
    color: #F1EEE9;
}

.results-title span {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Body */
.results-body {
    background: linear-gradient(
        135deg,
        rgba(12, 26, 48, 0.85),
        rgba(7, 16, 32, 0.75)
    );
    border-radius: 28px;
    padding: 54px 60px;
    box-shadow:
        0 35px 70px rgba(0,0,0,0.45),
        inset 0 0 0 1px rgba(212,175,55,0.22);
    position: relative;
    overflow: hidden;
}

/* Glow sutil */
.results-body::before {
    content: '';
    position: absolute;
    inset: -35%;
    background: radial-gradient(
        circle at 50% 30%,
        rgba(212,175,55,0.15),
        transparent 60%
    );
    pointer-events: none;
}

/* Lista */
.results-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 40px;
    margin-bottom: 46px;
    position: relative;
    z-index: 1;
}

.results-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.results-list i {
    font-size: 1.35rem;
    color: var(--primary-gold);
    margin-top: 4px;
}

.results-list span {
    font-size: 1rem;
    line-height: 1.6;
    color: #E8E6E3;
}

/* Cierre */
.results-closure {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #EDEAE5;
    position: relative;
    z-index: 1;
}

.results-closure span {
    display: block;
    opacity: 0.85;
    line-height: 1.05;
}

.results-closure strong {
    display: block;
    color: var(--primary-gold);
    margin-top: 6px;
    font-weight: 600;
    line-height: 1.05;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .results-list {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .results-body {
        padding: 46px 36px;
    }

    .results-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .results-section {
        padding: 90px 0;
    }

    .results-body {
        padding: 38px 26px;
    }

    .results-title {
        font-size: 2.15rem;
    }

    .results-closure {
        font-size: 1.4rem;
    }
}



/* =====================================================
   RESULTS LIST · REFINADA
   ===================================================== */

.results-list.refined {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 32px;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

/* Rectángulo individual */
.result-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 26px;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        rgba(26, 38, 64, 0.85),
        rgba(10, 17, 40, 0.9)
    );
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow:
        0 18px 36px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.02);
    position: relative;
    transition: var(--transition-smooth);
}

/* Separador elegante */
.result-item::after {
    content: '';
    position: absolute;
    bottom: -11px;
    left: 18%;
    width: 64%;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(212,175,55,0.35),
        transparent
    );
    opacity: 0.6;
}

/* Icono */
.result-item i {
    font-size: 1.4rem;
    color: var(--primary-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Texto */
.result-item span {
    font-size: 1rem;
    line-height: 1.6;
    color: #E8E6E3;
}

/* Item destacado (último) */
.result-item.highlight {
    background: linear-gradient(
        135deg,
        rgba(212,175,55,0.18),
        rgba(10,17,40,0.92)
    );
    border-color: rgba(212,175,55,0.35);
}

/* Hover sutil */
.result-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 50px rgba(0,0,0,0.45);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 992px) {
    .results-list.refined {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-item::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .result-item {
        padding: 20px 22px;
    }

    .result-item span {
        font-size: 0.95rem;
    }
}

/* ===== ROADMAP ===== */

.vision-roadmap {
    padding: 90px 24px;
    background: var(--gradient-dark);
    color: #ffffff;
}

/* HEADER */

.roadmap-header {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
}

.roadmap-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    margin-bottom: 18px;

    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--gold-dark);
    background: var(--gradient-gold-subtle);
    border-radius: 999px;
}

.roadmap-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    font-weight: 700;
    margin-bottom: 14px;

    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-subtitle {
    font-size: 1.05rem;
    color: var(--gray-silver);
}

/* GRID */

.roadmap-grid {
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

/* CARD */

.roadmap-card {
    position: relative;
    padding: 36px 26px 32px;
    border-radius: 22px;

    background: var(--gradient-card);
    box-shadow: var(--box-shadow-elegant);

    transition: var(--transition-smooth);
}

.roadmap-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;

    height: 2px;
    background: var(--gradient-gold);
    opacity: 0.55;
}

.roadmap-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow-gold);
}

/* ICON */

.roadmap-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
    border-radius: 14px;

    background: var(--gradient-gold-subtle);
    box-shadow: var(--box-shadow-gold-2);
}

.roadmap-icon i {
    font-size: 1.1rem;
    color: var(--primary-gold);
}

/* TEXT */

.roadmap-date {
    display: block;
    margin-bottom: 8px;

    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: var(--gold-light);
}

.roadmap-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.roadmap-card p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--gray-silver);
}

/* HIGHLIGHT */

.roadmap-card.highlight {
    background: linear-gradient(
        145deg,
        rgba(212, 175, 55, 0.22),
        rgba(10, 17, 40, 0.95)
    );
}

.roadmap-card.highlight h3 {
    color: var(--gold-light);
}

/* FOOTER */

.roadmap-footer {
    margin-top: 60px;

    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;

    font-size: 0.9rem;
    color: var(--gray-silver);
}

.roadmap-footer i {
    margin-right: 8px;
    color: var(--primary-gold);
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }

    .roadmap-card {
        padding: 32px 22px;
    }
}


/* =====================================
   ROADMAP FOOTER · BLOQUE PREMIUM
===================================== */

.roadmap-footer {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    width: 100%;
}

/* CONTENEDOR PRINCIPAL */

.roadmap-footer-box {
    display: flex;
    align-items: center;
    gap: 26px;

    padding: 22px 36px;
    border-radius: 999px;

    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.18),
        rgba(26, 38, 64, 0.85),
        rgba(212, 175, 55, 0.18)
    );

    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(14px);
}

/* ITEMS */

.roadmap-footer-item {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
}

.roadmap-footer-item i {
    font-size: 1rem;
    color: var(--primary-gold);
}

/* DIVISOR (DESKTOP) */

.roadmap-footer-divider {
    width: 1px;
    height: 22px;

    background: linear-gradient(
        180deg,
        transparent,
        rgba(212, 175, 55, 0.6),
        transparent
    );
}

/* =====================================
   RESPONSIVE · MOBILE REFINADO
===================================== */

@media (max-width: 600px) {

    .roadmap-footer-box {
        flex-direction: column;
        align-items: stretch;

        gap: 14px;
        padding: 20px;
        border-radius: 22px;

        background: linear-gradient(
            180deg,
            rgba(26, 38, 64, 0.95),
            rgba(10, 17, 40, 0.95)
        );
    }

    .roadmap-footer-item {
        justify-content: center;
        gap: 10px;

        padding: 14px 16px;
        border-radius: 14px;

        background: linear-gradient(
            135deg,
            rgba(212, 175, 55, 0.14),
            rgba(26, 38, 64, 0.65)
        );

        border: 1px solid rgba(212, 175, 55, 0.25);
        box-shadow: 0 10px 15px rgba(212, 175, 55, 0.08);

        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
    }

    .roadmap-footer-item i {
        font-size: 0.95rem;
    }

    .roadmap-footer-divider {
        display: none;
    }
}



/* =====================================
   PROPÓSITO · BLOQUE INSTITUCIONAL
===================================== */

.purpose-section {
    padding: 100px 24px;
    background: linear-gradient(
        180deg,
        #050810,
        #0a1128
    );
    color: #ffffff;
}

.purpose-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER */

.purpose-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
}

.purpose-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;
    margin-bottom: 20px;

    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--gold-dark);
    background: var(--gradient-gold-subtle);
    border-radius: 999px;
}

.purpose-title {
    font-size: clamp(2.1rem, 4.5vw, 2.9rem);
    font-weight: 700;
    line-height: 1;
    font-size: clamp(2.3rem, 4.5vw, 2.9rem);
             background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df096
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.purpose-title span {
    display: block;
    margin-top: 10px;

    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* GRID */

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 72px;
}

/* ITEM */

.purpose-item {
    display: flex;
    align-items: center;
    gap: 14px;

    padding: 22px 24px;
    border-radius: 20px;

    background: linear-gradient(
        145deg,
        rgba(26, 38, 64, 0.9),
        rgba(10, 17, 40, 0.95)
    );

    border: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: var(--box-shadow-elegant);
    backdrop-filter: blur(10px);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.purpose-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--box-shadow-gold);
}

.purpose-item i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.purpose-item span {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #ffffff;
}

/* CIERRE */

.purpose-closure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 26px 32px;
    max-width: 720px;
    margin: 0 auto;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.22),
        rgba(10, 17, 40, 0.95)
    );

    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: var(--box-shadow-gold);
}

.purpose-closure i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.purpose-closure p {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
}

/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 900px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .purpose-section {
        padding: 80px 20px;
    }

    .purpose-grid {
        grid-template-columns: 1fr;
    }

    .purpose-closure {
        flex-direction: column;
        text-align: center;
        border-radius: 22px;
    }
    
}


.purpose-title {
    margin-bottom: 40px;      /* valor para web */
   
}

/* Ajuste exclusivo para móviles */
@media (max-width: 768px) {
    .purpose-title {
        margin-bottom: 20px;  /* reduce separación */
        line-height: 1;    /* aún más compacto */
         font-size: clamp(2.3rem, 4.5vw, 2.9rem);
             background: linear-gradient(
        135deg,
        #ffc2c2,
        #5df096
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    }

    .purpose-title span {
        display: block;
        margin-top: 4px;      /* reduce la separación con el texto principal */
    }
}


/* =====================================
   LEVEL UP · MANIFIESTO DE MARCA
===================================== */

.levelup-manifesto {
    position: relative;
    padding: 140px 24px;
    background: linear-gradient(180deg, #050810, #0a1128);
    overflow: hidden;
}

/* MARCO DECORATIVO */

.levelup-frame {
    position: absolute;
    inset: 40px;
    border-radius: 28px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.25),
        transparent 40%,
        transparent 60%,
        rgba(212, 175, 55, 0.18)
    );
    pointer-events: none;
    opacity: 0.6;
}

/* CONTENEDOR */

.levelup-container {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

/* MARCA */

.levelup-brand {
    display: inline-block;
    margin-bottom: 26px;
    font-size: 0.8rem;
    letter-spacing: 0.32em;
    font-weight: 600;
    color: var(--gold-dark);
}

/* HEADLINE */

.levelup-headline {
    font-size: clamp(2.6rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 44px;
}

.levelup-headline span {
    display: inline-block;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* DRIVERS */

.levelup-drivers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    margin-bottom: 54px;
}

.levelup-drivers span {
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;

    background: linear-gradient(
        135deg,
        rgba(26, 38, 64, 0.9),
        rgba(10, 17, 40, 0.95)
    );

    border: 1px solid rgba(212, 175, 55, 0.45);
    box-shadow: var(--box-shadow-gold-2);
}

/* STATEMENT */

.levelup-statement {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.levelup-statement strong {
    color: #ffffff;
    font-weight: 600;
}

.levelup-statement span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}


/* =========================================
   AJUSTE DESKTOP REAL · ESCALA EDITORIAL
========================================= */

@media (min-width: 1024px) {

    /* CONTENEDOR */
    .levelup-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    /* SECCIÓN */
    .levelup-manifesto {
        padding: 90px 24px; /* ⬅️ reduce sensación de hero gigante */
    }

    /* TITULAR */
    .levelup-headline {
        font-size: 2.6rem;      /* ⬅️ tamaño fijo y controlado */
        line-height: 1.12;
        letter-spacing: -0.015em;
        margin-bottom: 34px;
    }

    /* TEXTO PRINCIPAL */
    .levelup-description {
        font-size: 1rem;
        line-height: 1.7;
        max-width: 700px;
        margin: 0 auto 40px;
        opacity: 0.88;
    }

    /* DRIVERS */
    .levelup-drivers {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-bottom: 36px;
    }

    .levelup-driver {
        padding: 12px 18px;
        font-size: 0.9rem;
        border-radius: 12px;
    }

    /* CIERRE */
    .levelup-closing {
        font-size: 0.95rem;
        margin-top: 18px;
        opacity: 0.72;
    }
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 640px) {

    .levelup-manifesto {
        padding: 100px 20px;
    }

    .levelup-frame {
        inset: 18px;
    }

    .levelup-headline {
        font-size: 2.3rem;
        margin-bottom: 34px;
    }

    .levelup-drivers {
        margin-bottom: 40px;
    }

    .levelup-statement {
        font-size: 1rem;
    }
}


@media (min-width: 992px) {
  .cta-card > div[style*="margin-bottom: 30px"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
