:root {
    --primary-orange: #FF4500;
	--second-edition-bgr: #F24E06;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
	--text-gray: #4a4a4a;
    --white: #ffffff;
	--font-family: 'Poppins', sans-serif;
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: var(--font-family); }

body.no-scroll { overflow: hidden; }

/* Sticky Header */
/* 1. Header Base */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    
    padding: 10px 20px; /* Padding fijo y estricto */
    
    display: flex;
    justify-content: center; /* Asegura que el contenedor hijo esté centrado */
    /* Limitamos la transición solo a color y sombra para evitar saltos de layout */
    transition: background var(--transition-fast), box-shadow var(--transition-fast); 
}

/* 2. Header Scrolled */
.main-header.scrolled {
    background: var(--white);
    
    padding: 10px 20px; /* EXACTAMENTE igual al padding de arriba */
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Solo cambia la sombra */
}

/* 3. Contenedor de Navegación */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    width: 100%; /* ¡LA CLAVE MÁGICA! Obliga al div a no encogerse */
    
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px; /* Ajuste proporcional */
    width: auto;
	left:5px;
	padding-right:60px;
}

/* Hamburguesa oculta en Desktop */
.menu-toggle {
    display: none; 
}

/* Layout Desktop para Menú + Botón */
.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 30px; /* Separación entre links y botón */
}

/* Menú & Efecto Glass-Gate */
.nav-menu { display: flex; list-style: none; }

.nav-menu li {
    margin: 0 0px;
    opacity: 0; /* Controlado por JS */
    transform: translateY(20px);
}

.nav-menu li a {
    position: relative;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    transition: color 0.1s;
    overflow: hidden;
    display: inline-block;
	white-space: nowrap;
}

/* Pseudo-elemento Compuerta Naranja */
.nav-menu li a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary-orange);
    z-index: -1;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

/* Reflejo de Vidrio */
.nav-menu li a::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    z-index: 1;
}

.nav-menu li a:hover { color: white; }
.nav-menu li a:hover::before { transform: scaleX(1); }
.nav-menu li a:hover::after {
    left: 150%;
    transition: left 0.5s ease;
}


.header-actions{
    background-image: linear-gradient(to right, #EE3401, #FA5B00);
	padding:5px 15px;
    border-radius: 30px;
	position: relative; /* Necesario para contener el brillo */
    overflow: hidden;   /* Evita que el brillo se salga de las esquinas redondas */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header-actions::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg);
    z-index: 1;
}

.header-actions:hover::after {
    left: 150%;
    transition: left 0.6s ease;
}

.header-actions .btn-ticket{
	color: white !important;
	text-decoration: none;
	font-size: 15px;
	font-weight: 800;
	position: relative; /* Asegura que el texto quede por encima del brillo */
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
	white-space: nowrap;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.insignia-edicion {
    position: absolute;
    top: 85px; 
	left: 150px;
	width: 75px;   /* Ancho fijo */
    height: 160px;
    background: var(--second-edition-bgr);
    color: white;
    padding: 5px;
    text-align: center;
    /*clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%, 0% 90%);*/
	
	
	-webkit-clip-path: path('M 0 0 L 75 0 L 75 86 Q 75 96 65 99 L 10 117 Q 0 120 0 110 Z');
    clip-path: path('M 0 0 L 75 0 L 75 86 Q 75 96 65 99 L 10 117 Q 0 120 0 110 Z');
	
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 5px; /* Espacio desde el borde superior */
    color: var(--white);
	z-index: 2;
}

.insignia-edicion2 {
    position: absolute;
    top: 87px; 
	left: 153px;
	width: 75px;   /* Ancho fijo */
    height: 163px;
    background: var(--white);
    -webkit-clip-path: path('M 0 0 L 75 0 L 75 86 Q 75 96 65 99 L 10 117 Q 0 120 0 110 Z');
    clip-path: path('M 0 0 L 75 0 L 75 86 Q 75 96 65 99 L 10 117 Q 0 120 0 110 Z');
   
    z-index: 1; /* Lo enviamos al fondo, detrás de tus <span> pero sobre tu var(--second-edition-bgr) */
    pointer-events: none; /* Para que no interfiera si hay interacciones */
}

.insignia-edicion .num{
	display: inline-flex;
    align-items: flex-start;
	font-size:60px;
	font-weight:bold;
	margin-top: -10px;
}

.insignia-edicion .sup{
	margin-top: 20px;
	font-size:10px;
}

.insignia-edicion .txt{
	font-size:14px;
	font-weight:bold;
	margin-top: -15px;
}

.main-logo-hero { 
	margin-top: 200px;
	width: 600px; 
}

.info-strip {
    background: white;
    color: black;
    padding: 5px 25px;
    margin: 20px 0;
    letter-spacing: 2px;
	border-radius: 20px !important;
	text-align:center;
}

.info-strip_span{
	font-weight: 800;
}

.event-details{
	margin-top: 40px;
	color: white;
	text-align:center;
	font-family: var(--font-family);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
	
	.logo img { padding-left: 0; }
    .main-logo-hero { width: 80%; }
    .insignia-edicion { left: 25px; }
    .insignia-edicion2 { left: 27px; }
    .info-strip { font-size: 0.8rem; padding: 10px; }

    /* Overlay Oscuro */
    .mobile-overlay {
        position: fixed;
        top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        z-index: 998; /* Debajo del menú, encima del resto */
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
	
	.menu-wrapper {
        position: fixed; top: 0; left: -100%; width: 75%; max-width: 320px; height: 100vh;
        background: var(--white); z-index: 999; flex-direction: column; justify-content: flex-start;
        align-items: center; padding-top: 90px; box-shadow: 2px 0 15px rgba(0,0,0,0.2);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1); margin: 0; gap: 0;
    }
    .menu-wrapper.active { left: 0; }
	
    /* Panel Lateral del Menú */
    .nav-menu { flex-direction: column; width: 100%; display: flex; }
    .nav-menu li { width: 100%; border-bottom: 1px solid rgba(0,0,0,0.05); opacity: 1 !important; transform: none !important; margin: 0; }
    .nav-menu li a { display: block; padding: 20px 25px; font-size: 16px; width: 100%; }
	
	.header-actions {
        margin-top: 30px;
        width: 85%; /* Se ajusta al ancho del panel lateral */
        padding: 12px 15px; /* Un poco más grueso para dedos en móvil */
    }

    /* Botón Hamburguesa */
    .menu-toggle {
        display: flex; 
        flex-direction: column; 
        justify-content: space-between;
        
        /* Dimensiones óptimas para un botón táctil (Touch Target) */
        width: 44px; 
        height: 44px; 
        padding: 12px 8px; /* Espacio interno para que las líneas respiren */
        
        /* El borde y las esquinas que pediste */
        border: 1px solid rgba(0, 0, 0, 0.15); /* Borde muy delgado y sutil */
        border-radius: 8px; /* Esquinas redondas */
        background-color: var(--white); /* Fondo blanco sólido */
        
        cursor: pointer; 
        z-index: 1001;
    }

    .menu-toggle span {
        display: block; 
        width: 100%; 
        height: 2px; /* Líneas ligeramente más finas (2px en lugar de 3px) para que combinen con el borde delgado */
        background-color: var(--text-dark);
        border-radius: 2px; 
        transition: all 0.3s ease-in-out; 
        transform-origin: center;
    }

    /* Transformación a "X" recalculada para el nuevo tamaño */
    /* Mover las líneas superior e inferior 9px hacia el centro crea la X perfecta dentro de este nuevo contenedor */
    .menu-toggle.open span:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
    }
    .menu-toggle.open span:nth-child(2) { 
        opacity: 0; 
    }
    .menu-toggle.open span:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
    }
}


/* ============================================= */
/* --- BOTÓN VOLVER ARRIBA --- */
/* ============================================= */

.stark-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-orange, #FF4500); /* El mismo naranja de la web */
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Siempre por encima de todo */
    
    /* Estado inicial: oculto y desplazado hacia abajo */
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none; /* No se puede hacer clic si está oculto */
    transition: opacity 0.4s ease, transform 0.4s ease, filter 0.3s ease, box-shadow 0.3s ease;
}

/* Estado activo: cuando JS le añade la clase 'show' */
.stark-back-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Efecto Hover */
.stark-back-top:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.6);
}

/* El Chevron Blanco apuntando hacia arriba */
.stark-back-top::after {
    content: '';
    width: 14px;
    height: 14px;
    border-top: 3px solid #ffffff;
    border-left: 3px solid #ffffff;
    display: block;
    transform: rotate(45deg);
    margin-top: 5px; /* Ajuste visual para centrar la flecha */
}

/* Ajustes para Móvil */
@media (max-width: 768px) {
    .stark-back-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    .stark-back-top::after {
        width: 12px;
        height: 12px;
    }
}

/* ============================================= */
/* --- FOOTER --- */
/* ============================================= */

.site-footer {
    background-color: #050505; /* Fondo negro profundo */
    color: #dddddd;
    padding: 70px 5% 30px;
    font-family: var(--font-family, 'Poppins', sans-serif);
}

.footer-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- GRID DE 3 COLUMNAS --- */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary-orange, #FF4500);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: none;
}

/* --- COLUMNA 1: SÍGUENOS --- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    color: #ffffff;
    font-size: 1.4rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--primary-orange, #FF4500);
    transform: translateY(-3px); /* Pequeño salto */
}

.footer-main-logo {
    width: 100%;
    max-width: 220px;
    height: auto;
}

/* --- COLUMNA 2: ENLACES --- */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px; /* Separación entre cada enlace */
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.footer-links i {
    width: 16px;
    text-align: center;
    color: #aaaaaa; /* Ícono siempre gris/blanco */
}

.footer-links a {
    color: #dddddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Magia del Hover: Solo el texto se vuelve naranja, el ícono se mantiene */
.footer-links li:hover a {
    color: var(--primary-orange, #FF4500);
}

/* --- COLUMNA 3: CONTACTO --- */
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.4;
    color: #dddddd; /* Texto puro, no es enlace */
}

.footer-contact i {
    width: 16px;
    text-align: center;
    color: #dddddd;
    margin-top: 3px; /* Alineación del ícono con la primera línea de texto */
}

.mt-4 { margin-top: 35px; } /* Separador para "Organiza" */

.footer-organizer-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    filter: brightness(0.9); /* Opcional: le baja un poco el brillo si es muy blanco */
}

/* --- LÍNEA DIVISORIA Y COPYRIGHT --- */
.footer-bottom {
    border-top: 1px solid #222222; /* La línea sutil de división */
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer-bottom p {
    color: #777777;
    font-size: 0.85rem;
    margin: 0;
}

.developer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.developer-info span {
    color: #dddddd;
    font-size: 0.9rem;
}

.developer-logo {
    height: 40px; /* Ajusta la altura del logo Core IT */
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

/* --- RESPONSIVO PARA MOVILES --- */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 5% 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr; /* 1 sola columna en móviles */
        gap: 50px;
        text-align: center;
    }
    
    /* Centrar iconos y listas en móvil */
    .social-icons, .footer-links li, .footer-contact li {
        justify-content: center;
    }
    
    .footer-main-logo, .footer-organizer-logo {
        margin: 0 auto;
    }
}


/* =============================== */
/* --- PRELOADER: ESTILOS BASE --- */
/* =============================== */

.stark-preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: #050505; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.stark-preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* Contenedor principal del Reactor */
.arc-reactor {
    position: relative;
    width: 170px;
    height: 170px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- CAPA 1: ANILLO EXTERIOR Y ABRAZADERAS --- */
.arc-ring {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 12px solid rgba(255, 69, 0, 0.15);
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.4), inset 0 0 20px rgba(255, 69, 0, 0.4);
    animation: spinArc 5s linear infinite;
    box-sizing: border-box;
}

.clamp {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 14px; 
    background: #111111; 
    border: 2px solid var(--primary-orange, #FF4500);
	background-color:var(--primary-orange, #FF4500);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.7);
    margin-top: -7px;  
    margin-left: -10px; 
}

.c1 { transform: rotate(0deg) translateY(-69px); }
.c2 { transform: rotate(36deg) translateY(-69px); }
.c3 { transform: rotate(72deg) translateY(-69px); }
.c4 { transform: rotate(108deg) translateY(-69px); }
.c5 { transform: rotate(144deg) translateY(-69px); }
.c6 { transform: rotate(180deg) translateY(-69px); }
.c7 { transform: rotate(216deg) translateY(-69px); }
.c8 { transform: rotate(252deg) translateY(-69px); }
.c9 { transform: rotate(288deg) translateY(-69px); }
.c10 { transform: rotate(324deg) translateY(-69px); }

/* --- CAPA 2: ANILLO INTERIOR --- */
.arc-inner-ring {
    position: absolute;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 15px rgba(255, 255, 255, 1);
    /*animation: spinArcReverse 15s linear infinite;*/
}

/* --- CAPA 3: NÚCLEO CENTRAL (AHORA CON EL LOGO SVG) --- */
.arc-core {
    position: absolute;
    width: 55px; /* Tamaño del contenedor del logo */
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* La animación de pulso ahora se aplica directamente al SVG para no afectar la caja */
}

/* Estilos específicos para el SVG del Logo */
.ingenia-logo-svg {
    width: 100%;
    height: 100%;
    color: #ffffff; /* Color base del logo */
    /* Animación de pulso para el resplandor */
    animation: pulseLogo 1.5s ease-in-out infinite alternate;
}

/* --- TEXTO CARGANDO --- */
.loading-text {
    color: var(--primary-orange, #FF4500);
    font-family: var(--font-family, 'Poppins', sans-serif);
    font-size: 1.1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeText 1.2s ease-in-out infinite alternate;
}

/* --- MOTORES DE ANIMACIÓN --- */
@keyframes spinArc {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spinArcReverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

/* Animación de resplandor para el logo SVG */
@keyframes pulseLogo {
    0% {
        filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.6)) drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
        opacity: 0.8;
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(255, 69, 0, 1)) drop-shadow(0 0 12px rgba(255, 255, 255, 0.9));
        opacity: 1;
    }
}

@keyframes fadeText {
    0% { opacity: 0.15; }
    100% { opacity: 1; text-shadow: 0 0 10px rgba(255, 69, 0, 0.6); }
}



/* ============================================= */
/* --- MODAL POLÍTICAS (FADE IN / OUT) --- */
/* ============================================= */

.stark-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px); /* Efecto cristal desenfocado en el fondo */
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Efecto Fade OUT por defecto */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* Al agregar la clase .active, hace el Fade IN */
.stark-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* La caja central */
.stark-modal-content {
    background-color: #0a0a0a;
    border: 1px solid #333333;
    border-top: 3px solid var(--primary-orange, #FF4500);
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    max-height: 85vh; /* Máximo 85% del alto de la pantalla */
    position: relative;
    display: flex;
    flex-direction: column;
    /* Pequeño salto hacia arriba al aparecer */
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.stark-modal-overlay.active .stark-modal-content {
    transform: translateY(0);
}

/* Botón de Cerrar (X) */
.stark-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #777777;
    width: 32px;
    height: 32px;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.stark-modal-close:hover {
    color: var(--primary-orange, #FF4500);
    transform: scale(1.1);
}

/* Área de contenido con Scroll (si el texto es muy largo) */
.stark-modal-body {
    padding: 40px;
    overflow-y: auto;
    color: #dddddd;
    font-family: var(--font-family, 'Poppins', sans-serif);
    line-height: 1.6;
}

/* Personalización de la barra de desplazamiento */
.text-scrollable::-webkit-scrollbar {
    width: 6px;
}
.text-scrollable::-webkit-scrollbar-track {
    background: #111111; 
    border-radius: 8px;
}
.text-scrollable::-webkit-scrollbar-thumb {
    background: #444444; 
    border-radius: 8px;
}
.text-scrollable::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange, #FF4500); 
}


/* ============================================= */
/* --- BANNER DE COOKIES --- */
/* ============================================= */

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; width: 100%;
    background-color: #050505;
    border-top: 2px solid var(--primary-orange, #FF4500);
    z-index: 99999;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
    transform: translateY(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.hidden {
    transform: translateY(120%); /* Lo esconde hacia abajo */
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255, 69, 0, 0.4));
}

.cookie-text h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #aaa;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    font-family: var(--font-family, 'Poppins', sans-serif);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-cookie.btn-outline {
    background: transparent;
    color: #ddd;
    border: 1px solid #555;
}

.btn-cookie.btn-outline:hover {
    border-color: var(--primary-orange, #FF4500);
    color: var(--primary-orange, #FF4500);
}

.btn-cookie.btn-solid {
    background: var(--primary-orange, #FF4500);
    color: #fff;
    border: 1px solid var(--primary-orange, #FF4500);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.3);
}

.btn-cookie.btn-solid:hover {
    background: #e03e00;
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
}

/* --- MODAL CONFIGURACIÓN & TOGGLES (Interruptores) --- */
.cookie-modal { max-width: 600px; }

.cookie-toggle-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}
.cookie-toggle-group:last-of-type { border-bottom: none; }

.cookie-toggle-info h5 {
    color: #fff; margin: 0 0 5px 0; font-size: 1rem;
}
.cookie-toggle-info p {
    color: #888; margin: 0; font-size: 0.85rem; max-width: 90%;
}

/* El Switch (iOS Style) */
.switch {
    position: relative;
    display: inline-block;
    width: 50px; height: 26px;
    flex-shrink: 0;
}
.switch input { opacity: 0; width: 0; height: 0; }

.slider {
    position: absolute; cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #333;
    transition: .4s;
}
.slider:before {
    position: absolute; content: "";
    height: 18px; width: 18px;
    left: 4px; bottom: 4px;
    background-color: white;
    transition: .4s;
}
input:checked + .slider {
    background-color: var(--primary-orange, #FF4500);
}
input:checked + .slider:before {
    transform: translateX(24px);
}
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* Switch bloqueado (Necesarias) */
.disabled-slider { background-color: #555 !important; cursor: not-allowed; opacity: 0.7;}

/* Adaptación a móviles */
@media (max-width: 900px) {
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .cookie-info { flex-direction: column; gap: 15px; }
    .cookie-actions { width: 100%; flex-wrap: wrap; justify-content: center; }
}

/* --- OVERLAY DEL BANNER --- */
.cookie-banner-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px); /* Efecto cristal */
    z-index: 99998; 
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.cookie-banner-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
}