/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-image: url('../img/FondoBVF.png'); /* Asegúrate de la ruta correcta */
    background-size: cover; /* Hace que la imagen cubra todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
    background-attachment: fixed; /* Fija la imagen mientras se hace scroll */
}

/* Estilos del header */
.header {
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.logo-container img {
    height: 50px;
    margin: 0 10px;
}



.search-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.search-bar {
    border: 1px solid #ccc;
    padding: 10px 10px;
    border-radius: 25px;
    width: 300px;
}

.bottom-bar {
    background-color: #9d2148;
    height: 40px;
}

.bottom-bar-2 {
    background-color: #B88935;
    height: 5px;
}
/* Sección de transparencia */
.transparency-section {
  
    padding: 20px 0;
}

.transparency-banner {
    display: flex;
    width: 100%;
}

.transparency-left {
    background-color: #9d2148;
    color: white;
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.transparency-left img {
    width: 150px;
    margin-bottom: 15px;
}

.transparency-right {
    flex: 2;
}

.transparency-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon-grid {
    background-image: url('../img/FondoBVF.png'); /* Asegúrate de la ruta correcta */
    background-size: cover; /* Cubre todo el div */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* No se repite */
    background-attachment: fixed; /* Fija la imagen al hacer scroll (opcional) */
    padding: 20px; /* Espacio interno para que los elementos no toquen el borde */
    border-radius: 10px; /* Opcional: esquinas redondeadas */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;

}

.icon-item {
    width: 180px;
    height: 180px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    
    border-radius: 10px;
    color: white;
    font-size: 18px;
    padding: 15px;
    transition: transform 0.3s ease-in-out;
}

.icon-item:hover {
    transform: scale(1.3);
}

.icon-item img {
    width: 60px;
    margin-bottom: 5px;
}


/* 📌 Responsivo para tablets y móviles */
@media (max-width: 1024px) {
    .icon-item {
        width: 150px;
        height: 150px;
        font-size: 16px;
    }

    .icon-item img {
        width: 50px;
    }
}

@media (max-width: 768px) {
    .icon-item {
        width: 120px;
        height: 120px;
        font-size: 14px;
        margin: 10px;
    }

    .icon-item img {
        width: 40px;
    }
}

.comite-container {
    display: flex;
    width: 100%;
    max-width: 450px;
    flex-direction: column;
    margin-left: 0; /* Alinear a la izquierda en PC */
    margin-right: auto;
}

.comite-card {
    background-color: #E4094C;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.ut-card {
    background-color: #D53188;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.ip-card {
    background-color: #FCC509;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.capacitacion-card {
    background-color: #72C8E6;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.reconocimientos-card {
    background-color: #8F4899;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.obligaciones-card {
    background-color: #EF8117;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}

.proactiva-card {
    background-color: #266CB3;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}
.DP-card {
    background-color: #047A35;
    color: white;
    padding: 30px;
    text-align: center;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .comite-container {
        align-items: center; /* Centrar los elementos */
        margin: auto;
    }

    .comite-card, .ut-card, .ip-card, .capacitacion-card,
    .reconocimientos-card, .obligaciones-card, .proactiva-card, .DP-card {
        width: 90%; /* Reducir el ancho en pantallas pequeñas */
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .comite-card, .ut-card, .ip-card, .capacitacion-card,
    .reconocimientos-card, .obligaciones-card, .proactiva-card, .DP-card {
        width: 100%; /* Ocupa todo el ancho disponible */
        padding: 15px;
    }
}
.icon-img {
    width: 270px; /* Ajustable para hacer más pequeño el icono */
    height: auto;
    margin-bottom: 10px;
}

h2 {
    font-size: 30px;
    font-weight: bold;
    margin: 0;
}

.comite-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/comite.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

.comite-image-1 {
    width: 100%;
    height: 500px;
    background-image: url('../img/Unidad.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

.ip-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/IP.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

.capacitacion-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/capacitacion.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

.reconocimientos-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/reconocimientos.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}
.obligaciones-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/obligaciones.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

.proactiva-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/proactiva.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

.DP-image {
    width: 100%;
    height: 500px;
    background-image: url('../img/DP.jpg'); /* Reemplaza con la URL de la imagen */
    background-size: cover;
    background-position: center;
}

@media (max-width: 768px) {
    .comite-container {
        max-width: 90%;
        margin-left: auto; /* Centrar en dispositivos más pequeños */
    }
    .comite-card {
        padding: 20px;
    }
    .icon-img {
        width: 150px; /* Icono más pequeño en pantallas medianas */
    }
    h2 {
        font-size: 25px;
    }
    .comite-image {
        height: 350px;
    }
}

.comite-grid-container {
    position: absolute; /* Permite posicionar libremente */
    top: 350px; /* Ajusta la posición vertical según la imagen */
    left: 60%; /* Centra la sección */
    transform: translateX(-50%); /* Ajusta el centrado */
    padding: 10px;
    border-radius: 10px;
    width: 80%;
    max-width: 900px;
   
}



.comite-header {
    background-color: #9d2148;
    color: white;
    padding: 15px;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    border-radius: 14px;
    max-width: 700px;
    margin: 0 auto; /* Centra horizontalmente */
}
.comite-description {
    background-color: #55585a;
    color: white;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    font-size: 20px;
    margin-top: 10px;
    width: auto;
    max-width: 500px;
     margin: 0 auto;
}

.comite-grid {
    display: flex;
    flex-wrap: nowrap; /* Asegura que todos estén en una sola fila */
    justify-content: center; /* Centra los cuadros */
    gap: 15px; /* Espaciado uniforme */
    margin-top: 20px;
}

.comite-item {
    background-color: #b28e5c;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 14px;
    width: auto;
    font-size: 19px;
    display: flex; /* Activa flexbox */
    align-items: center; /* Centra verticalmente */
    justify-content: center; /* Centra horizontalmente */
    min-width: 180px;
    min-height: 100px; /* Ajusta según el contenido */
}


.comite-item span {
    display: block;
    background-color: #9d2148;
    margin-top: 5px;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}

.manual-item {
    order: 0; /* Asegura que este cuadro no se mueva fuera de la fila */
    width: 180px; /* Igual que los otros cuadros */
    height: auto;
}

hr {
    height: 10px;
    width: 50%;
    background-color: black;
  }
/* 📌 RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .comite-grid-container {
        top: 280px;
        left: 50%;
        width: 90%;
    }

    .comite-header {
        font-size: 28px;
    }

    .comite-description {
        font-size: 18px;
        max-width: 400px;
    }

    .comite-grid {
        flex-wrap: wrap;
    }

    .comite-item {
        min-width: 160px;
        min-height: 90px;
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .comite-grid-container {
        top: 250px;
        width: 95%;
        left: 50%;
    }

    .comite-header {
        font-size: 24px;
        padding: 12px;
    }

    .comite-description {
        font-size: 16px;
        padding: 8px;
        max-width: 350px;
    }

    .comite-grid {
        flex-direction: column;
        align-items: center;
    }

    .comite-item {
        width: 80%;
        min-width: 140px;
        min-height: 80px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .comite-grid-container {
        top: 220px;
        width: 100%;
        left: 50%;
    }

    .comite-header {
        font-size: 20px;
        padding: 10px;
    }

    .comite-description {
        font-size: 14px;
        padding: 6px;
        max-width: 300px;
    }

    .comite-item {
        width: 90%;
        min-width: 120px;
        min-height: 70px;
        font-size: 14px;
        padding: 15px;
    }
}





/* Estilos generales del footer */
.footer {
    background: url('../img/FondoRVF.png') center/cover no-repeat; /* Fondo con patrón */
    color: white;
    text-align: center;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

/* Logos */
.footer-top img {
    height: 40px;
    margin: 5px 10px;
}
.footer-top-p img {
    height: 50px;
    margin: 5px 10px;
}

/* Menú de navegación */
.footer-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.footer-menu a:hover {
    text-decoration: underline;
}

/* Información del footer */
.footer-info {
    max-width: 700px;
    margin: auto;
    font-size: 14px;
    line-height: 1.5;
}

/* 📱 Responsividad */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .footer-top-p {
        flex-direction: column;
        align-items: center;
    }

    .footer-menu {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu a {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .footer-info {
        font-size: 13px;
    }
}


.red { background-color: #D61A5E; }
.pink { background-color: #C6368C; }
.orange { background-color: #F4A036; }
.yellow { background-color: #E6C500; }
.green { background-color: #117A3C; }
.blue { background-color: #57B2E6; }
.dark-blue { background-color: #1D4E89; }
.purple { background-color: #7D4EA2; }

@media (max-width: 768px) {
    .transparency-banner {
        flex-direction: column;
    }
    .transparency-left, .transparency-right {
        width: 100%;
    }
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    padding: 0px;
}

.original-section {
    flex: 2;
    /* Ajusta el ancho si es necesario */
}

.transparency-info {
    color: gray;
    width: 60%; /* Ajusta según el espacio que necesites */
    padding: 20px;
    border-radius: 10px;
    text-align: lefth;
    font-size: 24px;
    font-family: Arial, sans-serif;
 
}

.transparency-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50px;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #9d2148;
    color: white;
    padding: 30px;
    border-radius: 30px;
    font-size: 28px;
    cursor: pointer;
    position: relative; /* Para que el botón respete la caja */
    overflow: visible; /* Asegura que el botón no sea recortado */
}
.link-item-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #9d2148;
    color: white;
    padding: 30px;
    border-radius: 30px;
    font-size: 24px;
    cursor: pointer;
    position: relative; /* Para que el botón respete la caja */
    overflow: visible; /* Asegura que el botón no sea recortado */
    transform: translateY(-15%); /* Centra verticalmente */
    transition: all 0.3s ease-in-out;
}

.link-item-1:hover {
    background-color: #b28e5c;
    transform: translateY(-20%) scale(1); /* Hace un pequeño zoom al pasar el mouse */
}
.link-item span {
    flex: 1;
    text-align: left;
    padding-left: 20px;
}

.btn-more {
    background-color: #b28e5c;
    border: none;
    color: white;
    padding: 20px 40px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    position: absolute; /* Hace que se salga del contenedor */
    right: -30px; /* Mueve el botón más hacia afuera */
    top: 50%;
    transform: translateY(-15%); /* Centra verticalmente */
    transition: all 0.3s ease-in-out;
}

.btn-more:hover {
    background-color: #9d722d;
    transform: translateY(-50%) scale(1.2); /* Hace un pequeño zoom al pasar el mouse */
}



.image-section {
    width: 100%;
    display: flex;
    justify-content: center; /* Centra la imagen */
    margin-top: 0px; /* Espacio entre los apartados y la imagen */
}

.image-section img {
    width: 90%; /* Ajusta el tamaño de la imagen */
    max-width: 800px; /* Establece un tamaño máximo */
    height: auto; /* Mantiene la proporción */
    border-radius: 15px; /* Opcional: bordes redondeados */
}




.transparency-container-1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    max-width: 600px;
}

.transparency-box-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 230px;
    border-radius: 15px;
    color: white;
    text-align: center;
    font-weight: bold;
    padding: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.transparency-box:hover {
    transform: scale(1.05);
}


.red {
    background-color: #9d2148;
}

.gold {
    background-color: #b28e5c;
}

/* Espacio para el icono */
.icon-22 img {
    width: 120px;  /* Cambia este valor para ajustar el tamaño del icono */
    height: auto;
    margin-bottom: 0px;
}

.h3 {
    color: #b28e5c;
    text-align: center;
    font-size: 32%;
}
/* Texto */
.transparency-text {
    font-size: 14px;  /* Ajusta el tamaño del texto aquí */

}

.cuerpo {
    font-family: Arial, sans-serif;
   
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.content-wrapper {
    display: flex;
    align-items: center;
}
.container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    
    padding: 80px;
    border-radius: 15px;
   
}
.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-size: 19px;
    text-align: center;
    font-weight: bold;
}
.card:nth-child(1) { background: #a62c4b; }
.card:nth-child(2) { background: #c09a5b; }
.card:nth-child(3) { background: #7e7e7e; }
.card:nth-child(4) { background: #781d3a; }
.icon {
    font-size: 30px;
    margin-bottom: 20px;
}
.image-container {
    margin-left: -50px;
}
.image-container img {
    width: 350px;
    height: auto;
}
a {
    text-decoration: none;
}

/* 📌 RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .content-container {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .transparency-info {
        width: 80%;
        font-size: 20px;
        text-align: center;
    }

    .transparency-container-1 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .transparency-box-1 {
        width: 90%;
        height: auto;
        padding: 20px;
    }

    .container {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 20px;
    }

    .btn-more {
        right: 0;
        padding: 15px 30px;
    }
}

@media (max-width: 768px) {
    .transparency-info {
        width: 90%;
        font-size: 18px;
        text-align: center;
    }

    .link-item, .link-item-1 {
        font-size: 20px;
        padding: 20px;
    }

    .btn-more {
        padding: 12px 25px;
        font-size: 16px;
        right: -20px;
    }

    .transparency-container-1 {
        width: 100%;
    }

    .transparency-box-1 {
        width: 100%;
    }

    .container {
        padding: 20px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .content-container {
        width: 100%;
    }

    .transparency-info {
        font-size: 16px;
        padding: 10px;
    }

    .link-item, .link-item-1 {
        font-size: 18px;
        padding: 15px;
    }

    .btn-more {
        padding: 10px 20px;
        font-size: 14px;
        right: 0;
    }

    .image-section img {
        width: 100%;
    }

    .transparency-box-1 {
        width: 100%;
        padding: 15px;
    }

    .container {
        padding: 10px;
        gap: 5px;
    }

    .card {
        font-size: 16px;
        padding: 10px;
    }
}