/* ===================================
    RESET Y VARIABLES 
    =================================== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        /* Nueva Paleta de Colores (Foil Dorado) */
        --color-brown-dark: #7B3F0B;      /* Marrón Oscuro */
        --color-yellow: #F2ED4C;          /* Amarillo Brillante */
        --color-brown-medium: #AA6E12;    /* Marrón Medio/Dorado */
        --color-coral-light: #E8A493;
        --color-mint-light: #BFDDD1;
        
        /* Colores Base (Ajustados para Modo Oscuro Predeterminado) */
        --color-black: #1A1A1A; 
        --color-white: #FFFFFF;
        
        /* Variables de Sólidos para mejor legibilidad */
        --color-gold-solid: #FFD700;
        --color-yellow-solid: #FFFF00;
        --color-red-solid: #FF4500;
        
        /* -- MODO OSCURO GLOBAL -- */
        --bg-primary: var(--color-black);           /* Fondo Principal (Negro) */
        --bg-secondary: #2C2C2C;                   /* Fondo de Tarjetas/Secciones (Gris Oscuro) */
        --text-primary: var(--color-white);        /* Texto Principal (Blanco) */
        --text-secondary: var(--color-mint-light); /* Texto Secundario/Claro */
        --border-light: rgba(255, 255, 255, 0.1);   /* Borde/Separador Claro */
        
        /* Colores Grises Ligeros Desechados para el tema */
        --color-gray-light-DELETED: #F5F5F5; 
        --color-gray: #6B7280; /* Se mantiene para otros usos, pero se usa --text-secondary para texto claro */
        
        /* Variables para Animación de Fondo */
        --bg-size: 400%; 
        
        /* GRADIENTE DE FOIL DORADO */
        --gradient-gold: linear-gradient(90deg, 
            var(--color-brown-dark) 0%,      
            var(--color-brown-medium) 35%,    
            var(--color-yellow) 50%,          
            var(--color-brown-medium) 65%,    
            var(--color-brown-dark) 100%      
        );
        
        /* Gradiente Secundario (Negro/Gris Oscuro para contraste) */
        --gradient-dark: linear-gradient(135deg, var(--color-black) 0%, #333333 100%); 
        
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.5); /* Sombras más visibles en fondo oscuro */
        --shadow-md: 0 4px 6px rgba(0,0,0,0.6);
        --shadow-lg: 0 10px 20px rgba(0,0,0,0.7);
        
        --transition: all 0.3s ease;
    }
    
    html {
        scroll-behavior: smooth;
    }
    
    body {
        /* Tipografía principal (Rubik) - Asegurarse de importar esta y Bebas Neue en el HTML */
        font-family: 'Rubik', sans-serif;
        line-height: 1.6;
        /* Aplicar color de texto y fondo global del modo oscuro */
        color: var(--text-primary);
        background-color: var(--bg-primary);
        overflow-x: hidden;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* ===================================
        TIPOGRAFÍAS ESPECIALES
        =================================== */
    h1, h2, h3 {
        /* Usando 'Bebas Neue' o similar para títulos fuertes */
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400; 
        letter-spacing: 0.05em; 
    }
    
    .stat-number, .counter, .hero-title {
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400; 
        letter-spacing: 0.08em; 
    }
    
    /* ===================================
        BOTONES (ESTILOS GLOBALES)
        =================================== */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 1rem;
        background-color: var(--color-brown-medium); 
    }
    
    .btn-primary {
        background-color: var(--color-brown-medium); 
        color: var(--color-black); /* Color de texto del botón primario */
        box-shadow: var(--shadow-md);
        position: relative; 
        z-index: 2; 
        overflow: hidden; 
        transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1; 
        background-image: var(--gradient-gold);
        background-size: 300% 100%; 
        background-position: 50% 50%; 
        transform: scaleX(0); 
        transform-origin: left; 
        transition: transform 0.5s ease-out; 
        border-radius: 12px; 
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.5), 
            0 0 10px 3px var(--color-yellow), 
            0 0 20px 5px var(--color-brown-medium);
    }
    
    .btn-primary:hover::before {
        transform: scaleX(1); 
        background-position: 0% 50%; 
    }
    
    .btn-outline {
        background: transparent;
        color: var(--color-brown-medium); /* Ajuste el color del texto para el modo oscuro */
        border: 2px solid var(--color-brown-medium);
    }
    
    .btn-outline:hover {
        background: var(--color-brown-dark);
        color: var(--color-white);
        transform: translateY(-2px);
    }
    
    .hero .btn-outline {
        /* Estos estilos ya son oscuros/claros y no necesitan cambio */
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-white);
        border: 2px solid var(--color-white);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(170, 110, 18, 0.2); 
        backdrop-filter: blur(10px);
    }
    
    .hero .btn-outline:hover {
        /* Estos estilos ya son oscuros/claros y no necesitan cambio */
        background: var(--color-white);
        color: var(--color-brown-dark);
        border-color: var(--color-white);
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.6), 0 0 60px rgba(255, 255, 255, 0.4);
        transform: translateY(-2px) scale(1.05);
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .btn.disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    /* ===================================
        HERO
        =================================== */
    /* El hero ya utiliza un fondo oscuro y texto claro, no requiere cambios de color */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--color-white);
        padding: 4rem 0 4rem; 
    }
    
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?w=1920') center/cover;
        z-index: -2;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(51, 51, 51, 0.85) 100%); 
        z-index: -1;
    }
    
    .hero-title {
        font-family: 'Bebas Neue', sans-serif;
        font-size: clamp(2.5rem, 6vw, 4.5rem); 
        font-weight: 400; 
        margin-bottom: 1rem;
        line-height: 1.2;
        letter-spacing: 0.08em; 
    }
    
    .hero-title .text-highlight {
        /* Color sólido de alto contraste */
        color: var(--color-gold-solid);
        text-shadow: none; 
    }
    
    .hero-title .text-highlight-secondary {
        /* Color amarillo sólido */
        color: var(--color-yellow-solid);
        text-shadow: none;
    }
    
    .hero-subtitle {
        font-size: clamp(1.4rem, 3.5vw, 1.8rem); 
        margin-bottom: 2.5rem;
        color: var(--color-white); 
    }
    
    .hero-ctas {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    /* --- NUEVOS ESTILOS: CUENTA REGRESIVA --- */
    .countdown-timer {
        margin-top: 3rem;
        padding: 1rem 2rem;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.4); 
        display: inline-block;
        backdrop-filter: blur(5px);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .countdown-timer p {
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: var(--color-mint-light); 
    }
    
    .countdown-display {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 3.5rem;
        font-weight: 400;
        letter-spacing: 0.1em;
        /* Texto con gradiente dorado animado */
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        background-size: 200% auto;
        animation: backgroundPan 5s linear infinite;
    }
    
    @keyframes backgroundPan {
        from { background-position: 0% center; }
        to { background-position: -200% center; }
    }
    
    /* ===================================
        ESTADÍSTICAS (AJUSTES Y NUEVO CONTENIDO)
        =================================== */
    .stats {
        padding: 5rem 0;
        /* Cambio de color de fondo claro a oscuro */
        background: var(--bg-primary); 
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 4rem;
    }
    
    .stat-card {
        /* Cambio de color de fondo claro a secundario oscuro */
        background: var(--bg-secondary); 
        padding: 2rem;
        border-radius: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
        transition: var(--transition);
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
    }
    
    .stat-number {
        font-family: 'Bebas Neue', sans-serif; 
        font-size: 3rem;
        font-weight: 400; 
        background: var(--gradient-gold);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }
    
    .stat-label {
        /* Cambio de color de texto oscuro a claro */
        color: var(--text-secondary);
        font-size: 1rem;
    }
    
    .stats .btn-primary {
        display: block;
        margin: 0 auto 4rem;
        width: fit-content;
    }
    
    /* --- NUEVOS ESTILOS: ¿QUÉ ES BULLSPICKS? --- */
    .about-bullspicks-extended {
        margin-top: 5rem;
        padding: 3rem 2rem;
        /* Cambio de color de fondo claro a secundario oscuro */
        background: var(--bg-secondary); 
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
    }
    
    .about-bullspicks-extended .section-title {
        font-size: clamp(2rem, 4vw, 3.5rem);
        /* El color oscuro se mantiene para el contraste con el oro */
        color: var(--color-yellow); 
        text-align: center;
        margin-bottom: 2rem;
        border-bottom: 2px solid var(--color-brown-medium);
        padding-bottom: 1rem;
    }
    
    .section-text-large {
        font-size: 1.3rem;
        line-height: 1.8;
        /* Cambio de color de texto oscuro a claro */
        color: var(--text-primary); 
        max-width: 900px;
        margin: 0 auto 2rem;
        font-weight: 500;
        text-align: center;
    }
    
    .section-text-large strong {
        /* El color oscuro se mantiene para el contraste con el oro */
        color: var(--color-yellow); 
    }
    
    .section-subtitle {
        font-family: 'Bebas Neue', sans-serif;
        font-size: 2rem;
        color: var(--color-brown-medium); 
        margin-top: 3rem;
        margin-bottom: 1rem;
        border-left: 5px solid var(--color-brown-medium);
        padding-left: 1rem;
        display: inline-block;
    }
    
    .section-text {
        font-size: 1.05rem;
        line-height: 1.7;
        /* Cambio de color de texto oscuro a claro secundario */
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        max-width: 800px;
        text-align: left;
    }
    
    /* --- AJUSTES DE LAYOUT para .about-bullspicks-extended (AÑADIDOS) --- */
    .about-content-wrapper {
        display: flex;
        flex-direction: column; /* Apilado por defecto en móvil */
        gap: 2rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .bullspicks-logo-history {
        max-width: 250px; /* Tamaño máximo para el logo */
        height: auto;
        border-radius: 15px;
        object-fit: contain;
        padding: 1rem;
        /* Cambio de color de fondo claro a secundario oscuro */
        background: var(--bg-primary);
        box-shadow: var(--shadow-md);
    }
    
    @media (min-width: 900px) {
        .about-content-wrapper {
            flex-direction: row-reverse; /* Poner la imagen a la derecha del texto */
            text-align: left;
            align-items: flex-start;
        }
        
        .about-content-wrapper > div {
            flex: 1;
        }
    
        .bullspicks-logo-history {
            max-width: 300px;
        }
        
        .section-text {
            max-width: none; /* Permitir que el texto ocupe el ancho disponible */
        }
    
        .section-text-large {
            text-align: left;
            margin: 0 0 2rem;
            max-width: none;
        }
    }
    /* --- FIN AJUSTES DE LAYOUT --- */
    
    .disclaimer {
        text-align: center;
        /* Cambio de color de texto oscuro a claro secundario */
        color: var(--text-secondary);
        font-size: 0.9rem;
        font-style: italic;
    }
    
    /* ===================================
        BANNER GANANCIAS (SE MANTIENE)
        =================================== */
    .banner-ganancias {
        padding: 4rem 0;
        /* Cambio de color de fondo claro a primario oscuro */
        background: var(--bg-primary);
    }
    
    .banner-ganancias h2 {
        text-align: center;
        font-size: 2.5rem;
        /* Cambio de color de texto oscuro a dorado */
        color: var(--color-brown-medium);
        margin-bottom: 1rem;
    }
    
    .banner-subtitle {
        text-align: center;
        /* Cambio de color de texto oscuro a claro secundario */
        color: var(--text-secondary);
        margin-bottom: 3rem;
    }
    
    .carousel-container {
        position: relative;
        overflow: hidden;
    }
    
    .carousel-track {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 1rem 0;
        scrollbar-width: thin;
    }
    
    .carousel-track::-webkit-scrollbar {
        height: 8px;
    }
    
    .carousel-track::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1); /* Pista de scrollbar clara */
        border-radius: 10px;
    }
    
    .carousel-track::-webkit-scrollbar-thumb {
        background: var(--gradient-gold);
        border-radius: 10px;
    }
    
    .carousel-img, .carousel-lazy {
        min-width: 300px;
        height: 400px;
        object-fit: cover;
        border-radius: 12px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
    }
    
    .carousel-img:hover, .carousel-lazy:hover {
        transform: scale(1.05);
        box-shadow: var(--shadow-lg);
    }
    
    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2); /* Botón más claro en fondo oscuro */
        color: var(--color-white);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
        z-index: 10;
    }
    
    .carousel-btn:hover {
        background: rgba(255, 255, 255, 0.4);
    }
    
    .carousel-prev {
        left: 1rem;
    }
    
    .carousel-next {
        right: 1rem;
    }
    
    /* ===================================
        LIGHTBOX (SE MANTIENE)
        ==================================*/
    /* El lightbox ya es oscuro, no requiere cambios de color */
    .lightbox {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        z-index: 3000;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    
    .lightbox.active {
        display: flex;
    }
    
    .lightbox-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: none;
        border: none;
        color: var(--color-white);
        font-size: 3rem;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .lightbox-close:hover {
        color: var(--color-brown-medium);
    }
    
    #lightbox-img {
        max-width: 90%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 12px;
    }
    
    /* ===================================
        PLAN GRATUITO (AJUSTES DE TIPOGRAFÍA UX/UI)
        =================================== */
    .plans {
        padding: 0; 
        /* Cambio de color de fondo claro a primario oscuro */
        background: var(--bg-primary); 
    }
    
    /* --- BANNER FOIL DORADO --- */
    /* El banner dorado ya es un elemento de alto contraste, no requiere cambios de color */
    .plan-gratis-banner {
        padding: 5rem 20px; 
        text-align: center;
        color: var(--color-white);
        position: relative;
        overflow: hidden;
        background: var(--gradient-gold);
        background-size: var(--bg-size) 100%;
        animation: 
            shine 20s ease-in-out infinite alternate; 
    }
    
    /* 1. Título Principal (H2) - Más grande y dominante */
    .plan-title-main {
        font-size: clamp(2.5rem, 5vw, 4rem); 
        color: var(--color-white); 
        margin-bottom: 1rem;
        line-height: 1.1;
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.7), 
            0 0 15px rgba(0, 0, 0, 0.5); 
    }
    
    /* 2. Subtítulo (H3) - Intermedio, soporta el título */
    .plan-subtitle-main {
        font-size: clamp(1.5rem, 3.5vw, 2.2rem); 
        color: var(--color-white);
        margin-bottom: 2rem;
        font-weight: 500;
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.7), 
            0 0 10px rgba(0, 0, 0, 0.3);
    }
    
    /* 3. Párrafo Descriptivo - legible, buen tamaño de cuerpo */
    .plan-description-main {
        font-size: clamp(1rem, 2vw, 1.25rem); 
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto 3rem;
        color: var(--color-white);
        font-weight: 400;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .plan-benefits-large {
        list-style: none;
        margin: 2rem auto 2.5rem;
        padding: 0;
        max-width: 650px;
        text-align: left;
    }
    
    /* 4. Lista de Beneficios - Destacada y fácil de leer */
    .plan-benefits-large li {
        padding: 0.75rem 0;
        font-size: clamp(1.05rem, 2vw, 1.3rem); 
        color: var(--color-white); 
        border-bottom: 1px dashed rgba(255, 255, 255, 0.5); 
        text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); 
        font-weight: 500;
        line-height: 1.4;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    
    .plan-benefits-large li:last-child {
        border-bottom: none;
    }
    
    .plan-benefits-large strong {
        color: var(--color-yellow); 
        font-weight: 700;
    }
    
    /* --- ESTILO DE TEXTO CON GRADIENTE INVERTIDO Y ANIMADO (WARNING) --- */
    .plan-gratis-banner .warning {
        font-size: clamp(1.2rem, 3vw, 1.5rem); 
        font-weight: 700;
        margin-top: 2.5rem; /* Separación del botón */
        
        /* Gradiente Invertido para Contraste usando la paleta Foil */
        background-image: linear-gradient(90deg, 
            var(--color-white) 0%,              /* CLARO (vs Fondo Oscuro: brown-dark) */
            var(--color-brown-dark) 35%,        /* OSCURO (vs Fondo Medio: brown-medium) */
            var(--color-brown-dark) 50%,        /* OSCURO (vs Fondo Claro: yellow) */
            var(--color-brown-dark) 65%,        /* OSCURO (vs Fondo Medio: brown-medium) */
            var(--color-white) 100%             /* CLARO (vs Fondo Oscuro: brown-dark) */
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        
        /* Coincidir animación y tamaño de fondo con el banner */
        background-size: var(--bg-size) 100%;
        animation: shine 20s ease-in-out infinite alternate; 
        
        text-shadow: none; /* Asegurar que no interfiera */
    }
    /* --- FIN AJUSTES PLAN GRATUITO --- */
    
    
    /* ===================================
        BANNER TEAM MEXICO (ACTUALIZADO)
        =================================== */
    .banner-team-mexico {
        position: relative;
        /* Eliminar el padding, se usará la altura de la pantalla */
        /* padding: 6rem 0; */
        text-align: center;
        color: var(--color-white);
        
        /* 💥 CAMBIO CLAVE 1: Alto completo de la pantalla */
        min-height: 100vh;
        /* 💥 CAMBIO CLAVE 2: Centrar el contenido verticalmente */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .team-mexico-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('https://images.unsplash.com/photo-1459865264687-595d652de67e?w=1920') center/cover;
        z-index: -2;
    }
    
    .team-mexico-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
    }
    
    .team-mexico-logo {
        /* 💥 CAMBIO CLAVE 3: Hacer el logo más grande */
        max-width: 350px; /* Incrementamos el tamaño máximo para escritorio */
        width: 80%; /* Para que escale bien en móviles */
        margin-bottom: 2rem;
        animation: float 3s ease-in-out infinite;
    }
    
    .team-mexico-content h2 {
        font-size: clamp(1.8rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .team-mexico-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .team-mexico-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    /* Media Query para asegurar un buen tamaño en escritorio si fuera necesario */
    @media (min-width: 768px) {
        .team-mexico-logo {
            /* Aseguramos que sea aún más grande en pantallas más anchas */
            max-width: 450px; 
        }
    }
    /* ===================================
        FIN BANNER TEAM MEXICO (ACTUALIZADO)
        =================================== */
    
    /* ===================================
        CTA REFUERZO (SE MANTIENE)
        =================================== */
    /* El CTA ya es oscuro, no requiere cambios de color */
    .cta-refuerzo {
        padding: 5rem 0;
        background: var(--gradient-dark);
        color: var(--color-white);
        text-align: center;
    }
    
    .cta-refuerzo h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .cta-refuerzo p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-refuerzo .text-highlight-warning {
        /* Color rojo/naranja sólido para la advertencia */
        color: var(--color-red-solid); 
        text-shadow: none; 
        font-weight: 700;
    }
    
    .counter {
        font-family: 'Bebas Neue', sans-serif;
        font-weight: 400; 
        font-size: 2rem;
        letter-spacing: 0.08em; 
    }
    
    .counter-text {
        margin-top: 2rem;
        font-size: 1.5rem;
        color: var(--color-brown-medium);
    }
    
    /* ===================================
        TESTIMONIOS (CARRUSEL REPETIDO)
        =================================== */
    .testimonials-section {
        padding: 5rem 0;
        /* Cambio de color de fondo claro a primario oscuro */
        background: var(--bg-primary);
    }
    
    .testimonials-section h2 {
        text-align: center;
        font-size: 2.5rem;
        /* Cambio de color de texto oscuro a dorado */
        color: var(--color-brown-medium);
        margin-bottom: 1rem;
    }
    
    /* Los estilos de carrusel (carousel-track-2, carousel-prev-2, etc.)
        se configuran para heredar del carrusel original, pero se les da
        un estilo de posición explícito en caso de necesitarlo. */
    
    .carousel-track-2 {
        /* Mantiene los estilos del carrusel original */
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 1rem 0;
        scrollbar-width: thin;
    }
    
    .carousel-prev-2, .carousel-next-2 {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.2); /* Botón más claro en fondo oscuro */
        color: var(--color-white);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: var(--transition);
        z-index: 10;
    }
    
    .carousel-prev-2 {
        left: 1rem;
    }
    
    .carousel-next-2 {
        right: 1rem;
    }
    
    .carousel-prev-2:hover, .carousel-next-2:hover {
        background: rgba(255, 255, 255, 0.4);
    }
    
    
    /* ===================================
        FOOTER (AJUSTE MINIMALISTA)
        =================================== */
    .footer {
        padding: 4rem 0 2rem;
        /* Cambio de color de fondo claro a secundario oscuro */
        background: var(--bg-secondary);
        /* Cambio de color de texto oscuro a primario claro */
        color: var(--text-primary); 
    }
    
    /* --- NUEVOS ESTILOS: FOOTER MINIMALISTA --- */
    .footer-grid-minimal {
        display: flex; 
        flex-direction: column;
        align-items: center; 
        text-align: center;
        gap: 0; 
        margin-bottom: 3rem;
    }
    
    .footer-column-center {
        width: 100%;
        max-width: 400px;
        /* Remover estilos de contacto y navegación obsoletos */
    }
    
    .footer-column-center h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
        /* Cambio de color de texto oscuro a dorado */
        color: var(--color-brown-medium);
    }
    
    /* Modificar el contenedor de enlaces sociales para centrar y usar grid */
    .social-links-minimal {
        display: grid;
        /* Grid 1x4 en mobile, 2x2 en desktop para mejor distribución */
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .social-link-item {
        display: flex;
        align-items: center;
        justify-content: center; /* Centrar contenido dentro del botón */
        gap: 1rem;
        padding: 1rem;
        /* Cambio de color de fondo claro a primario oscuro */
        background: var(--bg-primary);
        border: 1px solid var(--border-light);
        border-radius: 12px;
        /* Cambio de color de texto oscuro a primario claro */
        color: var(--text-primary);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .social-link-item:hover {
        background: #333333; /* Fondo un poco más claro al hacer hover */
        border-color: var(--color-brown-medium);
        transform: translateY(-2px); /* Pequeño lift */
    }
    
    .social-link-item span {
        font-weight: 600;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2); /* Borde claro */
        padding-top: 2rem;
        text-align: center;
        /* Cambio de color de texto oscuro a claro secundario */
        color: var(--text-secondary);
    }
    
    .footer-bottom a {
        color: var(--color-brown-medium);
        text-decoration: none;
    }
    
    @media (min-width: 600px) {
        .social-links-minimal {
            grid-template-columns: repeat(2, 1fr);
            max-width: 400px; 
            margin-left: auto;
            margin-right: auto;
        }
    }
    /* --- FIN NUEVOS ESTILOS DE FOOTER --- */
    
    /* ===================================
        ✅ ESTILOS: MODAL DE REGISTRO
        =================================== */
    
    .modal {
        /* Oculto por defecto */
        display: none;
        position: fixed;
        z-index: 4000; /* Asegurar que esté encima de todo */
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.85); /* Fondo muy oscuro con transparencia */
        backdrop-filter: blur(5px);
        align-items: center;
        justify-content: center;
    }
    
    .modal.active {
        display: flex; /* Mostrar cuando tenga la clase 'active' */
    }
    
    .modal-content {
        /* Estilo principal de la card/modal */
        background: var(--bg-secondary); 
        color: var(--text-primary);
        margin: 10% auto;
        padding: 0; /* padding 0 para que la imagen cubra la parte superior */
        border-radius: 20px;
        width: 90%;
        max-width: 500px;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden; /* Recortar la imagen */
        transform: scale(0.95);
        opacity: 0;
        animation: fadeInUp 0.5s forwards; /* Animación de entrada */
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .modal-content-inner {
        /* Contenedor para el texto y formulario dentro del modal-content */
        padding: 2rem;
    }
    
    .modal-close-btn {
        /* Botón de cerrar (la cruz) */
        color: var(--color-white);
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
        font-weight: 300;
        cursor: pointer;
        transition: var(--transition);
        z-index: 4010; /* Encima de la imagen */
        background: rgba(0, 0, 0, 0.5); /* Fondo oscuro para contraste */
        border-radius: 50%;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
    }
    
    .modal-close-btn:hover,
    .modal-close-btn:focus {
        color: var(--color-red-solid);
        text-decoration: none;
        transform: rotate(90deg);
    }
    
    .modal-image {
        /* Imagen del estadio */
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }
    
    .modal-title {
        /* Título dentro del modal */
        font-size: 2rem;
        color: var(--color-gold-solid);
        text-align: center;
        margin-top: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .modal-text {
        /* Texto de invitación */
        text-align: center;
        margin: 0.5rem 0 1.5rem;
        color: var(--text-secondary);
        padding: 0 1.5rem;
    }
    
    .modal-form {
        padding: 0 2rem 2rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label:not(.terms-label) { /* No aplicar estos estilos a la etiqueta del checkbox */
        display: block;
        margin-bottom: 0.3rem;
        font-weight: 500;
        color: var(--color-white); 
    }
    
    .form-group input:not([type="checkbox"]) { /* Aplica a inputs de texto/email/teléfono */
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        /* Estilos para el modo oscuro */
        background-color: var(--bg-primary); 
        color: var(--text-primary);
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .form-group input:not([type="checkbox"]):focus {
        border-color: var(--color-brown-medium);
        outline: none;
        box-shadow: 0 0 0 3px rgba(170, 110, 18, 0.5); /* Sombra de foco dorada */
    }
    
    /* ===================================
        ✅ NUEVOS ESTILOS: TÉRMINOS Y CONDICIONES
        =================================== */
    
    .terms-group {
        display: flex; /* Para alinear el checkbox y la etiqueta */
        align-items: flex-start; /* Alinear el texto y el checkbox en la parte superior */
        gap: 0.75rem; /* Espacio entre el checkbox y el texto */
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-group input[type="checkbox"] {
        /* Estilos del checkbox */
        flex-shrink: 0; /* Evita que el checkbox se encoja */
        width: 18px;
        height: 18px;
        margin-top: 2px; /* Alineación visual */
        cursor: pointer;
        /* Estilos visuales en modo oscuro */
        appearance: none; /* Eliminar el estilo nativo */
        border: 2px solid var(--color-brown-medium);
        background-color: var(--bg-primary);
        border-radius: 4px;
        transition: background-color 0.3s, border-color 0.3s;
    }
    
    .terms-group input[type="checkbox"]:checked {
        /* Estilo al marcar */
        background-color: var(--color-brown-medium);
        border-color: var(--color-brown-medium);
    }
    
    .terms-group input[type="checkbox"]:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(242, 237, 76, 0.4); /* Sombra de foco amarilla/dorada */
    }
    
    .terms-label {
        /* Estilos de la etiqueta de los términos */
        display: inline; /* Ya no es un bloque, sino que fluye con el texto */
        font-size: 0.95rem;
        font-weight: 400;
        color: var(--text-secondary); /* Texto más sutil */
        margin-bottom: 0; /* Asegurar que no tenga margin-bottom */
        line-height: 1.4;
        cursor: pointer;
    }
    
    .terms-label a {
        /* Enlace a términos y condiciones */
        color: var(--color-yellow); /* Color brillante para el enlace */
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s;
    }
    
    .terms-label a:hover {
        color: var(--color-gold-solid);
        text-decoration: underline;
    }
    
    .modal-submit {
        width: 100%;
        margin-top: 0.5rem; /* Ajustar el margen superior del botón */
    }