/* ==========================================================================
   LOCURA RACE - STYLESHEET OFICIAL DE ALTO IMPACTO
   Paleta: Cian/Turquesa (#00c4c3) | Fucsia/Rosa (#FF0077) | Naranja (#FF6A00)
   Diseñado para un estilo visual extremo, moderno y 100% responsivo.
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
    --bg-dark: #f8fafc;
    --bg-darker: #edf2f7;
    --bg-card: rgba(255, 255, 255, 0.75);
    --bg-card-hover: rgba(255, 255, 255, 0.95);

    /* Colores de Marca */
    --cian: #00c4c3;
    --cian-hover: #00acab;
    --fucsia: #FF0077;
    --fucsia-hover: #d60064;
    --naranja: #FF6A00;
    --naranja-hover: #d95a00;

    /* Colores de Texto */
    --text-light: #0f172a;
    --text-muted: #475569;
    --text-dark: #ffffff;

    /* Sombras y Luces Neón */
    --shadow-neon-cian: 0 0 25px rgba(0, 196, 195, 0.25);
    --shadow-neon-fucsia: 0 0 25px rgba(255, 0, 119, 0.25);
    --shadow-neon-naranja: 0 0 25px rgba(255, 106, 0, 0.25);
    --shadow-card: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);

    /* Tipografías */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Bordes y Esquinas */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transiciones */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Altura de Navegación */
    --header-height: 80px;
}

/* --- Reset y Estilos Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

img,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
    color: inherit;
}

/* --- Barra de Desplazamiento --- */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: #1c212e;
    border-radius: var(--radius-sm);
    border: 2px solid var(--bg-darker);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--cian);
}

/* --- Clases de Utilidad de Layout --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.glass-container {
    background: rgba(255, 255, 255, 0.651);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.text-celeste,
.text-cian {
    color: var(--cian) !important;
}

.text-fucsia {
    color: var(--fucsia) !important;
}

.text-naranja {
    color: var(--naranja) !important;
}

.bg-celeste,
.bg-cian {
    background-color: var(--cian) !important;
}

.bg-fucsia {
    background-color: var(--fucsia) !important;
}

.bg-naranja {
    background-color: var(--naranja) !important;
}

/* Degradados de Texto */
.text-gradient-celeste {
    background: linear-gradient(135deg, #ffffff 0%, #00ffff 25%, #00bcff 70%, #0055ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-fucsia {
    background: linear-gradient(135deg, #ffffff 0%, #ff66c4 25%, #ff007c 70%, #9900ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-naranja {
    background: linear-gradient(135deg, var(--naranja) 0%, #ff0055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Cabeceras de Sección --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.section-subtitle {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: var(--naranja);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 2.6rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--cian), var(--fucsia), var(--naranja));
    margin: 20px auto 0;
    border-radius: var(--radius-sm);
}

/* --- Botones de Acción --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-headings);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--fucsia) 0%, var(--naranja) 100%);
    color: var(--text-light);
    border: none;
    box-shadow: var(--shadow-neon-fucsia);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--naranja) 0%, var(--fucsia) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 119, 0.5);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: var(--cian);
    border-color: var(--cian);
    color: #0b0f19;
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon-cian);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--cian);
    box-shadow: 0 0 10px rgba(0, 196, 195, 0.1);
}

.btn-outline:hover {
    background: var(--cian);
    color: var(--text-dark);
    box-shadow: var(--shadow-neon-cian);
    transform: translateY(-3px);
}

.btn-lg {
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: var(--radius-md);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
}

.btn-full {
    width: 100%;
}

/* Animación de Pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 119, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 119, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 119, 0);
    }
}

.pulse-animation {
    animation: pulse 2.5s infinite;
}

/* --- Cabecera y Navegación Sticky --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 196, 195, 0.95);
    /* Celeste / Cian de la marca */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 196, 195, 0.15);
}

.main-header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    /* Blanco traslúcido scrolled */
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0 5%;
}

/* Logotipo */
.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    min-width: max-content;
}

.logo-icon-img {
    height: 62px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    margin-right: 12px;
    transition: transform var(--transition-fast), filter var(--transition-smooth), height var(--transition-smooth);
}

.logo-icon-img:hover {
    transform: scale(1.08) rotate(-5deg);
}

.logo-img {
    height: 42px;
    width: auto;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform var(--transition-fast), filter var(--transition-smooth), height var(--transition-smooth);
}

.logo-img:hover {
    transform: scale(1.03);
}

/* En cabecera scrolled, mantenemos el logo con sus colores originales */
.main-header.scrolled .logo-icon-img {
    height: 52px;
}

.main-header.scrolled .logo-img {
    height: 36px;
}

.nav-menu {
    margin-left: auto;
    margin-right: 35px;
}

/* Lista de Navegación */
.nav-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Ocultar CTA móvil por defecto en escritorio */
.nav-mobile-cta {
    display: none;
}

.nav-link {
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.85);
    /* Texto claro sobre fondo celeste */
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--text-dark);
    /* Indicador activo blanco en fondo celeste */
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--text-dark);
}

/* Scrolled Nav Colors - Blanco */
.main-header.scrolled .nav-link {
    color: var(--text-muted);
    /* Texto oscuro sobre fondo blanco */
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--cian);
    /* Activo celeste en fondo blanco */
}

.main-header.scrolled .nav-link::after {
    background: linear-gradient(90deg, var(--cian), var(--fucsia));
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-nav {
    padding: 8px 18px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    background: var(--text-dark) !important;
    /* Botón blanco en fondo celeste */
    color: var(--cian) !important;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-fast);
}

.btn-nav:hover {
    background: var(--text-light) !important;
    /* Oscuro al pasar cursor */
    color: var(--text-dark) !important;
}

.main-header.scrolled .btn-nav {
    background: var(--cian) !important;
    /* Botón celeste en fondo blanco */
    color: var(--text-dark) !important;
    box-shadow: 0 4px 10px rgba(0, 196, 195, 0.2);
}

.main-header.scrolled .btn-nav:hover {
    background: var(--cian-hover) !important;
    color: var(--text-dark) !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    /* Barras claras en fondo celeste */
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
}

.main-header.scrolled .mobile-toggle .bar {
    background-color: var(--text-light);
    /* Barras oscuras en fondo blanco */
}

/* --- Sección Hero --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
    background-color: var(--bg-darker);
    background-image: radial-gradient(circle at 50% 30%, #ffffff 0%, var(--bg-darker) 70%);
    overflow: hidden;
}

/* --- Hero Background Carousel --- */
.hero-carousel {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100% - var(--header-height));
    z-index: 1;
    pointer-events: none;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1.0;
}

.hero-bg-overlay {
    display: none;
}

.hero-radial-glow {
    display: none;
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    max-width: 950px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.hero-info-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 106, 0, 0.12);
    border: 1px solid rgba(255, 106, 0, 0.3);
    color: var(--naranja);
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.05);
}

.hero-title {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 5.8rem;
    line-height: 1.05;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 1;
    cursor: default;
}

/* Estilo y animación individual para cada palabra */
.hero-title span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, text-shadow 0.3s ease;
    text-shadow: none !important;
}

.hero-title span:hover {
    transform: scale(1.12) translateY(-8px);
    filter: brightness(1.25);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.6) !important;
}

/* Mantener degradados limpios sin sombras oscuras o blancas en hover */
.hero-title span.text-gradient-celeste:hover,
.hero-title span.text-gradient-fucsia:hover {
    text-shadow: none !important;
}

.hero-tagline {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 8px;
    color: var(--cian);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 35px;
    text-shadow: 0 0 12px rgba(0, 196, 195, 0.4);
    opacity: 0.95;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-tagline:hover {
    transform: scale(1.05);
    color: #ffffff;
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 760px;
}

.hero-subtitle strong {
    color: var(--text-light);
    font-weight: 600;
}

/* --- Countdown Timer Estilos --- */
.countdown-container {
    position: relative;
    z-index: 5;
    background: linear-gradient(135deg, rgba(9, 13, 22, 0.92) 0%, rgba(20, 25, 38, 0.95) 100%);
    border: 1px solid rgba(0, 196, 195, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 35px 50px;
    width: calc(100% - 40px);
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 196, 195, 0.15);
}

.countdown-date-badge {
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-transform: uppercase;
    background: rgba(255, 0, 119, 0.25);
    border: 1px solid var(--fucsia);
    padding: 8px 24px;
    border-radius: var(--radius-xl);
    margin-bottom: 25px;
    box-shadow: 0 0 15px rgba(255, 0, 119, 0.35);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.countdown-title {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(12, 17, 27, 0.85);
    border: 1px solid rgba(0, 196, 195, 0.25);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    transition: var(--transition-fast);
}

.countdown-box:hover {
    border-color: var(--cian);
    box-shadow: 0 0 20px rgba(0, 196, 195, 0.4);
    transform: translateY(-3px);
}

.countdown-number {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--cian);
    text-shadow: 0 0 15px rgba(0, 196, 195, 0.6);
}

.countdown-box:nth-child(even) .countdown-number {
    color: var(--fucsia);
    text-shadow: 0 0 15px rgba(255, 0, 119, 0.6);
}

.countdown-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    margin-top: 8px;
    letter-spacing: 0.5px;
}

/* Detail Info row */
.hero-details-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px 45px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    box-shadow: var(--shadow-card);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.detail-icon {
    font-size: 1.6rem;
}

.icon-celeste {
    color: var(--cian);
    text-shadow: var(--shadow-neon-cian);
}

.icon-fucsia {
    color: var(--fucsia);
    text-shadow: var(--shadow-neon-fucsia);
}

.icon-naranja {
    color: var(--naranja);
    text-shadow: var(--shadow-neon-naranja);
}

.detail-item h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-item p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.detail-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(15, 23, 42, 0.08);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    width: 100%;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-muted);
    z-index: 5;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Contenedor del Flyer Principal (web.png) */
.main-flyer-wrapper {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.flyer-placeholder {
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.flyer-placeholder:hover {
    transform: scale(1.02);
    border-color: var(--cian);
    box-shadow: 0 15px 40px rgba(0, 196, 195, 0.2);
}

.flyer-glow-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 25px rgba(255, 255, 255, 0.05);
    z-index: 3;
    pointer-events: none;
}

.flyer-img {
    width: 100%;
    display: block;
    object-fit: cover;
    z-index: 1;
}

.remera-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 4;
    opacity: 1;
    transition: opacity 0.5s ease-in-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 769px) {
    .kit-card:hover .remera-img {
        opacity: 0;
        transform: scale(1.08);
        pointer-events: none;
    }
}

.kit-card.mobile-active .remera-img {
    opacity: 0;
    transform: scale(1.08);
    pointer-events: none;
}

/* Fallback Estilizado de Imagen */
.flyer-fallback-content {
    width: 100%;
    min-height: 400px;
    background: linear-gradient(135deg, rgba(2, 3, 4, 0.9) 0%, rgba(14, 16, 22, 0.95) 100%),
        radial-gradient(circle at 50% 50%, rgba(0, 196, 195, 0.15) 0%, rgba(255, 0, 119, 0.15) 80%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px;
    text-align: center;
    z-index: 2;
}

.fallback-icon {
    font-size: 4rem;
    color: var(--cian);
    text-shadow: var(--shadow-neon-cian);
    animation: pulseIcon 3s infinite alternate;
}

@keyframes pulseIcon {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.flyer-fallback-content h2,
.flyer-fallback-content h3 {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flyer-fallback-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
}

.tag-fucsia,
.tag-celeste {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    margin-top: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.tag-fucsia {
    background: rgba(255, 0, 119, 0.15);
    border: 1px solid var(--fucsia);
    color: var(--fucsia);
}

.tag-celeste {
    background: rgba(0, 196, 195, 0.15);
    border: 1px solid var(--cian);
    color: var(--cian);
}

/* --- Stats Banner Section --- */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: 0;
    padding: 100px 0 60px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(9, 13, 22, 0.9) 0%, rgba(20, 25, 38, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

#stat-1 {
    border: 1px solid rgba(0, 196, 195, 0.35);
}

#stat-1:hover {
    transform: translateY(-5px);
    border-color: var(--cian);
    box-shadow: 0 15px 35px -10px rgba(0, 196, 195, 0.4), 0 0 25px rgba(0, 196, 195, 0.25);
}

#stat-2 {
    border: 1px solid rgba(255, 0, 119, 0.35);
}

#stat-2:hover {
    transform: translateY(-5px);
    border-color: var(--fucsia);
    box-shadow: 0 15px 35px -10px rgba(255, 0, 119, 0.4), 0 0 25px rgba(255, 0, 119, 0.25);
}

#stat-3 {
    border: 1px solid rgba(255, 106, 0, 0.35);
}

#stat-3:hover {
    transform: translateY(-5px);
    border-color: var(--naranja);
    box-shadow: 0 15px 35px -10px rgba(255, 106, 0, 0.4), 0 0 25px rgba(255, 106, 0, 0.25);
}

#stat-4 {
    border: 1px solid rgba(0, 196, 195, 0.35);
}

#stat-4:hover {
    transform: translateY(-5px);
    border-color: var(--cian);
    box-shadow: 0 15px 35px -10px rgba(0, 196, 195, 0.4), 0 0 25px rgba(0, 196, 195, 0.25);
}

.stat-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.icon-bg-celeste {
    background: linear-gradient(135deg, rgba(0, 196, 195, 0.25), rgba(0, 196, 195, 0.05));
    border: 1px solid rgba(0, 196, 195, 0.4);
    text-shadow: 0 0 8px rgba(0, 196, 195, 0.6);
}

.icon-bg-fucsia {
    background: linear-gradient(135deg, rgba(255, 0, 119, 0.25), rgba(255, 0, 119, 0.05));
    border: 1px solid rgba(255, 0, 119, 0.4);
    text-shadow: 0 0 8px rgba(255, 0, 119, 0.6);
}

.icon-bg-naranja {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.25), rgba(255, 106, 0, 0.05));
    border: 1px solid rgba(255, 106, 0, 0.4);
    text-shadow: 0 0 8px rgba(255, 106, 0, 0.6);
}

.stat-number {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-number.text-celeste {
    text-shadow: 0 0 12px rgba(0, 196, 195, 0.5);
}

.stat-number.text-fucsia {
    text-shadow: 0 0 12px rgba(255, 0, 119, 0.5);
}

.stat-number.text-naranja {
    text-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- About Section (La Carrera) --- */
.about-section {
    position: relative;
    padding: 100px 0;
    background-image: url('images/galaxia1.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-glow-left {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 196, 195, 0.04) 0%, transparent 70%);
    top: 20%;
    left: -200px;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.about-glow-right {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 119, 0.04) 0%, transparent 70%);
    bottom: 10%;
    right: -200px;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 5;
}

.lead-text {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 20px;
}

.lead-text strong {
    color: var(--cian);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item h5 {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    color: var(--text-light);
}

.feature-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

/* Grid de Imagenes Showcase */
.about-image-showcase {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    z-index: 5;
}

.image-wrapper {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, 0.08);
    transition: var(--transition-smooth);
}

@media (min-width: 769px) {
    .image-wrapper:hover {
        transform: scale(1.03) translateY(-5px);
        z-index: 10;
    }
}

.image-wrapper.mobile-active {
    transform: scale(1.03) translateY(-5px);
    z-index: 10;
}

.main-img {
    width: 75%;
    height: 380px;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.secondary-img {
    width: 58%;
    height: 260px;
    bottom: 20px;
    right: 15px;
    z-index: 4;
}

/* Beautiful placeholders */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 30px;
    position: relative;
}

.placeholder-loaded-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 769px) {
    .image-wrapper:hover .placeholder-loaded-img {
        transform: scale(1.1);
    }
}

.image-wrapper.mobile-active .placeholder-loaded-img {
    transform: scale(1.1);
}

.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(9, 13, 22, 0.85) 0%, rgba(9, 13, 22, 0.3) 70%, transparent 100%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@media (min-width: 769px) {
    .image-wrapper:hover .image-placeholder::after {
        opacity: 1;
    }
}

.image-wrapper.mobile-active .image-placeholder::after {
    opacity: 1;
}

.placeholder-icon-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 769px) {
    .image-wrapper:hover .placeholder-icon-wrapper {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-wrapper.mobile-active .placeholder-icon-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.placeholder-icon {
    font-size: 3.5rem;
    color: currentColor;
    text-shadow: 0 0 15px currentColor;
}

.placeholder-tag {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: currentColor;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 10px currentColor;
}

.bg-gradient-about-1 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.95) 100%),
        radial-gradient(circle at 10% 20%, rgba(255, 0, 119, 0.15) 0%, rgba(255, 106, 0, 0.15) 90%);
    border-left: 3px solid var(--fucsia);
}

.bg-gradient-about-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.95) 100%),
        radial-gradient(circle at 90% 80%, rgba(0, 196, 195, 0.15) 0%, rgba(255, 0, 119, 0.15) 90%);
    border-right: 3px solid var(--cian);
}

/* ==========================================================================
   SECCIÓN GALERÍA
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 0, 119, 0.02) 50%, var(--bg-dark) 100%);
    position: relative;
    overflow: hidden;
}

.gallery-glow-left {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 119, 0.03) 0%, transparent 70%);
    top: 10%;
    left: -150px;
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.gallery-glow-right {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 196, 195, 0.03) 0%, transparent 70%);
    bottom: 10%;
    right: -150px;
    filter: blur(50px);
    z-index: 1;
    pointer-events: none;
}

.gallery-container {
    position: relative;
    z-index: 5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: var(--transition-smooth);
    background-color: rgba(41, 194, 255, 0.5);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth), filter var(--transition-smooth), opacity var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    z-index: 2;
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--radius-md) - 5px);
    pointer-events: none;
    transform: scale(0.92);
    transition: transform var(--transition-smooth);
}

.gallery-title {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    margin-bottom: 5px;
}

.gallery-category {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--cian);
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    transition-delay: 0.03s;
}

/* Estados Hover Premium */
@media (min-width: 769px) {
    .gallery-item:hover {
        transform: translateY(-8px);
        border-color: var(--fucsia);
        box-shadow: 0 15px 35px rgba(255, 0, 119, 0.25), var(--shadow-neon-fucsia);
    }

    .gallery-item:hover .gallery-img {
        transform: scale(1.08);
        filter: brightness(0.8);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item:hover .gallery-overlay::before {
        transform: scale(1);
        border-color: rgba(0, 196, 195, 0.4);
    }

    .gallery-item:hover .gallery-title,
    .gallery-item:hover .gallery-category {
        transform: translateY(0);
    }
}

.gallery-item.mobile-active {
    transform: translateY(-8px);
    border-color: var(--fucsia);
    box-shadow: 0 15px 35px rgba(255, 0, 119, 0.25), var(--shadow-neon-fucsia);
}

.gallery-item.mobile-active .gallery-img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

.gallery-item.mobile-active .gallery-overlay {
    opacity: 1;
}

.gallery-item.mobile-active .gallery-overlay::before {
    transform: scale(1);
    border-color: rgba(0, 196, 195, 0.4);
}

.gallery-item.mobile-active .gallery-title,
.gallery-item.mobile-active .gallery-category {
    transform: translateY(0);
}

/* --- Section Kit --- */
.kit-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
    position: relative;
}

/* Estilos de Sección Oscura Kit */
.kit-section.dark-section {
    background: linear-gradient(135deg, #0b0f19 0%, #151d30 100%);
    color: #ffffff;
}

.kit-section.dark-section .section-title {
    color: #ffffff;
}

.kit-section.dark-section .kit-intro-text {
    color: #cbd5e1;
}

.kit-section.dark-section .checklist-item {
    color: #cbd5e1;
}

.kit-section.dark-section .checklist-item strong {
    color: #ffffff;
}

.kit-section.dark-section .kit-requirements-box {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 106, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.kit-section.dark-section .kit-requirements-box p {
    color: #cbd5e1;
}

.kit-section.dark-section .req-list li {
    color: #cbd5e1;
}

.kit-section.dark-section .req-list li strong {
    color: #ffffff;
}

.kit-section.dark-section .kit-badge-info {
    background: rgba(255, 0, 119, 0.06);
    border-color: rgba(255, 0, 119, 0.3);
    color: #ffffff;
}

.kit-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: start;
}

.kit-image-showcase {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kit-card {
    height: 480px;
}

.kit-card .flyer-fallback-content {
    min-height: 480px;
}

.kit-badge-info {
    display: flex;
    gap: 12px;
    background: rgba(255, 0, 119, 0.08);
    border: 1px solid rgba(255, 0, 119, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    align-items: center;
    font-size: 0.9rem;
    line-height: 1.5;
}

.kit-badge-info i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.kit-details-content {
    position: relative;
}

.kit-subtitle-brand {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #ffffff;
}

.kit-intro-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.kit-checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.checklist-item i {
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.checklist-item strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Requirements Box */
.kit-requirements-box {
    background: var(--bg-card);
    border: 1px solid rgba(255, 106, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.req-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.req-header i {
    font-size: 1.6rem;
}

.req-header h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.kit-requirements-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.req-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.req-list li {
    display: flex;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.req-list li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.req-list li strong {
    color: var(--text-light);
}

.req-action-buttons {
    display: flex;
    gap: 15px;
}

/* --- Section Info & Largadas --- */
.info-section {
    position: relative;
    padding: 100px 0;
    background-image: url('images/galaxia1.webp');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.info-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 196, 195, 0.05) 0%, transparent 60%);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.info-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 5;
}

.cronograma-title-brand {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-left: 4px solid var(--cian);
    padding-left: 15px;
}

/* Cuadrícula horizontal del Cronograma */
.cronograma-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 10px;
}

.cronograma-card {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.cronograma-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cian);
}

.cronograma-card.kids::before {
    background: var(--naranja);
}

.cronograma-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 196, 195, 0.08);
}

.cronograma-card.kids:hover {
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.08);
}

.cronograma-card-icon {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-sm);
    background: rgba(0, 196, 195, 0.06);
    border: 1px solid rgba(0, 196, 195, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cian);
    margin-bottom: 5px;
}

.cronograma-card.kids .cronograma-card-icon {
    background: rgba(255, 106, 0, 0.06);
    border-color: rgba(255, 106, 0, 0.15);
    color: var(--naranja);
}

.cronograma-card h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-light);
}

.cronograma-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.badge {
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

/* Banner de Aviso Horizontal */
.info-alert-banner {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-left: 4px solid var(--cian);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: var(--shadow-card);
    margin-top: 10px;
    transition: var(--transition-smooth);
}

.info-alert-banner:hover {
    box-shadow: 0 10px 30px rgba(0, 196, 195, 0.05);
}

.info-alert-icon {
    font-size: 2rem;
    color: var(--cian);
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: rgba(0, 196, 195, 0.06);
    border: 1px solid rgba(0, 196, 195, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-alert-text {
    flex-grow: 1;
}

.info-alert-text h3 {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--text-light);
}

.info-alert-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Adaptación Responsiva para el Cronograma */
@media (max-width: 1024px) {
    .cronograma-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .info-alert-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .info-alert-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .cronograma-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.info-detalle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto 0 auto;
    max-width: 1200px;
    width: 100%;
    padding: 0 24px;
    position: relative;
    z-index: 5;
}

.info-detalle-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease, box-shadow 0.3s ease;
}

.info-detalle-img:hover {
    transform: scale(1.025) translateY(-5px);
    filter: drop-shadow(0 15px 30px rgba(0, 196, 195, 0.25));
}

/* --- Section Precios --- */
.pricing-section {
    padding: 100px 0;
    background-color: var(--bg-darker);
}

/* Estilos de Sección Oscura Precios */
.pricing-section.dark-section {
    background: linear-gradient(135deg, #0f172a 0%, #090d16 100%);
    color: #ffffff;
}

.pricing-section.dark-section .section-title {
    color: #ffffff;
}

.pricing-section.dark-section .price-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.pricing-section.dark-section .price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-section.dark-section .price-card.popular {
    border: 2px solid var(--cian);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 25px rgba(0, 196, 195, 0.15);
}

.pricing-section.dark-section .price-card.popular:hover {
    box-shadow: 0 0 35px rgba(0, 196, 195, 0.25);
    border-color: var(--cian);
}

.pricing-section.dark-section .price-header p {
    color: #cbd5e1;
}

.pricing-section.dark-section .price-value-container {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.pricing-section.dark-section .price-prefix {
    color: #94a3b8;
}

.pricing-section.dark-section .price-amount {
    color: #ffffff;
}

.pricing-section.dark-section .price-card:not(.popular) .price-amount {
    color: var(--naranja);
    text-shadow: 0 2px 10px rgba(255, 106, 0, 0.25);
}

.pricing-section.dark-section .price-card.popular .price-amount {
    color: var(--cian);
    text-shadow: 0 2px 10px rgba(0, 196, 195, 0.25);
}

.pricing-section.dark-section .price-amount-secondary {
    color: #94a3b8;
}

.pricing-section.dark-section .currency {
    color: #94a3b8;
}

.pricing-section.dark-section .price-divider {
    background-color: rgba(255, 255, 255, 0.1);
}

.pricing-section.dark-section .price-features li {
    color: #cbd5e1;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-lg);
    padding: 40px;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: rgba(15, 23, 42, 0.12);
}

.price-card.popular {
    border-color: var(--cian);
    box-shadow: var(--shadow-card), 0 0 20px rgba(0, 196, 195, 0.05);
}

.card-glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at 50% 0%, rgba(0, 196, 195, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.price-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.price-badge {
    display: inline-block;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.price-header h3 {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.6rem;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 8px;
}

.price-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-value-container {
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.price-prefix {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.price-amount {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-light);
}

.price-card.popular .price-amount {
    color: var(--cian);
    text-shadow: 0 2px 8px rgba(0, 196, 195, 0.15);
}

.price-card:not(.popular) .price-amount {
    color: var(--naranja);
    text-shadow: 0 2px 8px rgba(255, 106, 0, 0.15);
}

.currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-left: 2px;
}

.price-divider {
    height: 1px;
    background-color: rgba(15, 23, 42, 0.06);
    margin: 15px 0;
}

.price-amount-secondary {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1;
    color: var(--text-muted);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-features li i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.price-footer {
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* --- Section Reglamento y FAQs --- */
.rules-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 106, 0, 0.02) 50%, var(--bg-dark) 100%);
}

.rules-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
}

.rules-guide-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 106, 0, 0.15);
    box-shadow: var(--shadow-card);
    padding: 40px;
    border-radius: var(--radius-md);
}

.guide-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.guide-header i {
    font-size: 1.8rem;
}

.guide-header h3 {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.rules-guide-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.guide-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.guide-list li {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.45);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 106, 0, 0.08);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.guide-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-card-header i {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.guide-card-header strong {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.guide-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Acordeón Elegante del Reglamento */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.accordion-item:hover {
    border-color: rgba(255, 0, 119, 0.2);
}

.accordion-title {
    width: 100%;
    text-align: left;
    padding: 22px 30px;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.05rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: none;
    transition: var(--transition-fast);
}

.accordion-title span {
    padding-right: 15px;
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--cian);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 30px;
}

.accordion-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    padding-bottom: 20px;
}

.accordion-content p strong {
    color: var(--text-light);
}

/* Estado del acordeón abierto */
.accordion-item.open {
    border-color: var(--fucsia);
    background: rgba(255, 255, 255, 0.95);
}

.accordion-item.open .accordion-title {
    color: var(--fucsia);
}

.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
    color: var(--fucsia);
}

.accordion-item.open .accordion-content {
    max-height: 250px;
}

/* --- Section Sponsors --- */
.sponsors-section {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, var(--bg-darker) 0%, #e2e8f0 100%);
}

/* Carrusel Infinito */
.sponsors-ticker-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 35px 0;
    background: rgba(15, 23, 42, 0.02);
    border-top: 1px solid rgba(15, 23, 42, 0.05);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    margin-bottom: 40px;
}

.sponsors-ticker-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 30s linear infinite;
}

.sponsor-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
}

.sponsors-loaded-img {
    height: 180px;
    width: auto;
    object-fit: contain;
}

.sponsors-fallback-track {
    display: flex;
    align-items: center;
    gap: 60px;
}

.logo-text {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.65;
    transition: var(--transition-fast);
}

.logo-text:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.sponsors-organized {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sponsors-organized strong {
    color: var(--text-light);
    font-weight: 600;
}

/* --- Section Contacto --- */
.contact-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--bg-dark);
}

/* Estilos de Sección Oscura Contacto */
.contact-section.dark-section {
    background: linear-gradient(135deg, #0b0f19 0%, #0d1321 100%);
    color: #ffffff;
}

.contact-section.dark-section .section-title {
    color: #ffffff;
}

.contact-section.dark-section .contact-info p {
    color: #cbd5e1;
}

.contact-section.dark-section .c-info-item h4 {
    color: #94a3b8;
}

.contact-section.dark-section .c-info-item p {
    color: #ffffff;
}

.contact-section.dark-section .c-info-item a:hover {
    color: var(--cian);
}

.contact-section.dark-section .social-icon {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    color: #94a3b8;
}

.contact-section.dark-section .social-icon:hover {
    color: #ffffff;
}

.contact-section.dark-section .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.contact-section.dark-section .form-group label {
    color: #cbd5e1;
}

.contact-section.dark-section .form-group input,
.contact-section.dark-section .form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.contact-section.dark-section .form-group input::placeholder,
.contact-section.dark-section .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-section.dark-section .form-group input:focus,
.contact-section.dark-section .form-group textarea:focus {
    border-color: var(--cian);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 196, 195, 0.2);
}

.contact-glow {
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.05) 0%, transparent 60%);
    bottom: -150px;
    left: 20%;
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    position: relative;
    z-index: 5;
}

.contact-info h3 {
    font-family: var(--font-headings);
    font-weight: 900;
    font-size: 1.9rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.c-info-item {
    display: flex;
    gap: 20px;
}

.c-info-item i {
    font-size: 1.5rem;
    margin-top: 3px;
    width: 25px;
    text-align: center;
}

.c-info-item h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.c-info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.c-info-item a:hover {
    color: var(--cian);
    text-decoration: underline;
}

/* Redes Sociales */
.contact-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--text-light);
}

.social-icon.inst:hover {
    background: #e1306c;
    border-color: #e1306c;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    color: var(--text-dark);
}

.social-icon.face:hover {
    background: #1877f2;
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
    color: var(--text-dark);
}

/* Formulario */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: var(--radius-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-group textarea {
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(15, 23, 42, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--cian);
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0, 196, 195, 0.15);
}

/* Retroalimentación */
.form-feedback {
    display: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: var(--radius-sm);
}

.form-feedback.success {
    display: block;
    background: rgba(0, 196, 195, 0.1);
    border: 1px solid var(--cian);
    color: var(--cian);
}

.form-feedback.error {
    display: block;
    background: rgba(255, 0, 119, 0.1);
    border: 1px solid var(--fucsia);
    color: var(--fucsia);
}

/* --- Footer --- */
.main-footer {
    background-color: #080b13;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
    color: #ffffff;
}

.main-footer .footer-brand p {
    color: #94a3b8;
}

.main-footer .footer-links h4,
.main-footer .footer-newsletter h4 {
    color: #ffffff;
}

.main-footer .footer-links a {
    color: #94a3b8;
}

.main-footer .footer-links a:hover {
    color: var(--cian);
}

.main-footer .footer-newsletter p {
    color: #94a3b8;
}

.main-footer .newsletter-form {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.main-footer .newsletter-form input {
    color: #ffffff;
}

.main-footer .newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.main-footer .footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.05);
    color: #64748b;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo-img {
    height: 170px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.footer-logo-img:hover {
    transform: scale(1.03);
}

.footer-icon-img {
    height: 48px;
    width: auto;
    align-self: flex-start;
    opacity: 0.75;
    filter: brightness(0) invert(1);
    /* Fuerza la imagen a blanco puro de forma nativa */
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-icon-img:hover {
    opacity: 1;
    transform: scale(1.08) rotate(-5deg);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--cian);
    padding-left: 5px;
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 340px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition-fast);
}

.newsletter-form:focus-within {
    border-color: var(--cian);
    box-shadow: 0 0 10px rgba(0, 196, 195, 0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: rgba(15, 23, 42, 0.35);
}

.newsletter-form button {
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cian);
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

.newsletter-form button:hover {
    background: var(--fucsia);
    color: var(--text-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 30px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--cian);
    text-shadow: var(--shadow-neon-cian);
}


/* --- Animaciones de Carga y Revelación --- */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   MEDIA QUERIES - DISEÑO RESPONSIVO
   ========================================================================== */

@media (max-width: 1024px) {

    /* Grids principales del layout */
    .about-grid,
    .kit-grid,
    .info-container,
    .rules-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-image-showcase {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .main-img {
        height: 320px;
    }

    .secondary-img {
        height: 220px;
    }

    .kit-card {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }

    .kit-card .flyer-fallback-content {
        min-height: 400px;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .price-card {
        width: 100%;
        max-width: 500px;
    }

    .footer-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .logo-icon-img {
        display: none !important;
    }

    /* Hero & Contador Responsivos */
    .hero-section {
        flex-direction: column;
        justify-content: center;
        padding-top: calc(var(--header-height) + 30px);
        padding-bottom: 50px;
        min-height: 100vh;
        height: auto;
    }

    .hero-content-wrapper {
        width: 100%;
        max-width: 580px;
        margin: 0 auto;
        padding-left: 24px;
        padding-right: 24px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 8vw, 4.2rem);
        line-height: 1.1;
    }

    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 5px;
        margin-bottom: 25px;
    }

    .section-title {
        font-size: clamp(1.8rem, 5.5vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .countdown-container {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 35px auto 60px;
        width: calc(100% - 24px);
        max-width: 600px;
        padding: 24px 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 196, 195, 0.1);
    }

    .countdown-timer {
        gap: 12px;
    }

    .countdown-box {
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 2.4rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .scroll-down-arrow {
        display: none;
    }

    /* Stats banner */
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-details-row {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .detail-divider {
        width: 100%;
        height: 1px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    /* Menu Hamburguesa Responsivo */
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(9, 13, 22, 0.96);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 50px 24px;
        transition: var(--transition-smooth);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        width: 100%;
    }

    .nav-link {
        font-family: var(--font-headings);
        font-weight: 800;
        font-size: 1.4rem;
        color: #ffffff !important;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 5px 0;
        transition: var(--transition-fast);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--cian) !important;
        text-shadow: var(--shadow-neon-cian);
    }

    .nav-link::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .nav-mobile-cta {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .btn-mobile-nav {
        width: 100%;
        max-width: 280px;
        padding: 14px 28px;
        font-size: 0.95rem;
        background: linear-gradient(135deg, var(--fucsia) 0%, var(--naranja) 100%) !important;
        color: var(--text-dark) !important;
        border-radius: var(--radius-md) !important;
        box-shadow: 0 8px 25px rgba(255, 0, 119, 0.4);
        font-weight: 800;
        border: none;
        letter-spacing: 1px;
    }

    .btn-mobile-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(255, 0, 119, 0.6);
    }

    .btn-nav {
        display: none !important;
        /* Oculta botón pequeño en header móvil */
    }

    /* Toggle Activo Animación */
    .mobile-toggle.open .bar:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
        background-color: var(--fucsia);
    }

    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-toggle.open .bar:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
        background-color: var(--fucsia);
    }

    /* Scrolled Mobile Navigation Toggle */
    .main-header.scrolled .mobile-toggle.open .bar {
        background-color: var(--fucsia);
    }

    /* Ajuste de menú móvil al hacer scroll */
    .main-header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    /* Evitar el auto-zoom molesto en iOS al enfocar campos de texto */
    .contact-form input,
    .contact-form textarea,
    .newsletter-form input {
        font-size: 16px !important;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 600px;
        margin: 20px auto 0;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-overlay {
        padding: 15px 10px;
        justify-content: center;
    }

    .gallery-overlay::before {
        top: 8px;
        left: 8px;
        right: 8px;
        bottom: 8px;
    }

    .gallery-title {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .gallery-category {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    /* Checklist del kit y botones de deslinde responsivos en tablets/móviles */
    .kit-checklist-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .req-action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .req-action-buttons .btn {
        width: 100%;
    }

    /* Reglamento general corto horizontal en tablet */
    .guide-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-bottom: 25px;
    }

    .guide-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(255, 255, 255, 0.45);
        padding: 15px 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 106, 0, 0.08);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    }

    .guide-list li i {
        font-size: 1.5rem;
        margin-top: 0;
        margin-bottom: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 30px 15px;
    }

    .countdown-container {
        padding: 20px 10px;
        width: calc(100% - 16px);
        margin-bottom: 50px;
    }

    .countdown-date-badge {
        font-size: 0.85rem;
        padding: 6px 14px;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .countdown-timer {
        gap: 6px;
    }

    .countdown-box {
        padding: 12px 6px;
    }

    .countdown-number {
        font-size: 1.8rem;
        text-shadow: 0 0 8px rgba(0, 196, 195, 0.5);
    }

    .countdown-box:nth-child(even) .countdown-number {
        text-shadow: 0 0 8px rgba(255, 0, 119, 0.5);
    }

    .countdown-label {
        font-size: 0.65rem;
        margin-top: 4px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    /* Ajuste de solapamiento de imágenes de la carrera en móviles pequeños */
    .about-image-showcase {
        height: 280px;
        margin-top: 20px;
    }

    .main-img {
        height: 220px !important;
        width: 75% !important;
        top: 10px !important;
        left: 10px !important;
    }

    .secondary-img {
        height: 160px !important;
        width: 58% !important;
        bottom: 10px !important;
        right: 10px !important;
    }

    /* Galería compacta y elegante en smartphones */
    .gallery-grid {
        gap: 10px;
        margin-top: 15px;
    }

    .gallery-item {
        height: 140px;
    }

    .gallery-overlay {
        padding: 10px 5px;
    }

    .gallery-overlay::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
    }

    .gallery-title {
        font-size: 0.8rem;
        margin-bottom: 1px;
    }

    .gallery-category {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }

    .contact-form-wrapper {
        padding: 24px 16px;
    }

    /* Optimización de tarjetas de precio en móviles muy pequeños */
    .price-card {
        padding: 24px 20px;
    }

    .price-header h3 {
        font-size: 1.4rem;
    }

    .price-value-container {
        padding: 16px;
        margin-bottom: 20px;
    }

    .price-amount {
        font-size: 2rem;
    }

    .price-amount-secondary {
        font-size: 1.3rem;
    }

    /* Reglamento general corto vertical compacto en mobile */
    .guide-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .guide-list li {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 15px;
    }

    .guide-list li i {
        font-size: 1.3rem;
        margin-top: 0;
        margin-bottom: 0;
    }
}

/* --- Botón Flotante de WhatsApp --- */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4), 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), background-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1) translateY(-3px);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 4px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
}

.whatsapp-float-btn:active {
    transform: scale(0.95) translateY(0);
}

/* Responsividad para móviles */
@media (max-width: 768px) {
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}