.transparency-section {
    position: relative; /* Necesario para el pseudo-elemento overlay */
     /* Puedes cambiar 'b4.jpg' por la ruta de tu imagen deseada */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 30px; /* Reducido de 80px a 50px para reducir el espacio vertical */
    text-align: center;
    z-index: 0;
     /* Asegura que la sección y su imagen de fondo sean la capa base */
}

/* Capa semitransparente de color verde sobre la imagen de fondo */
.transparency-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* var(--verde-acento) con 80% de opacidad */
    z-index: 1; /* El overlay debe estar sobre la imagen pero debajo del contenido */
}

.transparency-container,
.transparency-section .section-title,
.transparency-reports-grid,
.transparency-figures-grid,
.downloadable-text,
.report-card, /* Aseguramos que las tarjetas estén sobre el overlay */
.figure-card /* Aseguramos que las tarjetas estén sobre el overlay */
 {
    position: relative; /* Asegura que todos los elementos de contenido estén sobre el overlay */
    z-index: 2;
}

.transparency-container {
    max-width: 1500px; /* Corregido de '1000+px' a '1000px' */
    margin: 0 auto;
    
    
}

.transparency-section .section-title {
    color: var(--vinotinto); /* Título en beige para contraste */
    font-size: 47px;
    font-weight: bold;
    margin-bottom: 10px;
    
    background: none; /* Asegura que no tenga fondo heredado */
    padding: 0;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transparency-section .section-title.figures-title {
    margin-top: 0px ; /* Espacio extra entre las dos subsecciones */
}

.transparency-reports-grid {
    display: flex; /* Usamos flex para una fila con un elemento en el medio */
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 30px ;
    flex-wrap: wrap; /* Permite que las tarjetas se envuelvan en pantallas pequeñas */
}

.report-card {
    background-color:  #AA0C0E; /* Blanco semitransparente */
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 240px; /* Ancho fijo para las tarjetas de informe */
    height: 160px; /* Altura fija */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    color: var(--vinotinto); /* Color base para el texto del informe */
    font-weight: bold;
}

.report-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.report-card i {
    font-size: 7em; /* Tamaño grande para los iconos */
    color: white; /* Color vinotinto para los iconos */
    margin-bottom: 10px;
}

/* Icono de lupa superpuesto en el informe */
.report-card .fa-search {
    position: absolute;
    font-size: 3em; /* Tamaño más pequeño para la lupa */
    top: 50%; /* Posiciona la lupa en el centro vertical */
    left: 50%; /* Posiciona la lupa en el centro horizontal */
    transform: translate(-50%, -50%); /* Ajusta para centrar la lupa */
    color: rgba(255, 255, 255, 0); /* Color más claro para la lupa */
    opacity: 0.8;
}

.report-card p {
    color: white;
    font-size: 1.3em;
    line-height: 1.3;
    margin: 0;
}

.downloadable-text {
    color: var(--beige);
    font-size: 1em;
    font-style: italic;
    margin: 0 20px; /* Margen para separarlo de las tarjetas */
    white-space: nowrap; /* Evita que el texto se rompa en varias líneas */
}

.transparency-figures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3 columnas */
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
}

.figure-card {
    background-color:#AA0C0E    ; /* Blanco semitransparente */
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px; /* Ajusta el valor según lo que necesites */
}

.figure-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.figure-card i {
    font-size: 13em; /* Iconos grandes */
    color: white; /* Color vinotinto para los iconos */
    margin-bottom: 20px;
}

.figure-card h3 {
    color: white; /* Color vinotinto para el texto de las cifras */
    font-size: 2.3em;
    font-weight: bold;
    line-height: 1.3;
    margin: 0;
    text-transform: uppercase;
}
@media (max-width: 1500px) {
    .transparency-section .section-title {
        font-size: 2.2em;
    }

    .transparency-reports-grid {
        flex-direction: column; /* Apila las tarjetas de informe en pantallas más pequeñas */
        gap: 5px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .downloadable-text {
        margin: 5px 0; /* Ajusta el margen si se apila */
    }

    .report-card {
        width: 90%;
        max-width: 250px;
        height: auto;
        padding: 15px;
    }

    .transparency-figures-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajusta las columnas de cifras */
    }
}
/* Media Queries para Responsividad */
@media (max-width: 992px) {
    .transparency-section .section-title {
        font-size: 2.2em;
    }

    .transparency-reports-grid {
        flex-direction: column; /* Apila las tarjetas de informe en pantallas más pequeñas */
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .downloadable-text {
        margin: 20px 0; /* Ajusta el margen si se apila */
    }

    .report-card {
        width: 90%;
        max-width: 250px;
        height: auto;
        padding: 15px;
    }

    .transparency-figures-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Ajusta las columnas de cifras */
    }
}

@media (max-width: 768px) {
    .transparency-section {
        padding: 50px 15px;
    }

    .transparency-reports-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .report-card {
        width: 90%;
        max-width: 250px;
        height: auto;
        padding: 15px;
    }

    .report-card i {
        font-size: 2.5em;
    }

    .report-card .fa-search {
        font-size: 1.2em;
    }

    .transparency-figures-grid {
        grid-template-columns: 1fr; /* Una columna en móviles */
    }

    .figure-card{
        min-height: 100px

    }
    .figure-card i {
        font-size: 4em;
    }

    .figure-card h3 {
        font-size: 1.4em;
    }
} 