/* FINTECH MEETUPS 2026 STYLES */

body.home {
    background-color: #0c0228;
    /* Dark blue base */
    color: #fff;
    font-family: 'Nunito', sans-serif;
}

/* Global modifications */
.c-cyan {
    color: #00d4ff;
}

.c-magenta {
    color: #c43efa;
}

/* ABOUT SECTION 2026 */
.wrapper-about-2026 {
    padding: 20px 0;
    position: relative;
    z-index: 10;
    background-color: transparent;
    /* Allows the space background to show */
    overflow: hidden;
}

.about-container-2026 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 20px;
    padding-bottom: 50px;
}

/* Caja de Título en rectangulo neón */
.title-box-2026 {
    display: inline-block;
    border: 1px solid #8e2de2;
    border-radius: 10px;
    /* Borde morado neón */
    padding: 30px 40px 80px 40px;
    /* Relleno inferior amplio para asegurar solapamiento de la tarjeta sin tapar el texto */
    position: relative;
    z-index: 1;

    /* Animacion Inicial */
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.about-container-2026.is-visible .title-box-2026 {
    opacity: 1;
    transform: translateY(0);
}

.title-about-2026 {
    font-weight: 900;
    font-size: 56px;
    color: #fff;
    margin: 0;
    /* Removido el margin de h2 para pasarlo a la caja */
    text-align: left;
    text-transform: uppercase;
    line-height: 1.1;
    letter-spacing: -1px;
}

.card-about-2026 {
    background-color: #ffffff;
    border-radius: 25px;
    padding: 50px 70px;
    color: #413b99;
    font-size: 18px;
    /* Ligeramente más chico para no desbordar */
    line-height: 1.6;
    font-weight: 500;
    margin-top: -60px;
    /* Solapamiento vertical tirando hacia arriba */
    margin-left: 10%;
    /* Desplazado a la derecha */
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);

    /* Animacion inicial desplazada a la derecha */
    opacity: 0;
    transform: translateX(100px);
    transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

.about-container-2026.is-visible .card-about-2026 {
    opacity: 1;
    transform: translateX(0);
}

.card-about-2026::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px solid #b721ff;
    /* Marco morado fino exterior */
    border-radius: 35px;
    z-index: -1;
    pointer-events: none;
}

.card-about-2026 p {
    margin-bottom: 25px;
    color: #413b99;
    font-size: 22px;
    /* Color de texto azul lavanda */
}

.card-about-2026 p:last-child {
    margin-bottom: 0;
}

.card-about-2026 strong {
    color: #1a1a5a;
    /* Color azul oscuro/marino para los textos destacados */
    font-weight: 800;
}

/* Decoraciones fdot/arrows flotantes */
.about-decor {
    position: absolute;
    z-index: 1;
    opacity: 0.8;
}

.about-decor.magenta-arrow {
    color: #c43efa;
    font-size: 30px;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
}

.about-decor.cyan-triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #00d4ff;
    /* Flecha verde/cyan */
    left: 8%;
    top: 60%;
}

.about-decor.magenta-triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #c43efa;
    /* flecha morada small */
    right: 15%;
    bottom: 25%;
}

.about-decor.bg-gradient-glow {
    /* La mancha de luminosidad grande morada del fondo */
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(121, 9, 119, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DATES & MAP SECTION 2026 */
.lgx-dates-2026 {
    /* padding: 60px 0; */
    padding: 0;
}

.dates-row-flex-2026 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Sizing constraints for the new left side logo */
.logo-2026 {
    max-width: 65%;
    margin: 0 auto;
    display: block;
}

/* Scroll Animation Base States */
.lgx-dates-2026 .logo-2026 {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.lgx-dates-2026 .card-map-2026 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.lgx-dates-2026 .dates-list-2026 .date-item {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease-out;
}

/* Visible States */
.lgx-dates-2026.is-visible .logo-2026 {
    opacity: 1;
    transform: translateX(0);
}

.lgx-dates-2026.is-visible .card-map-2026 {
    opacity: 1;
    transform: translateY(0);
}

.lgx-dates-2026.is-visible .dates-list-2026 .date-item {
    opacity: 1;
    transform: translateX(0);
}

/* Sequential cascading fade-in for dates */
.lgx-dates-2026.is-visible .dates-list-2026 .date-item:nth-child(1) {
    transition-delay: 0.6s;
}

.lgx-dates-2026.is-visible .dates-list-2026 .date-item:nth-child(2) {
    transition-delay: 0.8s;
}

.lgx-dates-2026.is-visible .dates-list-2026 .date-item:nth-child(3) {
    transition-delay: 1.0s;
}

.lgx-dates-2026.is-visible .dates-list-2026 .date-item:nth-child(4) {
    transition-delay: 1.2s;
}

.lgx-dates-2026.is-visible .dates-list-2026 .date-item:nth-child(5) {
    transition-delay: 1.4s;
}

/* New parent container for map & dates to stay inline */
.dates-container-flex-2026 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.card-map-2026 {
    background: rgba(14, 10, 50, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px 10px;
    width: 65%;
    /* Recuadro agrandado para hacer lugar al botón */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Gradient glowing border trick */
.card-map-2026::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 1) 0%, rgba(196, 62, 250, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.map-image-container {
    width: 100%;
    position: relative;
    text-align: center;
}

.map-img-2026 {
    max-width: 100%;
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
}

.dates-list-2026 {
    width: 48%;
    padding-left: 20px;
    margin-left: -33%;
    /* Corremos el texto más a la izquierda sobre el mapa */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 500px;
    /* Extra height proportional to only the CABA button, maintaining original gap */
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
    z-index: 2;
}

.date-item {
    margin-bottom: 0px;
    /* Manejado por justify-content space-between */
    position: relative;
    padding-left: 0px;
    border-left: none;
    /* Eliminar borde para empalmar directo al mapa */
    box-shadow: none;
    margin-inline: 4px;
}

/* Small neon line relative to date items as design */
.date-item::before {
    display: none;
}

.date-item h4 {
    color: #00d4ff;
    font-weight: 800;
    font-size: 24px;
    margin: 0 0 2px 0;
    text-transform: uppercase;
}

.date-item p {
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    letter-spacing: 1px;
}

.date-item .small-text {
    font-size: 12px;
    opacity: 0.8;
}

.date-item-flex-2026 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}

.btn-date-2026 {
    display: inline-block;
    margin-top: 0;
    margin-left: 0;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    background: rgba(14, 10, 50, 0.8);
    border: 2px solid #00d4ff;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-date-2026:hover {
    color: #ffffff;
    text-decoration: none;
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 30px rgba(196, 62, 250, 0.6);
    transform: translateY(-3px) scale(1.05);
}
 
/* Navbar CTA Button 2026 */
.btn-nav-cta-2026 {
    display: inline-block;
    margin-top: 35px !important;
    margin-left: 20px !important;
    padding: 10px 25px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, rgba(196, 62, 250, 0.8) 0%, rgba(0, 212, 255, 0.8) 100%) !important;
    border: 2px solid transparent !important;
    border-radius: 30px !important;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4) !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
}

.btn-nav-cta-2026:hover {
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.6), 0 0 15px rgba(196, 62, 250, 0.8) !important;
    transform: translateY(-2px);
    color: #fff !important;
    background: linear-gradient(135deg, rgba(196, 62, 250, 1) 0%, rgba(0, 212, 255, 1) 100%) !important;
}

.logo-fechas-2026 img {
    max-width: 80%;
    margin: 0 auto;
    display: block;
}
#imgHeaderLogo{
    width: 37%;
}
/* Responsive adjustments */
@media (max-width: 991px) {
    .dates-container-flex-2026 {
        flex-direction: column;
    }

    .dates-row-flex-2026 {
        flex-direction: column;
    }

    .card-map-2026 {
        width: 100%;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .dates-list-2026 {
        margin-left: 0;
        width: 100%;
        height: auto;
        padding-top: 20px;
        padding-bottom: 20px;
        align-items: center;
        /* Center them below the map in mobile */
    }

    .date-item {
        margin-bottom: 20px;
        text-align: center;
    }

    .map-image-container {
        width: 100%;
        padding: 0;
        margin-bottom: 30px;
    }

    .title-about-2026,
    .title-carousel-2026 {
        font-size: 32px;
        text-align: center;
    }
}

/* CAROUSEL GLASSMORPHISM 2026 */
.recap-city-title {
    color: #4df0ff;
    text-align: center;
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(77, 240, 255, 0.6);
    margin-bottom: 15px;
}

.title-carousel-2026 {
    text-align: center;
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7), 0 0 30px rgba(196, 62, 250, 0.4);
}

.wrapper-carousel-2026 {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.glass-panel-2026 {
    background: rgba(14, 10, 50, 0.4) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 60px 20px !important;
    margin: 0 5%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.glass-panel-2026::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(196, 62, 250, 1) 0%, rgba(0, 212, 255, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Styling the images inside the carousel */
.glass-panel-2026 .lgx-gallery-single figure img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-panel-2026 .lgx-gallery-single:hover figure img {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.glass-panel-2026 .owl-item {
    padding: 15px;
    /* Spans items giving them breathing room */
}

.mapa-2026 {
    margin-top: 20px;
    width: 114px;
}

/* RECAP 2026 SECTION */
.lgx-recap-2026 {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.title-recap-2026 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7), 0 0 30px rgba(196, 62, 250, 0.4);
    text-transform: uppercase;
    
}
.title-eventia-2026 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.7), 0 0 30px rgba(196, 62, 250, 0.4);
    text-transform: uppercase;
    padding-bottom: 8rem;
    margin-top: 50px;
}

.recap-grid-2026 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto 0 auto;
    max-width: 1000px;
}

.recap-item {
    flex: 0 1 calc(30% - 20px);
    max-width: 300px;
    min-width: 200px;
}

.recap-thumb {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #0b0b3b;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.recap-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(14, 10, 50, 0.8) 0%, rgba(14, 10, 50, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.recap-thumb:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.8);
}

.recap-thumb:hover::before {
    opacity: 0.5;
    /* Muestra un poco mas claro la imagen al hacer hover */
}

.recap-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.recap-thumb:hover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-decoration: none;
}

.play-icon {
    width: 60px;
    height: 60px;
    fill: #ffffff;
    filter: drop-shadow(0 0 10px rgba(196, 62, 250, 0.8));
    transition: all 0.3s ease;
    background: rgba(14, 10, 50, 0.6);
    border-radius: 50%;
    border: 2px solid #00d4ff;
    padding: 15px 15px 15px 20px;
    /* Offset to center triangle */
}

.recap-thumb:hover .play-icon {
    fill: #00d4ff;
    border-color: #c43efa;
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 1));
}


/* CTA CONTACTO 2026 */
#contacto-cta-2026 {
    background-color: #0b0b3b;
    /* Dark Navy Background */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-wrapper-2026 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;

    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

#contacto-cta-2026.is-visible .cta-wrapper-2026 {
    opacity: 1;
    transform: scale(1);
}

.cta-content-2026 {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 10;
    flex-wrap: wrap;
    /* Para móviles */
    justify-content: center;
}

.cta-btn-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    padding: 20px 40px;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 380px;
    min-height: 90px;
}

.cta-btn-2026:hover {
    transform: translateY(-5px);
    color: inherit;
    text-decoration: none;
}

.btn-cyan {
    background-color: #00d4ff;
    /* Cyan oficial 2026 */
    color: #0b0b3b;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-cyan:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
    color: #0b0b3b;
}

.btn-magenta {
    background-color: #c43efa;
    /* Magenta */
    color: #ffffff;
    box-shadow: 0 0 20px rgba(196, 62, 250, 0.4);
}

.btn-magenta:hover {
    box-shadow: 0 0 30px rgba(196, 62, 250, 0.7);
    color: #ffffff;
}


/* Bracket Decorators using borders */
.bracket-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    border-top: 1px solid #00d4ff;
    border-bottom: 1px solid #00d4ff;
    border-left: 1px solid #00d4ff;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    opacity: 0.8;
}

.bracket-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 60px;
    border-top: 1px solid #c43efa;
    border-bottom: 1px solid #c43efa;
    border-right: 1px solid #c43efa;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    opacity: 0.8;
}

.cta-decor-2026 {
    position: absolute;
}

.arrow-purple-top {
    color: #c43efa;
    top: -20px;
    left: 5%;
    font-weight: bold;
    font-size: 20px;
    animation: floatVertical 3s ease-in-out infinite;
}

.arrow-purple-middle {
    color: #4a2b9a;
    /* darker subtle */
    top: 20%;
    left: 25%;
    font-size: 40px;
    opacity: 0.6;
}

.arrow-cyan-bottom {
    color: #00d4ff;
    bottom: -10px;
    right: 5%;
    font-weight: bold;
    font-size: 20px;
}

.arrow-cyan-left {
    color: #00d4ff;
    top: 30%;
    left: 8%;
    font-size: 16px;
    animation: floatHorizontal 3s ease-in-out infinite;
}

.cta-big-arrow {
    position: absolute;
    bottom: 10%;
    right: 20%;
    width: 60px;
    fill: none;
    stroke: #4a2b9a;
    stroke-width: 2;
}

@keyframes floatHorizontal {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 850px) {
    .cta-btn-2026 {
        width: 100%;
        min-width: 100%;
        min-height: 70px;
    }

    .bracket-left,
    .bracket-right {
        display: none;
    }

    .cta-big-arrow {
        display: none;
    }
}

/* OVERRIDES METRICAS 2026 */
.fondo-metricas {
    background: #0b0b3b !important;
    /* Dark navy background instead of the old greenish/purple gradient */
}

.nuevo-metricas {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(196, 62, 250, 0.5);
    /* Subtle magenta glow */
    font-size: 3.5rem;
    font-weight: 800;
}

.nuevo-metricas-h3 {
    color: #00d4ff !important;
    /* Cyan 2026 */
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    font-size: 3.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.lgx-milestone .lgx-counter-area .counter-text .lgx-counter {

    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 5rem !important;
    /* A bit more condensed to fit */
}

.lgx-milestone .lgx-counter-area .counter-text small {
    color: #00d4ff !important;
    /* Neon cyan for labels */
    font-weight: 600 !important;
    display: block; /* Ensure label is on its own line */
    text-align: center;
}

.lgx-counter-area {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
}

/* Standardized map sizes for 2026 metrics */
.lgx-milestone .lgx-counter-area.mapa-2026-bs {
    margin-top: 20px !important;
    width: 140px !important; 
    height: 160px !important; /* Fixed box for map */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-end !important; /* Align maps at the bottom of the 160px box */
    position: relative !important;
}

.lgx-milestone .lgx-counter-area.mapa-2026-bs img {
    max-width: 140px !important;
    max-height: 150px !important; 
    object-fit: contain !important;
    filter: drop-shadow(0 0 8px rgba(196, 62, 250, 0.6)) !important;
    display: block !important;
    margin: 0 auto !important;
    flex-shrink: 0 !important;
}

.lgx-milestone .lgx-counter-area.mapa-2026-bs .counter-text {
    width: 100% !important;
    text-align: center !important;
    padding-top: 15px !important; /* Consistent space below the 160px container */
    display: block !important;
    position: absolute !important;
    bottom: -80px !important; /* Push text below the fixed 160px container */
    left: 0 !important;
}

.lgx-milestone .lgx-counter-area.mapa-2026-bs .counter-text .lgx-counter {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    font-size: 5rem !important;
    line-height: 1 !important;
    display: block !important;
}

/* ========================================================================= */
/* COMPREHENSIVE RESPONSIVE DESIGN (MOBILE & TABLET) */
/* ========================================================================= */
@media (max-width: 768px) {

    /* ABOUT SECTION RESPONSIVE */
    .wrapper-about-2026 {
        padding: 50px 0;
    }

    .title-box-2026 {
        padding: 20px 20px 40px 20px;
        text-align: center;
        display: block;
    }

    .title-about-2026 {
        font-size: 32px;
        text-align: center;
    }

    .card-about-2026 {
        margin-left: 0;
        margin-top: -30px;
        padding: 30px 20px;
        font-size: 16px;
    }

    .card-about-2026 p {
        font-size: 18px;
    }

    .about-decor {
        display: none;
        /* Hide floating decorations to prevent horizontal scroll */
    }

    /* MAP & SEDES RESPONSIVE */
    .logo-2026 {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .card-map-2026 {
        display: none;
        /* Esconder el mapa en celulares */
    }

    .dates-list-2026 {
        margin-left: 0;
        padding-left: 0;
        height: auto;
        width: 100%;

        /* Glassmorphism box applied to dates list for mobile */
        background: rgba(14, 10, 50, 0.4);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-radius: 20px;
        padding: 40px 20px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Glow border trick for the dates box in mobile */
    .dates-list-2026::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 20px;
        padding: 2px;
        background: linear-gradient(135deg, rgba(0, 212, 255, 1) 0%, rgba(196, 62, 250, 1) 100%);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .date-item {
        margin-bottom: 20px;
    }

    .date-item h4 {
        font-size: 20px;
    }

    /* NÚMEROS 2025 RESPONSIVE */
    .nuevo-metricas {
        font-size: 2.2rem !important;
    }

    .nuevo-metricas-h3 {
        font-size: 1.8rem !important;
    }

    .lgx-milestone .lgx-counter-area .counter-text .lgx-counter {
        font-size: 3.5rem !important;
    }

    .lgx-milestone-about {
        padding-top: 20px !important;
    }

    .mapa-2026 {
        margin: 20px auto;
        width: 100px;
    }

    .mapa-2026-bs {
        margin: 20px auto;
        width: 140px;
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* RECAP RESPONSIVE */
    .title-recap-2026 {
        font-size: 2.2rem;
    }

    .recap-item {
        flex: 1 1 calc(50% - 20px) !important;
        max-width: calc(50% - 20px) !important;
    }
}

@media (max-width: 480px) {
    .lgx-agenda-2026 {
    padding:  0px!important
   
}
    .title-eventia-2026 {
        margin-top: 0px;
    padding-bottom: 0;
}
    .recap-item {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    #imgHeaderLogo{
    width: 70%;
}

.about-container-2026 {
  
    padding-bottom: 10px;
}

.lgx-speakers-2026 {
  
    margin-top: 0px;
}
}

/* SPEAKERS SECTION 2026 */
.lgx-speakers-2026 {
    padding: 10px 0;
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.iframe-container-speakers {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.eventtia-iframe-speakers {
    width: 100%;
    height: 800px;
    border: none;
    overflow: hidden;
}
.eventtia-iframe-agenda {
    width: 100%;
    height: 2000px;
    border: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .eventtia-iframe-speakers {
        height: 2800px;
    }
      .eventtia-iframe-agenda {
        height: 4100px;
        
    }
}



/* AGENDA SECTION 2026 */
.lgx-agenda-2026 {
    padding: 60px 0;
    position: relative;
    z-index: 10;
}

.iframe-container-agenda {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}