/* FONDO DE TODA LA PÁGINA */

.transparencia-wrapper {

    /* background-image: url('/images/transparencia/FEC-WEB-FONDO-GOBERNANZA (1).png');  */

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    min-height: 100vh;

    position: relative;

    background-color: white;

}



/* Overlay blanco sutil para legibilidad */

.transparencia-wrapper::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, 0.85);

    z-index: 1;

}



.transparencia-container {

    position: relative;

    z-index: 2;

    padding: 3rem 2rem 5rem;

    max-width: 1400px;

    margin: 0 auto;

}



/* TÍTULO */

.transp-titulo {

    font-size: 4rem;

    font-weight: 700;

    color: #1E2452;

    font-family: MiFuenteDos, sans-serif;

    text-align: left;

    margin-bottom: 1rem;

}



/* LÍNEA DE SEPARACIÓN DIFUMINADA */

.transp-linea {

    width: 100%;

    height: 2px;

    background: linear-gradient(to right, #999, transparent);

    margin-bottom: 1.5rem;

}



/* SUBTÍTULO */

.transp-subtitulo {

    font-size: 1.4rem;

    color: #1E2452;

    font-family: MiFuente, sans-serif;

    margin-bottom: 3rem;

}



/* FILA DE DOCUMENTOS */

.transp-docs-row {

    margin-bottom: 4rem;

}



.transp-col {

    padding: 0 1rem;

    margin-bottom: 2rem;

}



.transp-card {

    display: flex;

    flex-direction: column;

    height: 100%;

}



.transp-img {

    width: 100%;

    height: 100%;

    object-fit: fill;

    border-radius: 8px;

    margin-bottom: 1.2rem;

    transition: transform 0.3s ease;

}



.transp-img:hover {

    transform: translateY(-5px);

}



.transp-card-texto {

    font-size: 1.2rem;

    font-weight: 600;

    color: #1E2452;

    font-family: MiFuenteDos, sans-serif;

    text-align: center;

    margin-bottom: 1rem;

}



/* BOTÓN LEER MÁS - Blanco con texto azul */

.transp-btn-descarga {

    background: #fff;

    color: #000000;

    border: 1px solid #000000;

    border-radius: 10px;

    padding: 0.7rem 1.8rem;

    font-size: 1rem;

    font-weight: 600;

    font-family: MiFuente, sans-serif;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    margin: 0 auto;

    transition: all 0.3s ease;

    text-decoration: none;

}



.transp-btn-descarga:hover {

    background: #1E2452;

    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(30, 36, 82, 0.3);

}



.transp-btn-descarga i {

    font-size: 1.1rem;

}



/* SECCIÓN FINAL */

.transp-footer-seccion {

    text-align: center;

    margin-top: 3rem;

    padding-top: 3rem;

    border-top: 1px solid rgba(153, 153, 153, 0.3);

}



.transp-texto-final {

    font-size: 1.5rem;

    color: #1E2452;

    font-family: MiFuenteDos, sans-serif;

    margin-bottom: 2rem;

}



/* BOTÓN AZUL PORTAL */

.transp-btn-portal {

    background: #1E2452;

    color: #fff;

    border: none;

    border-radius: 30px;

    padding: 1rem 3rem;

    font-size: 1.1rem;

    font-weight: 600;

    font-family: MiFuente, sans-serif;

    transition: all 0.3s ease;

    text-decoration: none;

    display: inline-block;

}



.transp-btn-portal:hover {

    background: #141836;

    color: #fff;

    transform: translateY(-3px);

    box-shadow: 0 6px 20px rgba(30, 36, 82, 0.4);

}



/* RESPONSIVE */

@media (max-width: 991px) {

    .transp-titulo {

        font-size: 3rem;

        text-align: center;

    }



    .transp-subtitulo {

        text-align: center;

        font-size: 1.2rem;

    }

}



@media (max-width: 767px) {

    .transparencia-container {

        padding: 2rem 1rem 4rem;

    }



    .transp-titulo {

        font-size: 2.2rem;

    }



    .transp-subtitulo {

        font-size: 1.1rem;

    }



    .transp-img {

        height: 100%;

    }



    .transp-texto-final {

        font-size: 1.2rem;

    }



    .transp-btn-portal {

        padding: 0.8rem 2rem;

        font-size: 1rem;

    }

}

/* POPUP DOCUMENTOS NO DISPONIBLES */
.doc-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.doc-popup-content {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    position: relative;
    max-width: 90%;
    width: 400px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.doc-popup-content p {
    margin: 0;
    font-size: 1.1rem;
    color: #1E2452;
    font-family: MiFuente, sans-serif;
}

.doc-popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #1E2452;
    cursor: pointer;
    line-height: 1;
}