﻿/* ================================================================
   EXPO 2026 — CSS completo actualizado con Abanico Interactivo
================================================================ */

#expo2026 {
    font-family: inherit;
    background: transparent;
    padding: 5rem 1.5rem;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Header ---- */
.e-head {
    text-align: center;
    margin-bottom: 3rem;
}

.e-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: .5px solid #c8e6f5;
    border-radius: 30px;
    padding: 5px 14px;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(30,110,160,.08);
}

.e-bdot {
    width: 8px;
    height: 8px;
    background: #1e8fc8;
    border-radius: 50%;
    animation: eBdot 2s infinite;
}

@keyframes eBdot {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.e-btext {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1e6ea0;
}

.e-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #0d3a5c;
    line-height: 1.1;
    margin-bottom: .6rem;
}

    .e-title em {
        font-style: normal;
        color: #1e8fc8;
    }

.e-tagline {
    font-size: 15px;
    color: var(--muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.65;
}

.e-rule {
    width: 44px;
    height: 3px;
    background: linear-gradient(90deg, #1e8fc8, #5bc4e8);
    border-radius: 2px;
    margin: 1.2rem auto 0;
}

/* ---- Grid principal ---- */
.e-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    width: 100%;
}

/* ================================================================
   COUNTDOWN
================================================================ */
.e-cd-wrap {
    grid-column: 1 / -1;
}

.e-cd {
    background: linear-gradient(135deg, #0d3a5c 0%, #1565a0 60%, #1e8fc8 100%);
    border-radius: 18px;
    padding: 1.2rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(13,58,92,.18);
    position: relative;
    overflow: hidden;
}

    .e-cd::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: rgba(255,255,255,.04);
        border-radius: 50%;
    }

    .e-cd::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 30%;
        width: 150px;
        height: 150px;
        background: rgba(255,255,255,.03);
        border-radius: 50%;
    }

.e-cd-left {
    position: relative;
    z-index: 1;
}

.e-cd-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: .5rem;
}

.e-cd-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: .2rem;
}

.e-cd-sub {
    font-size: 13px;
    color: rgba(255,255,255,.6);
}

.e-cd-nums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 1;
}

.e-cbox {
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 12px;
    padding: .9rem .6rem .7rem;
    text-align: center;
}

.e-cnum {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.e-cunit {
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
}

/* ================================================================
   4 INFO CARDS
================================================================ */
.e-info-grid {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.e-icard {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem 1rem;
    border: .5px solid #ddeef8;
    box-shadow: 0 4px 18px rgba(30,110,160,.07);
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}

    .e-icard:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(30,110,160,.13);
    }

    .e-icard::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 16px 16px 0 0;
    }

    .e-icard.c-blue::before {
        background: linear-gradient(90deg, #1e8fc8, #5bc4e8);
    }

    .e-icard.c-teal::before {
        background: linear-gradient(90deg, #0ea5a0, #34d1cc);
    }

    .e-icard.c-coral::before {
        background: linear-gradient(90deg, #e05a3a, #f0846a);
    }

    .e-icard.c-violet::before {
        background: linear-gradient(90deg, #7c5cbf, #a78be0);
    }

.e-icard-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .7rem;
}

.e-icard-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-blue .e-icard-icon {
    background: linear-gradient(135deg, #ddeef8, #c5e3f5);
}

.c-teal .e-icard-icon {
    background: linear-gradient(135deg, #d0f5f4, #b0eeec);
}

.c-coral .e-icard-icon {
    background: linear-gradient(135deg, #fde8e3, #fcd0c8);
}

.c-violet .e-icard-icon {
    background: linear-gradient(135deg, #ede8f8, #ddd4f5);
}

.e-icard-icon svg {
    width: 18px;
    height: 18px;
}

.e-icard-name {
    font-size: 14px;
    font-weight: 600;
    color: #0d3a5c;
}

.e-icard-lbl {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted2, #8aacbe);
    margin-bottom: 4px;
}

.e-icard-val {
    font-size: 14px;
    color: var(--muted, #2a4a62);
    line-height: 1.4;
}


/* ================================================================
   NUEVO: CARROUSEL ABANICO (EXPERIENCIAS)
================================================================ */
.e-fan-wrap {
    grid-column: 1 / -1;
    margin: 1.5rem 0 2.5rem 0;
    text-align: center;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden; /* Evita que las tarjetas rotadas generen scroll */
}

.e-fan-header {
    margin-bottom: 2rem;
}

.e-fan-title {
    font-size: 22px;
    font-weight: 800;
    color: #0d3a5c;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.e-fan-sub {
    font-size: 14px;
    color: var(--muted);
}

.e-fan-container {
    position: relative;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.e-fan-card {
    position: absolute;
    width: 170px;
    height: 200px;
    border-radius: 18px;
    /* Degradado radial desde el centro como solicitaste */
    background: radial-gradient(circle at center, #ffffff 0%, #e6f3fa 100%);
    border: 1px solid rgba(30,143,200,0.15);
    box-shadow: 0 10px 30px rgba(13,58,92,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    text-align: center;
    transform-origin: bottom center; /* Clave para el efecto abanico */
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.e-fan-icon {
    font-size: 38px; /* Emoji size */
    margin-bottom: 15px;
    line-height: 1;
    transition: transform 0.3s;
}

.e-fan-card:hover .e-fan-icon {
    transform: scale(1.15) rotate(5deg);
}

.e-fan-name {
    font-size: 14px;
    font-weight: 700;
    color: #0d3a5c;
    line-height: 1.3;
}

/* POSICIONES DEL ABANICO (Lógica de 5 cartas visibles) */
.fan-pos--2 {
    transform: translateX(-210px) rotate(-30deg) scale(0.8);
    z-index: 1;
    opacity: 0.5;
}

.fan-pos--1 {
    transform: translateX(-110px) rotate(-15deg) scale(0.9);
    z-index: 2;
    opacity: 0.85;
}
/* Tarjeta Central: Brillante y recta */
.fan-pos-0 {
    transform: translateX(0) rotate(0deg) scale(1);
    z-index: 3;
    opacity: 1;
    box-shadow: 0 20px 45px rgba(13,58,92,0.15);
    border-color: rgba(30,143,200,0.4);
    background: radial-gradient(circle at center, #ffffff 0%, #d8effb 100%);
}

.fan-pos-1 {
    transform: translateX(110px) rotate(15deg) scale(0.9);
    z-index: 2;
    opacity: 0.85;
}

.fan-pos-2 {
    transform: translateX(210px) rotate(30deg) scale(0.8);
    z-index: 1;
    opacity: 0.5;
}
/* Ocultas en la parte trasera del loop */
.fan-pos-hidden {
    transform: translateX(0) rotate(0deg) scale(0.5);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}


.e-fan-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.e-fan-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #c8dfee;
    color: #1e8fc8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(13,58,92,0.05);
}

    .e-fan-btn svg {
        width: 20px;
        height: 20px;
    }

    .e-fan-btn:hover {
        background: #1e8fc8;
        color: #fff;
        border-color: #1e8fc8;
        transform: scale(1.05);
    }


/* ================================================================
   CARD MANIFIESTO
================================================================ */
.e-manifesto {
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem;
    border: .5px solid #ddeef8;
    box-shadow: 0 4px 18px rgba(30,110,160,.07);
    position: relative;
    overflow: hidden;
}

    .e-manifesto::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 18px 18px 0 0;
        background: linear-gradient(90deg, #1e8fc8, #5bc4e8, #0ea5a0);
    }

    .e-manifesto::after {
        content: '\201C';
        position: absolute;
        top: -5px;
        right: 14px;
        font-size: 90px;
        color: rgba(30,143,200,.07);
        font-family: Georgia, serif;
        line-height: 1;
        pointer-events: none;
    }

.e-mf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.e-mf-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #ddeef8, #c5e3f5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .e-mf-icon svg {
        width: 20px;
        height: 20px;
    }

.e-mf-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d3a5c;
}

.e-mf-sub {
    font-size: 11px;
    color: #1e8fc8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.e-mf-body p {
    font-size: 13.5px;
    line-height: 1.78;
    color: var(--muted, #4a6a7e);
    margin-bottom: .65rem;
}

    .e-mf-body p:last-child {
        margin-bottom: 0;
    }

.e-mf-body strong {
    color: #0d3a5c;
    font-weight: 600;
}

/* ================================================================
   COLUMNA DERECHA
================================================================ */
.e-right-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* ---- Stats ---- */
.e-stats {
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem;
    border: .5px solid #ddeef8;
    box-shadow: 0 4px 18px rgba(30,110,160,.07);
    position: relative;
    overflow: hidden;
}

.e-stats-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #7c5cbf, #1e8fc8, #0ea5a0);
}

.e-stats-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
}

.e-stats-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #ede8f8, #ddd4f5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .e-stats-icon svg {
        width: 20px;
        height: 20px;
    }

.e-stats-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d3a5c;
}

.e-stats-sub {
    font-size: 11px;
    color: #7c5cbf;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.e-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ---- Stat individual ---- */
.e-stat {
    background: linear-gradient(135deg, #f5f9fd, #edf4fa);
    border-radius: 12px;
    padding: .9rem .8rem;
    text-align: center;
    border: .5px solid #ddeef8;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .e-stat:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 8px 24px rgba(30,110,160,.12);
    }

.e-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    margin: 0 auto .5rem;
}

    .e-stat-icon svg {
        width: 16px;
        height: 16px;
    }

.e-stat-num {
    font-size: 26px;
    font-weight: 700;
    color: #0d3a5c;
    line-height: 1;
}

.e-stat-lbl {
    font-size: 11px;
    color: var(--muted2, #7a9aae);
    margin-top: 3px;
    line-height: 1.3;
}

/* Pop de entrada al animar */
@keyframes eStatPop {
    0% {
        transform: scale(.85);
        opacity: 0;
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.e-stat-num.animated {
    animation: eStatPop .5s ease both;
}

/* ---- CTA card ---- */
.e-cta {
    background: linear-gradient(135deg, #f0f8fe, #e8f4fd, #f0fbff);
    border-radius: 18px;
    padding: 1.6rem;
    border: 1px solid #c0dff0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.e-cta-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(90deg, #e05a3a, #f0846a, #1e8fc8);
}

.e-cta-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.e-cta-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #fde8e3, #fcd0c8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .e-cta-icon svg {
        width: 20px;
        height: 20px;
    }

.e-cta-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d3a5c;
}

.e-cta-sub {
    font-size: 11px;
    color: #e05a3a;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.e-cta-body {
    font-size: 13px;
    color: var(--muted, #4a6a7e);
    line-height: 1.6;
}

    .e-cta-body span {
        color: #0d3a5c;
        font-weight: 600;
    }

.e-btn-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #0d3a5c, #1565a0);
    color: #fff;
    font-size: 13.5px;
    font-weight: 600;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .2s, transform .15s;
    box-shadow: 0 4px 14px rgba(13,58,92,.25);
}

    .e-btn-main:hover {
        opacity: .92;
        transform: translateY(-1px);
    }

.e-btn-arr {
    width: 22px;
    height: 22px;
    background: rgba(255,255,255,.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.e-btn-row {
    display: flex;
    gap: 9px;
}

.e-btn-wsp {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #b8e4c8;
    color: #1a7a42;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
    box-shadow: 0 2px 8px rgba(30,122,66,.08);
}

    .e-btn-wsp:hover {
        background: #f0faf4;
    }

    .e-btn-wsp svg {
        width: 14px;
        height: 14px;
        fill: #1a7a42;
        flex-shrink: 0;
    }

.e-btn-ghost {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #3a6a8a;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #c8dfee;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}

    .e-btn-ghost:hover {
        border-color: #1e8fc8;
        color: #1e6ea0;
    }

.e-nota {
    font-size: 11px;
    color: #8aacbe;
    line-height: 1.5;
}

    .e-nota span {
        color: #1e6ea0;
        font-weight: 500;
    }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 900px) {
    .e-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .e-cd {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .e-cd-nums {
        max-width: 340px;
        margin: 0 auto;
    }

    /* Abanico en tablet: juntamos un poco más las cartas */
    .fan-pos--2 {
        transform: translateX(-140px) rotate(-25deg) scale(0.8);
    }

    .fan-pos--1 {
        transform: translateX(-70px) rotate(-12deg) scale(0.9);
    }

    .fan-pos-1 {
        transform: translateX(70px) rotate(12deg) scale(0.9);
    }

    .fan-pos-2 {
        transform: translateX(140px) rotate(25deg) scale(0.8);
    }
}

@media (max-width: 640px) {
    #expo2026 {
        width: 100%;
        padding: 3rem 1rem;
    }

    .e-grid {
        grid-template-columns: 1fr;
    }

    .e-cd-wrap {
        grid-column: 1;
    }

    .e-info-grid {
        grid-column: 1;
        grid-template-columns: repeat(2, 1fr);
    }

    .e-head {
        text-align: center;
    }

    /* Abanico en móvil: mucho más juntas para que entren en pantalla chica */
    .e-fan-container {
        height: 180px;
    }

    .e-fan-card {
        width: 130px;
        height: 160px;
        padding: 1rem;
    }

    .e-fan-icon {
        font-size: 28px;
    }

    .e-fan-name {
        font-size: 11px;
    }

    .fan-pos--2 {
        transform: translateX(-100px) rotate(-25deg) scale(0.75);
        opacity: 0.3;
    }

    .fan-pos--1 {
        transform: translateX(-55px) rotate(-12deg) scale(0.9);
        opacity: 0.8;
    }

    .fan-pos-1 {
        transform: translateX(55px) rotate(12deg) scale(0.9);
        opacity: 0.8;
    }

    .fan-pos-2 {
        transform: translateX(100px) rotate(25deg) scale(0.75);
        opacity: 0.3;
    }
}

@media (max-width: 380px) {
    .e-info-grid {
        grid-template-columns: 1fr;
    }

    .e-cd-nums {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* ---- Card del Plano ---- */
.e-map-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.6rem;
    border: .5px solid #ddeef8;
    box-shadow: 0 4px 18px rgba(30,110,160,.07);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.25rem; /* Espacio con la siguiente card */
}

    .e-map-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        border-radius: 18px 18px 0 0;
        background: linear-gradient(90deg, #1e8fc8, #0ea5a0);
    }

.e-map-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.e-map-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: linear-gradient(135deg, #ddeef8, #c5e3f5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .e-map-icon svg {
        width: 20px;
        height: 20px;
    }

.e-map-title {
    font-size: 17px;
    font-weight: 700;
    color: #0d3a5c;
}

.e-map-sub {
    font-size: 11px;
    color: #1e8fc8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.e-map-body {
    text-align: center;
}

.e-map-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid #f0f4f8;
    transition: transform 0.3s ease;
}

    .e-map-img:hover {
        transform: scale(1.01);
    }

.e-map-note {
    font-size: 11px;
    color: #8aacbe;
    margin-top: 1rem;
    font-style: italic;
}
/* ---- Estilos de la vista previa dentro del Manifiesto ---- */
.e-mf-map-preview {
    margin: 1.5rem 0;
    text-align: center;
}

.e-mf-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 200px; /* Tamaño pequeño centrado */
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #ddeef8;
    box-shadow: 0 4px 12px rgba(13,58,92,0.08);
}

    .e-mf-img-wrapper img {
        width: 100%;
        display: block;
        transition: filter 0.3s ease;
    }

    .e-mf-img-wrapper:hover img {
        filter: brightness(0.7);
    }

.e-map-expand-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #1e8fc8;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.e-mf-img-wrapper:hover .e-map-expand-btn {
    opacity: 1;
}

.e-map-expand-btn svg {
    width: 12px;
    height: 12px;
}

.e-mf-note {
    font-size: 10px;
    color: #8aacbe;
    margin-top: 8px;
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ---- Estilos del Modal (Lightbox) ---- */
.e-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(13,58,92,0.95);
    backdrop-filter: blur(5px);
}

.e-modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 600px; /* Tamaño del plano al ampliarse */
    border-radius: 15px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.e-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#modalCaption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #fff;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
}