/* Variables y reseteo base */
:root {
    --bg-top: #050a15;
    /* Azul ultra oscuro del cielo */
    --glow-bottom: #3aa5ff;
    /* Azul brillante inferior */
    --text-white: #ffffff;
    --cyan-btn: #80e5ff;
    --dark-btn: #0b1536;
    --blue-city: #3a8cff;
    --cx-gradient: linear-gradient(180deg, #7ad3ff 0%, #2962ff 100%);
    --year-gradient: linear-gradient(90deg, #62cdff 0%, #2962ff 100%);
}

/* ================================
   RESETEO BASE (Evita el scroll horizontal)
   ================================ */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* Esto es la magia que corta lo que se sale a la derecha */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-top);
    color: var(--text-white);
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

/* ================================
   NAVEGACIÓN (HEADER SUPERIOR)
   ================================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%; 
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999; 
    background-color: rgba(5, 10, 21, 0.95); 
    border-bottom: 1px solid #000000; 
    /* Sombra cyan muy suave */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- 1. BLOQUE IZQUIERDO (LOGO IMAGEN) --- */
.logos-container {
    flex: 1;
    /* Esto empuja el menú hacia el centro */
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.nav-main-logo {
    max-height: 62px;
    /* Sube o baja este valor según el tamaño de tu imagen */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-main-logo:hover {
    transform: scale(1.02);
}

/* --- 2. BLOQUE CENTRAL (ENLACES) --- */
.nav-links {
    flex: 2;
    /* Le da prioridad al centro para que no se aprieten los links */
    list-style: none;
    display: flex;
    justify-content: center;
    /* Asegura que queden en medio de la pantalla */
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--cyan-btn);
}

/* --- 3. BLOQUE DERECHO (BOTÓN TICKET) --- */
.nav-action {
    flex: 1;
    /* Iguala el espacio del lado izquierdo para balancear */
    display: flex;
    justify-content: flex-end;
    /* Pega el botón al margen derecho */
}

.btn-nav-ticket {
    background-color: transparent;
    color: var(--cyan-btn);
    border: 2px solid var(--cyan-btn);
    padding: 8px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-nav-ticket:hover {
    background-color: var(--cyan-btn);
    color: var(--bg-top);
    box-shadow: 0 5px 15px rgba(128, 229, 255, 0.4);
    transform: translateY(-2px);
}

/* ================================
   HERO SECTION (VIDEO FONDO Y ESTRUCTURA)
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 10% 50px;
    overflow: hidden;
    /* Evita que el video se salga de la sección */
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Llena el espacio sin deformar */
    object-position: bottom center; /* ¡Esta es la clave! Ancla el video abajo */
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 21, 0.6);
    /* Capa oscura (60%) ajusta si quieres que se vea más o menos el video */
    z-index: 1;
}

/* --- CONTENEDOR PRINCIPAL --- */
.hero-content {
    position: relative;
    z-index: 2;
    /* Mantiene el contenido por encima del video y el overlay */
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    align-items: center;
}

/* --- LADO IZQUIERDO (IMAGEN) --- */
.hero-left {
    display: flex;
    justify-content: flex-start;
    flex: 1;
    /* Permite que la imagen ocupe el espacio necesario */
}

.hero-main-img {
    width: 65%;
    max-width: 500px;
    /* Ajusta este valor para hacer tu imagen más grande o pequeña */
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    /* Le da un poco de sombra a tu imagen */
}

/* --- LADO DERECHO (BOTONES E INFO) --- */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 30px;
    flex: 1;
}

.hero-fechas-img {
    width: 100%;
    max-width: 480px;
    margin: 0 0 35px 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
}


.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 0;
}

.btn {
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-tickets {
    background-color: var(--cyan-btn);
    color: #000;
}

.btn-agenda {
    background-color: var(--dark-btn);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Un borde sutil para que no se pierda en el video */
}

/* ================================
   RESPONSIVE BÁSICO PARA EL HERO
   ================================ */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 50px;
    }

    .hero-left {
        justify-content: center;
    }

    .hero-main-img {
        max-width: 400px;
        /* Un poco más pequeña en tablet/móvil */
    }

    .hero-fechas-img {
        max-width: 340px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        /* Apila los botones en celulares muy pequeños */
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

/* ================================
   SECCIÓN EXPERIENCIA
   ================================ */
.experiencia-section {
    background-color: #ffffff;
    color: #0b1536;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* --- Bloque superior: logo + texto --- */
.exp-intro {
    display: flex;
    align-items: center;
    gap: 48px;
}

.exp-intro-logo {
    flex-shrink: 0;
}

.exp-intro-logo img {
    width: 180px;
    height: auto;
}

.exp-intro-text {
    flex: 1;
}

.exp-intro-text p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 12px 0;
    color: #1a2a4a;
}

.exp-intro-text p:last-child {
    margin-bottom: 0;
}

/* --- Video placeholder --- */
.exp-video-wrapper {
    width: 100%;
    line-height: 0;
}

.exp-video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* --- Bloque inferior: imagen + texto --- */
.exp-vive {
    display: flex;
    align-items: center;
    gap: 56px;
}

.exp-vive-img {
    flex-shrink: 0;
}

.exp-vive-img img {
    width: 700px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.exp-vive-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.exp-vive-text p {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.8;
    color: #1a2a4a;
    margin: 0;
}

.exp-vive-text .btn-buy-ticket {
    align-self: flex-start;
    margin-top: 8px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .exp-intro,
    .exp-vive {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .exp-intro-logo img {
        width: 140px;
    }

    .exp-vive-img img {
        width: 100%;
        max-width: 480px;
    }
}

/* ================================
   BANNER APILADO (MENTES SOBRE ELEMENTO AZUL)
   ================================ */
.stacked-banner {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    line-height: 0;
    overflow: hidden;
}

.stacked-bottom {
    width: 100%;
    display: block;
}

.stacked-top {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ================================
   SECCIÓN LABS
   ================================ */
.labs-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 60px 0;
}

.labs-img {
    width: 100%;
    display: block;
    margin-top: 50px;
}

.labs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    margin-top: 48px;
    padding: 0 4%;
}

.flip-card {
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    width: 100%;
}

.flip-card-front img,
.flip-card-back img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
}

.labs-grid .flip-card:nth-child(1) {
    transform: translateX(-80px);
}

.labs-grid .flip-card:nth-child(3) {
    transform: translateX(80px);
}

.labs-section .btn-buy-ticket {
    margin-top: 48px;
}

/* ================================
   SECCIÓN ECOSISTEMA
   ================================ */
.ecosistema-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    line-height: 0;
}

.ecosistema-header-img {
    width: 70%;
    display: block;
    margin: 60px auto 0;
}

.ecosistema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-top: 55px;
}

.ecosistema-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ecosistema-col img {
    width: 60%;
    display: block;
    object-fit: cover;
}

.ecosistema-col:first-child img {
    margin-left: auto;
    margin-right: 40px;
}

.ecosistema-col:last-child img {
    margin-left: 30px;
    margin-right: 0;
}

/* inspirar = 2ª img columna izquierda | conectar = 1ª img columna derecha */
.ecosistema-col:first-child img:last-child,
.ecosistema-col:last-child img:first-child {
    width: 50%;
}

@media (max-width: 640px) {
    .ecosistema-header-img {
        width: 90%;
    }

    .ecosistema-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .ecosistema-col img,
    .ecosistema-col:first-child img,
    .ecosistema-col:last-child img,
    .ecosistema-col:first-child img:last-child,
    .ecosistema-col:last-child img:first-child {
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        object-fit: unset;
    }
}

/* ================================
   SECCIÓN CONEXIONES
   ================================ */
.conexiones-section {
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 6% 70px;
    gap: 40px;
}

.conexiones-top-img {
    width: 100%;
    max-width: 960px;
    display: block;
}

.conexiones-grid {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 10px;
    width: 100%;
    max-width: 960px;
    align-items: center;
}

.conexiones-grid img {
    width: 100%;
    display: block;
    border-radius: 8px;
}

@media (max-width: 640px) {
    .conexiones-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SECCIÓN ACCESO
   ================================ */
.acceso-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 70px;
    line-height: 0;
}

.acceso-img {
    width: 100%;
    display: block;
    margin-top: 70px;
}

.acceso-buttons {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    line-height: normal;
}

.btn-info {
    display: inline-block;
    background: #ffffff;
    color: #2962ff;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    border: 2px solid #2962ff;
    letter-spacing: 1px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(41, 98, 255, 0.15);
    transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-info:hover {
    background: #2962ff;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(41, 98, 255, 0.4);
}

@media (max-width: 576px) {
    .acceso-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* ================================
   SECCIÓN ESTADÍSTICAS Y ACERCA DE
   ================================ */
.stats-about-section {
    background-color: #ffffff;
    /* Fondo blanco */
    padding: 80px 10%;
    color: #000;
    /* Texto oscuro para esta sección */
}

/* --- TARJETAS DE ESTADÍSTICAS --- */
.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 60px;
}

.stat-card {
    /* Degradado de azul claro a azul fuerte */
    background: linear-gradient(135deg, #5bd1ff 0%, #2962ff 100%);
    flex: 1;
    /* Para que todas midan lo mismo */
    text-align: center;
    padding: 30px 20px;
    /* Aquí está el truco de la forma: Arriba-Izq, Arriba-Der, Abajo-Der, Abajo-Izq */
    border-radius: 30px 30px 30px 0;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(41, 98, 255, 0.15);
    /* Sombrilla suave */
}

.stat-card h3 {
    font-size: 50px;
    font-weight: 900;
    margin: 0 0 5px 0;
    line-height: 1;
}

.stat-card p {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: #e0f4ff;
    /* Un blanco azulado para que contraste suave */
}

/* --- LOGO Y TEXTO DESCRIPTIVO --- */
.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Contenedor de la nueva imagen */
.about-logo-box {
    flex: 0 0 auto;
    text-align: center;
}

/* Estilos de la nueva imagen del logo */
.about-main-img {
    width: 100%;
    max-width: 250px; 
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Texto de la derecha */
.about-text-box {
    flex: 1;
}

.about-text-box p {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

/* Texto de la derecha */
.about-text-box {
    flex: 1;
}

.about-text-box p {
    font-size: 22px;
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
}

/* ================================
   RESPONSIVE PARA ESTA SECCIÓN
   ================================ */
@media (max-width: 992px) {
    .stats-grid {
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1 1 45%;
        /* Para que queden 2 y 2 en tablets/móviles grandes */
    }

    .about-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .about-text-box p {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .stat-card {
        flex: 1 1 100%;
        /* Para que queden 1 por fila en celulares pequeños */
    }
}

/* ================================
   SECCIÓN SPEAKERS
   ================================ */
.speakers-section {
    background-color: #ffffff;
    position: relative;
    padding-top: 50px;
}

.speakers-header {
    padding: 0 10%;
    margin-bottom: 30px;
}

.speakers-title {
    font-size: 70px;
    font-weight: 900;
    color: #2962ff;
    /* Azul fuerte */
    margin: 0;
    letter-spacing: -2px;
}

/* Contenedor principal de la ola azul */
.speakers-wave-container {
    position: relative;
    background: linear-gradient(to right, #2962ff 0%, #5bd1ff 100%);
    padding: 100px 0;
    /* Da espacio a las tarjetas y la ola */
    overflow: hidden;
}

/* Configuraciones para las olas SVG */
.wave-top,
.wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.wave-top {
    top: -1px;
}

/* Ajuste de 1px para evitar líneas finas blancas */
.wave-bottom {
    bottom: -1px;
}

.wave-top svg,
.wave-bottom svg {
    width: 100%;
    height: 120px;
    /* Altura de la curva */
}

/* --- TARJETAS DEL CARRUSEL --- */
.speakers-carousel {
    display: flex;
    justify-content: center;
    gap: 30px;
    position: relative;
    z-index: 2;
    /* Sobre el fondo y las olas */
    padding: 0 5%;
    flex-wrap: wrap;
}

.speaker-card {
    width: 220px;
    height: 250px;
    /* Fondo que va de cyan brillante a un azul casi negro */
    background: linear-gradient(180deg, #00d2ff 0%, #000c1f 100%);
    /* Forma asimétrica (blob) para imitar la referencia */
    border-radius: 50% 45% 48% 52% / 49% 52% 48% 50%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
}

/* La imagen de la persona (debe ser PNG sin fondo) */
.speaker-img {
    position: absolute;
    bottom: 0;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Sombreado inferior para que el texto resalte siempre */
.speaker-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 12, 31, 0.95) 100%);
    z-index: 2;
}

/* Textos dentro de la tarjeta */
.speaker-info {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-bottom: 25px;
    width: 100%;
}

.speaker-name {
    color: #ffffff;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    margin: 0 0 5px 0;
}

.speaker-name span {
    color: #5bd1ff;
    font-weight: 800;
    font-size: 22px;
}

.speaker-job {
    color: #ffffff;
    font-size: 10px;
    margin: 0;
    font-weight: 300;
}

/* --- CONTROLES (PUNTITOS) --- */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #80e5ff;
    /* Cyan activo */
    box-shadow: 0 0 10px rgba(128, 229, 255, 0.6);
}

/* --- BOTÓN INFERIOR --- */
.speakers-footer {
    padding: 30px 10%;
    background-color: #ffffff;
    /* Asegura que el fondo inferior siga blanco */
}

.btn-cyan-tickets {
    display: inline-block;
    background-color: #80e5ff;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(128, 229, 255, 0.4);
    transition: transform 0.2s ease, background-color 0.2s;
}

.btn-cyan-tickets:hover {
    transform: scale(1.05);
    background-color: #66e0ff;
}

/* ================================
   RESPONSIVE PARA SPEAKERS
   ================================ */
@media (max-width: 992px) {
    .speakers-title {
        font-size: 50px;
        text-align: center;
    }

    .wave-top svg,
    .wave-bottom svg {
        height: 70px;
    }

    .speakers-wave-container {
        padding: 60px 0;
    }

    .speakers-footer {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .speakers-carousel {
        gap: 20px;
    }

    .speaker-card {
        width: 180px;
        height: 210px;
    }

    .speaker-name {
        font-size: 14px;
    }

    .speaker-name span {
        font-size: 18px;
    }

    .btn-cyan-tickets {
        font-size: 16px;
        padding: 10px 30px;
    }
}

/* ================================
   SECCIÓN TALLERES
   ================================ */
.talleres-section {
    background-color: #ffffff;
    padding: 80px 10%;
    text-align: center;
}

/* --- ENCABEZADO --- */
.talleres-header {
    max-width: 900px;
    margin: 0 auto 100px auto;
    /* Mucho margen inferior para que quepan los círculos de los números */
}

/* Pastilla azul de TALLERES */
.talleres-badge {
    display: inline-block;
    background: linear-gradient(90deg, #2962ff 0%, #5bd1ff 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    padding: 8px 40px;
    border-radius: 30px;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.talleres-desc {
    font-size: 22px;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

/* --- CUADRÍCULA DE TARJETAS --- */
.talleres-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.taller-card {
    background-color: #f5f6f8;
    /* Gris súper clarito */
    border: 1px solid #e5e5e5;
    /* Borde muy sutil */
    border-radius: 20px;
    width: 300px;
    height: 350px;
    position: relative;
    text-align: left;
    padding: 40px 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    /* Sombra casi invisible para dar profundidad */
}

/* Círculo Cyan con el número */
.taller-number {
    position: absolute;
    top: -45px;
    /* Lo subimos para que quede a la mitad del borde */
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-color: #80e5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    font-weight: 900;
    color: #000000;
}

/* Texto izquierdo de la tarjeta */
.taller-title {
    font-size: 34px;
    font-weight: 300;
    color: #777777;
    line-height: 1.1;
    margin-top: 50px;
    /* Lo bajamos para que no choque con el número interior */
    position: relative;
    z-index: 2;
    /* Para que quede por encima de la foto si se cruzan */
}

/* Imagen de la persona */
.taller-img {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    object-position: bottom right;
    /* Este filtro es la magia para ponerlos en blanco y negro */
    filter: grayscale(100%) contrast(1.1);
    border-bottom-right-radius: 20px;
    /* Sigue la curva de la tarjeta */
    z-index: 1;
}

/* ================================
   RESPONSIVE PARA TALLERES
   ================================ */
@media (max-width: 992px) {
    .talleres-desc {
        font-size: 18px;
    }

    .talleres-badge {
        font-size: 20px;
    }

    .taller-card {
        width: 280px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .talleres-header {
        margin-bottom: 70px;
    }

    .taller-card {
        width: 100%;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 50px;
        /* Espacio entre tarjetas apiladas */
    }
}

/* ================================
   SECCIÓN TICKETS
   ================================ */
.tickets-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.tickets-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.tickets-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 10, 21, 0.55);
    z-index: 1;
}

.tickets-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 6%;
    width: 100%;
    max-width: 1200px;
}

.tickets-title-img {
    width: 100%;
    max-width: 600px;
    display: block;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.tickets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    width: 100%;
    max-width: 1000px;
}

.ticket-img {
    width: 100%;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-img:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 640px) {
    .tickets-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tickets-title-img {
        max-width: 90%;
    }
}

/* --- FONDO ABSTRACTO (LETRAS CX GIGANTES) --- */
.bg-abstract-c,
.bg-abstract-x {
    position: absolute;
    font-size: 100vw;
    /* Tamaño responsivo gigantesco */
    font-weight: 900;
    line-height: 0.8;
    z-index: -1;
    background: linear-gradient(135deg, #5bd1ff 0%, #2962ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
}

.bg-abstract-c {
    top: -10%;
    left: -20%;
}

.bg-abstract-x {
    top: 5%;
    right: -25%;
}

/* --- TÍTULO TIPO PASTILLA --- */
.tickets-header-container {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.tickets-title-pill {
    display: inline-block;
    background-color: #ffffff;
    color: #d1d5db;
    /* Gris plata clarito */
    font-size: 55px;
    font-weight: 900;
    padding: 15px 80px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    letter-spacing: -2px;
}

/* --- CONTENEDOR DE TARJETAS --- */
.tickets-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.ticket-card {
    width: 100%;
    max-width: 420px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

/* --- CABECERA DEL BOLETO --- */
.ticket-top {
    background: linear-gradient(to right, #00e1ff 0%, #009dff 100%);
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.ticket-acceso {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.1;
}

.ticket-acceso strong {
    font-size: 20px;
    font-weight: 800;
}

.ticket-fechas {
    display: flex;
    gap: 8px;
}

.circle-day {
    background-color: #ffffff;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ticket-mes {
    font-size: 16px;
    font-weight: 800;
    text-align: right;
    line-height: 1;
}

.ticket-mes span {
    font-size: 12px;
    font-weight: 400;
}

/* --- CUERPO DEL BOLETO --- */
.ticket-body {
    background: linear-gradient(180deg, #000c1f 0%, #0037a3 100%);
    padding: 30px 20px;
    color: #ffffff;
}

/* Logos dentro del boleto */
.ticket-logos {
    text-align: center;
    margin-bottom: 30px;
}

.ticket-logo-cx {
    color: #5bd1ff;
    font-size: 40px;
    font-weight: 900;
    line-height: 0.9;
    margin: 0 0 15px 0;
}

.ticket-logo-cx small {
    font-size: 18px;
    color: #ffffff;
}

.ticket-logo-cx span {
    font-size: 9px;
    letter-spacing: 2px;
    color: #5bd1ff;
}

.ticket-year {
    background: #2962ff;
    color: #fff !important;
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 12px !important;
    display: inline-block;
    margin-top: 5px;
}

.ticket-logo-imt {
    background: #ffffff;
    color: #0037a3;
    display: inline-block;
    padding: 5px 25px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 18px;
}

/* Cuadrícula de beneficios */
.ticket-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px 0;
}

.benefit-item {
    font-size: 10px;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0f4ff;
}

.border-sides {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- PIE DEL BOLETO (PRECIOS Y TALONARIO) --- */
.ticket-bottom {
    background-color: #ffffff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 40px 30px 20px;
    position: relative;
    text-align: center;
    color: #000000;
}

/* Borde perforado (línea punteada) */
.ticket-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15px;
    right: 15px;
    border-top: 3px dashed #cccccc;
}

/* Círculos recortados en los bordes para dar efecto de talonario */
.ticket-bottom::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background-color: #f8f9fb;
    /* Mismo color del fondo de la sección */
    border-radius: 50%;
    box-shadow: 420px 0 0 #f8f9fb;
    /* Sombra que crea el círculo del lado derecho (asumiendo width máx 420px) */
}

.early-title {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 20px 0;
}

.price-tier {
    margin: 10px 0;
}

.price-amount {
    color: #0066ff;
    font-size: 16px;
    font-weight: 800;
    margin: 0 0 2px 0;
}

.price-date {
    font-size: 9px;
    color: #666666;
    margin: 0;
}

.ticket-bottom hr {
    border: none;
    border-top: 1px solid #eeeeee;
    width: 60%;
    margin: 10px auto;
}

.costo-nota {
    font-size: 9px;
    color: #999999;
    margin-top: 20px;
}

/* ================================
   RESPONSIVE PARA TICKETS
   ================================ */
@media (max-width: 992px) {

    .bg-abstract-c,
    .bg-abstract-x {
        font-size: 150vw;
    }

    .tickets-title-pill {
        font-size: 40px;
        padding: 10px 50px;
    }

    .ticket-bottom::after {
        box-shadow: calc(100vw - 10% + 30px) 0 0 #f8f9fb;
        /* Ajuste dinámico de la sombra en móvil */
    }
}

@media (max-width: 576px) {
    .benefit-item {
        font-size: 9px;
        padding: 0 5px;
    }

    .ticket-acceso {
        font-size: 14px;
    }

    .ticket-acceso strong {
        font-size: 16px;
    }

    .circle-day {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }

    .ticket-bottom::after {
        box-shadow: none;
        display: none;
        /* Desactivar los círculos de recorte en pantallas muy pequeñas si rompen el diseño */
    }
}

/* --- BOTÓN DE COMPRA EN TICKETS --- */
.btn-buy-ticket {
    display: inline-block;
    background: linear-gradient(90deg, #2962ff 0%, #5bd1ff 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    padding: 12px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(41, 98, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-buy-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(41, 98, 255, 0.5);
    color: #ffffff;
    /* Asegura que el texto siga blanco */
}

/* ================================
   SECCIÓN EQUIPO CONTACTO
   ================================ */
.equipo-section {
    background-color: #ffffff;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.equipo-bloque {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.equipo-titulo {
    color: #2962ff;
    font-size: 45px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.equipo-subtitulo {
    color: #1a2a4a;
    font-size: 25px;
    font-weight: 300;
    margin: 0 0 24px;
    text-align: center;
}

.equipo-grid {
    display: grid;
    gap: 32px;
    width: 100%;
}

.equipo-grid.tres {
    grid-template-columns: repeat(3, 1fr);
    max-width: 900px;
}

.equipo-grid.dos {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
}

.contacto-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contacto-card img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
}

.contacto-email,
.contacto-tel {
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    color: #111111;
    text-decoration: none;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.contacto-email::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-8.97 5.7a1.94 1.94 0 0 1-2.06 0L2 7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.contacto-tel::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%2325d366' d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51a12.8 12.8 0 0 0-.57-.01c-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 0 1-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 0 1-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 0 1 2.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0 0 12.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 0 0 5.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 0 0-3.48-8.413Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.contacto-email:hover,
.contacto-tel:hover {
    opacity: 0.7;
}

.btn-agendar {
    display: inline-block;
    background: linear-gradient(90deg, #2962ff 0%, #5bd1ff 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    padding: 10px 22px;
    border-radius: 30px;
    letter-spacing: 1px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(41, 98, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-agendar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 98, 255, 0.45);
}

@media (max-width: 768px) {
    .equipo-grid.tres,
    .equipo-grid.dos {
        grid-template-columns: 1fr;
        max-width: 340px;
    }
}

/* ================================
   SECCIÓN PATROCINADORES
   ================================ */
.sponsors-section {
    background-color: #ffffff;
    padding: 70px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.patrocinadores-img-wrapper {
    position: relative;
    width: 100%;
    line-height: 0;
}

.patrocinadores-img {
    width: 100%;
    display: block;
}

.btn-sobre-imagen {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    background: #ffffff;
    color: #2962ff;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 30px;
    border: 2px solid #2962ff;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, color 0.3s ease;
    line-height: normal;
}

.btn-sobre-imagen:hover {
    background: #2962ff;
    color: #ffffff;
}

/* --- ENCABEZADO --- */
.sponsors-header {
    margin-bottom: 60px;
}

/* Reutilizamos el estilo de pastilla de Talleres para mantener congruencia */
.sponsors-badge {
    display: inline-block;
    background: linear-gradient(90deg, #2962ff 0%, #5bd1ff 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 900;
    padding: 8px 40px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.sponsors-desc {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- CATEGORÍAS (TIERS) --- */
.sponsor-tier {
    margin-bottom: 60px;
}

.tier-title {
    font-size: 20px;
    font-weight: 800;
    color: #2962ff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* Pequeña línea decorativa debajo del título de la categoría */
.tier-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: #5bd1ff;
    border-radius: 2px;
}

/* --- CUADRÍCULA Y TARJETAS --- */
.sponsors-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.sponsor-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(41, 98, 255, 0.1);
    border-color: #80e5ff;
    /* Un toque de cyan al pasar el mouse */
}

.sponsor-card img {
    max-width: 100%;
    height: auto;
    /* Un pequeño filtro para que los logos de prueba se vean limpios, 
       si usas logos a color reales puedes quitar esta línea si prefieres */
    mix-blend-mode: multiply;
}

/* Tamaños específicos por categoría */
.tier-diamante .sponsor-card {
    width: 300px;
    height: 140px;
}

.tier-oro .sponsor-card {
    width: 220px;
    height: 100px;
}

.tier-aliados .sponsor-card {
    width: 150px;
    height: 80px;
}

/* ================================
   RESPONSIVE PARA PATROCINADORES
   ================================ */
@media (max-width: 768px) {
    .sponsors-section {
        padding: 80px 5%;
    }

    .sponsors-badge {
        font-size: 20px;
        padding: 8px 30px;
    }

    .tier-diamante .sponsor-card {
        width: 100%;
        max-width: 280px;
    }

    .tier-oro .sponsor-card {
        width: 45%;
    }

    /* Dos por fila en móvil */
    .tier-aliados .sponsor-card {
        width: 30%;
    }

    /* Tres por fila en móvil */
}

@media (max-width: 480px) {
    .tier-oro .sponsor-card {
        width: 100%;
        max-width: 220px;
    }

    /* Una por fila */
    .tier-aliados .sponsor-card {
        width: 45%;
    }

    /* Dos por fila */
}

/* ================================
   SECCIÓN SEDE
   ================================ */
.sede-section {
    background: linear-gradient(135deg, #050a15 0%, #001f5c 100%);
    padding: 100px 10%;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.sede-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- INFORMACIÓN LADO IZQUIERDO --- */
.sede-info {
    flex: 1;
    max-width: 550px;
}

.sede-badge {
    display: inline-block;
    background: linear-gradient(90deg, #2962ff 0%, #5bd1ff 100%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 900;
    padding: 6px 30px;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.sede-title {
    font-size: 45px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    background: linear-gradient(180deg, #ffffff 0%, #80e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sede-location {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.sede-location svg {
    flex-shrink: 0;
    /* Evita que el ícono se apachurre si el texto es muy largo */
    margin-top: 5px;
}

.sede-location p {
    font-size: 16px;
    font-weight: 400;
    color: #d1d5db;
    margin: 0;
    line-height: 1.5;
}

.sede-desc {
    font-size: 16px;
    font-weight: 300;
    color: #a3b8cc;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Botón de ruta */
.btn-cyan-route {
    display: inline-block;
    background-color: transparent;
    color: #80e5ff;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 35px;
    border: 2px solid #80e5ff;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cyan-route:hover {
    background-color: #80e5ff;
    color: #050a15;
    box-shadow: 0 5px 20px rgba(128, 229, 255, 0.3);
}

/* --- MEDIA (IMAGEN/MAPA) LADO DERECHO --- */
.sede-media {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.sede-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
    object-fit: cover;
}

/* Cuadro desfasado decorativo tipo "CX" */
.sede-decoration {
    position: absolute;
    top: 20px;
    right: -20px;
    width: 100%;
    max-width: 500px;
    height: 100%;
    border: 3px solid #2962ff;
    border-radius: 20px;
    z-index: 1;
}

/* ================================
   RESPONSIVE PARA SEDE
   ================================ */
@media (max-width: 992px) {
    .sede-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .sede-info {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sede-location {
        justify-content: center;
        text-align: center;
    }

    .sede-media {
        justify-content: center;
        width: 100%;
    }

    .sede-decoration {
        right: -10px;
        top: 10px;
    }
}

@media (max-width: 576px) {
    .sede-section {
        padding: 80px 5%;
    }

    .sede-title {
        font-size: 32px;
    }
}

/* ================================
   FOOTER
   ================================ */
.site-footer {
    background-color: #030610;
    /* Un azul casi negro, súper profundo */
    color: #ffffff;
    padding: 60px 10% 20px;
    /* Padding top más grande, bottom más chico */
    border-top: 2px solid rgba(128, 229, 255, 0.1);
    /* Brillo sutil arriba */
}

/* --- PARTE SUPERIOR DEL FOOTER --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 30px;
}

/* Logos (Reciclamos un poco el estilo del Nav) */
.footer-logos {
    display: flex;
    align-items: center;
}

.footer-logos-img {
    height: 90px;
    width: auto;
    max-width: 100%;
    display: block;
}

/* Redes Sociales */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #80e5ff;
    color: #030610;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(128, 229, 255, 0.3);
    border-color: #80e5ff;
}

/* --- BARRA INFERIOR (LEGAL) --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: #8892b0;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 0;
}

.privacy-link {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #80e5ff;
    text-decoration: underline;
}

/* ================================
   RESPONSIVE PARA FOOTER
   ================================ */
@media (max-width: 992px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-logos {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ================================
   RESPONSIVE GLOBAL — SECCIONES ACTIVAS
   ================================ */

/* --- NAVBAR: BOTÓN HAMBURGER --- */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(5, 10, 21, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        z-index: 1000;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        font-size: 22px;
        font-weight: 600;
    }

    .nav-action {
        display: none;
    }
}

/* --- LABS GRID --- */
@media (max-width: 768px) {
    .labs-grid {
        grid-template-columns: 1fr;
        padding: 0 8%;
        gap: 20px;
    }

    .labs-grid .flip-card:nth-child(1),
    .labs-grid .flip-card:nth-child(3) {
        transform: none;
    }
}



/* --- CONEXIONES --- */
@media (max-width: 768px) {
    .conexiones-section {
        padding: 40px 6% 50px;
    }

    .conexiones-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .conexiones-industria {
        width: 100% !important;
    }
}

/* --- PATROCINADORES --- */
@media (max-width: 768px) {
    .sponsors-section {
        padding-top: 50px;
    }

    .patrocinadores-img-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-sobre-imagen {
        position: static;
        transform: none;
        margin-top: 20px;
        font-size: 14px;
        padding: 12px 28px;
    }
}

/* --- EQUIPO CONTACTO --- */
@media (max-width: 576px) {
    .equipo-section {
        padding: 50px 5%;
        gap: 50px;
    }

    .equipo-titulo {
        font-size: 24px;
    }
}

/* --- PADDINGS GENERALES TABLET --- */
@media (max-width: 768px) {
    .experiencia-section {
        padding: 60px 6%;
        gap: 40px;
    }

    .acceso-section {
        padding-bottom: 50px;
    }

    .equipo-section {
        padding: 60px 6%;
    }

    .labs-section {
        padding-bottom: 50px;
    }
}

/* --- PADDINGS GENERALES MÓVIL --- */
@media (max-width: 576px) {
    .experiencia-section {
        padding: 40px 5%;
        gap: 30px;
    }

    .labs-section {
        padding-bottom: 40px;
    }

    .labs-img {
        margin-top: 0;
    }

    .acceso-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-buy-ticket,
    .btn-info {
        width: 260px;
        text-align: center;
    }
}