.regiao-container {
    width: 100%;
    min-height: 450px;
    background: #07345D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 8%;
    gap: 40px;
    position: relative;
}

/* --------------------- */
/*      COLUMNA IZQ      */
/* --------------------- */

.regiao-left {
    width: 50%;
    color: #fff;
    max-width: 560px;
}

.regiao-title {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
}

.regiao-title span {
    font-family: "Dancing Script", cursive;
    font-size: 58px;
    font-weight: 400;
    margin-left: 10px;
}

.regiao-text {
    line-height: 1.6;
    font-size: 18px;
    max-width: 540px;
}

/* --------------------- */
/*     IMÁGENES DERECHA  */
/* --------------------- */

.regiao-right {
    width: 50%;
    display: flex;
    gap: 22px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.img-card {
    flex: 1 1 220px;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #0f1a2b;
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
    border-radius: 14px;
}

.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Imágenes estáticas */
.img-card:hover {
    transform: none;
    box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}

/* --------------------- */
/*      RESPONSIVIDAD    */
/* --------------------- */

@media screen and (max-width: 950px) {
    .regiao-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
    }

    .regiao-left,
    .regiao-right {
        width: 100%;
    }

    .regiao-right {
        gap: 16px;
        margin-top: 30px;
    }
}

@media screen and (max-width: 640px) {
    .img-card {
        flex: 1 1 140px;
        max-width: 180px;
        aspect-ratio: 3 / 5;
    }
}

@media screen and (max-width: 480px) {
    .regiao-title {
        font-size: 32px;
    }

    .regiao-title span {
        font-size: 40px;
    }
}

/* ===========================
    SECCIÓN DE ESTADÍSTICA
   =========================== */

.estadistica-container {
    background: #ffffff;
    padding: 70px 8% 40px;
    text-align: center;
    color: #0b2d4a;
}
.estadistica-title {
    font-size: 42px;
    font-weight: 800;
    margin-top: 20px;
}

.estadistica-subtitle {
    font-size: 15px;
    opacity: 0.8;
    margin-top: -5px;
}

/* --- Imagen centrada --- */
.estadistica-img-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 32px 0 40px;
}

.estadistica-img {
    width: min(960px, 100%);
    max-width: 100%;
    border-radius: 14px;
    border: 8px solid #0C1D2C;
    box-shadow: 0 18px 36px rgba(0,0,0,0.35);
    background: #0C1D2C; /* asegura que el borde se integre */
}

.estadistica-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
    margin-top: 10px;
}

.estadistica-stats .stat-card {
    background: #ffffff;
    color: #0b2d4a;
    border-radius: 18px;
}

.estadistica-stats .total-card {
    padding: 26px 30px;
    box-shadow: 0 14px 34px rgba(12, 33, 81, 0.18);
    border: 1px solid rgba(12, 33, 81, 0.08);
}

@media screen and (max-width: 768px) {
    .estadistica-stats {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        gap: 14px;
    }

    .estadistica-stats .total-card {
        padding: 22px 18px;
    }
}

/* =============================== */
/*        SECCIÓN DE CONTACTO      */
/* =============================== */

/* ============================= */
/* TARJETA DEL TOTAL (no tocar) */
/* ============================= */
.total-card strong {
    font-size: 48px;
    font-weight: 800;
    color: #0b2d4a;
}

/* =============================== */
/* CONTENIDO PRINCIPAL DEL FOOTER */
/* =============================== */
/* Los estilos del footer están definidos en inicio.css */
/* Se mantienen solo los estilos específicos de la tarjeta total */

