/*
    Theme Name: trabajo_infantil_theme
    Theme URI: 
    Author: Juan Carlos Perez Amador
    Author URI:
    Description: Theme Diseñado para el micrositio Trabajo Infantil
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: trabajo, infantil, flexbox, css grid, mobile first
    Text Domain:trabajoInfantil
*/

/*
Theme Name: trabajo_infantil_theme
Theme URI:
Author: Juan Carlos Perez Amador
Author URI:
Description: Theme Diseñado para el micrositio Trabajo Infantil
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.0
Version: 1.0
License: GNU General Public License v2 or later
License URI:
Text Domain: trabajoInfantil
Tags: trabajo, infantil, flexbox, css grid, mobile first

/* Estilo para la sección principal */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --fuente-principal: 'Montserrat';
}



body {
    font-family: var(--fuente-principal);
    background: url('./assets/img/fondo_gde.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.wpdiscuz-author a {
    pointer-events: none !important;
    cursor: default !important;
}

#boton_iniciar_sesion {
    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);
    border-radius: 10px;
}

#boton_iniciar_sesion:hover {
    background: #9F2241;;
    color: #fff;
    border-radius: 10px;
}

#boton_iniciar_sesion::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#boton_iniciar_sesion:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}

#botones_inicio img {
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#botones_inicio:hover img {
    opacity: 0.8;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
}

#botones_inicio img {
    opacity: 1;
    box-shadow: none;
    transform: scale(1);
}

#botones_bilioteca img{
    transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

#botones_bilioteca:hover img {
    opacity: 0.8;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.03);
}

#botones_bilioteca img {
    opacity: 1;
    box-shadow: none;
    transform: scale(1);
}

#imagenes_org img {
    transition: transform 0.3s ease;
}

#imagenes_org:hover img {
    transform: scale(1.2);
}

#imagenes_org img {
    transform: scale(1);
}

#um-submit-btn {
    background: #9D2449;
    cursor: pointer;
    transform: translate(0);
}

#um-submit-btn:hover {
    background: #521132;
    color: #fff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

#botones_biblioteca_de_materiales {

    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);

}

#botones_biblioteca_de_materiales:hover {
    background: #9F2241;;
    color: #fff;
}

#botones_biblioteca_de_materiales::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#botones_biblioteca_de_materiales:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}

#cuadro_biblioteca_materiales {
    position: fixed;
    top: 118px;
    z-index: 9998;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#cuadro_botones {
    display: none;
}

#btn_mostrar_ocultar {
    transition: background-color 0.3s, color 0.3s, transform 0.3s ease; /* Ajusta la duración de la transición aquí */
}

#btn_mostrar_ocultar:hover {
    transform: scale(1.07);
    }


@media (max-width:768px) {

    #cuadro_biblioteca_materiales {
        position: fixed;
        top: 118px;
        z-index: 9998;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

}

/* /////////////////////////////////////////////// Estilo para documentos CITI /////////////////////////////////////////////// */

.document-thumbnail {
    text-align: center;
    margin-bottom: 20px;
}

.document-thumbnail img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.document-thumbnail img:hover {
    transform: scale(1.05);
}

.modal-content {
    padding: 20px;
}


/* /////////////////////////////////////////////// Estilo para Preguntas frecuentes /////////////////////////////////////////////// */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    color: #333;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    overflow-x: hidden;
}

.header-container {
    position: relative;
    text-align: center;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
    background: linear-gradient(to top, #DDC8A1, #ffffff);
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
}

.header-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-radius: 5px;
    border-style: solid;
    border-width: 0 25px 25px 0;
    border-color: transparent #255A4E transparent transparent; 
}

.header-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 5px;
    border-style: solid;
    border-width: 0 25px 25px 0; 
    border-color: transparent transparent #255A4E transparent;
}

.faq-card h5 {
    margin-bottom: 10px;
    text-align: justify;
    color: #aa8753;
    font-weight:500;
    margin-top: 10px;
    font-size: 22px;
}

.faq-header {
    font-size: 42px;
    border-bottom: 1px dotted #ccc;
    padding: 24px;
    text-align: center;
    font-weight: bold;
}

.faq-content {
    margin: 0 auto;
}

.faq-container {
    max-width: 80%;
    margin: 0 auto;
}

.faq-card {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease, background-color 0.5s ease;
    overflow: hidden;
	cursor: text;
}

.faq-card:hover {
  box-shadow: none;
  background-color: none;
}

.faq-card:hover h5 {
  color: #aa8753;
}

.faq-question i {
    font-size: 13px;
    margin-right: 8px;
}

.answer {
    max-height: none;
    opacity: 1;
    overflow: visible;
    transition: none;
}

.answer {
    text-align: justify;
    font-size: 18px;
}


@media (max-width: 1600px) {
    .faq-card h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 22px;
    }
    
    .answer {
        text-align: justify;
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .faq-card h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 18px;
    }
    
    .answer {
        text-align: justify;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .faq-card h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 18px;
    }
    
    .answer {
        text-align: justify;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .faq-card h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 18px;
    }
    
    .answer {
        text-align: justify;
        font-size: 15px;
    }
}

/* /////////////////////////////////////////////// Estilo para Normatividad /////////////////////////////////////////////// */

.legislacion-container {
    width: 80%;
    padding: 20px;
    margin: 0 auto;
}

.legislacion {
    margin-bottom: 20px;
    width: 100%;
}

.legislacion h5 {
    margin: 0 0 10px;
    font-size: 25px;
    text-align: justify;
}

.legislacion p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 17px;
}

.legislacion h5 i {
    margin-right: 10px;
    font-size: 12px;
    color: #BC955C;
}

.legislacion a.legislacion-link {
    text-decoration: none;
    color: inherit;
}

.legislacion a.legislacion-link:hover {
    text-decoration: underline;
}

.legislacion-container hr {
    border: 0;
    height: 1px;
    margin: 20px 0;
}

@media (max-width: 1600px) {

.legislacion h5 {
    margin: 0 0 10px;
    font-size: 25px;
    text-align: justify;
    }
.legislacion p {
    margin: 0 0 10px;
    text-align: justify;
    }
}

@media (max-width: 1024px) {

.legislacion h5 {
    margin: 0 0 10px;
    font-size: 20px;
    text-align: justify;
    }
.legislacion p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 17px;
    }
}

@media (max-width: 768px) {

.legislacion h5 {
    margin: 0 0 10px;
    font-size: 20px;
    text-align: justify;
    }
.legislacion p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 17px;
    }
}

@media (max-width: 480px) {

.legislacion h5 {
    margin: 0 0 10px;
    font-size: 16px;
    text-align: justify;
    }
.legislacion p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 15px;
    }
}
/* /////////////////////////////////////////////// Estilo para Documentos CITI /////////////////////////////////////////////// */


.documentos-citi-container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.documentos-citi-container .documento {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, background-color 0.5s ease;
    flex: 1 1 calc(25% - 20px);
    box-sizing: border-box;
    max-width: calc(25% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.documentos-citi-container .pdf-logo {
    display: block;
    margin: 0 auto 10px auto;
    width: 100px;
    height: auto;
}

.documentos-citi-container h2 {
    text-align: center;
    font-weight: bold;
    width: 100%;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.btn-pdf {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);
    width: 80%;
    margin: 0 auto;
}

.btn-pdf:hover {
    background: #691C32;
    color: #fff;
    transform: scale(1.05);
}

.btn-pdf::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-pdf:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}



@media (max-width: 1600px) {

    .documentos-citi-container {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .documentos-citi-container .pdf-logo {
        display: block;
        margin: 0 auto 0 auto;
        width: 100px;
        height: auto;
    }

    .documento {
        flex: 1 1 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
        min-height: 130px;
    }
    .documento h2 {
        font-size: 16px;
        margin-top: 5px;
    }
    .btn-pdf {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 1024px) {

    .documentos-citi-container {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .documento {
        flex: 1 1 calc(33.33% - 20px) !important; /* 3 columnas */
        max-width: calc(33.33% - 20px) !important;
        min-height: 120px;
    }

    .documento h2 {
        font-size: 14px;
    }

    .btn-pdf {
        padding: 6px 10px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .documento {
        align-items: center;
        flex: 1 1 calc(50% - 20px) !important; /* 2 columnas */
        max-width: calc(50% - 20px) !important;
        min-height: 120px;
    }

    .documentos-citi-container {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        gap: 35px;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .documentos-citi-container .pdf-logo {
        display: block;
        margin: 0 auto 0 auto;
        width: 70px;
        height: auto;
    }

    .btn-pdf {
        text-align: center;
        padding: 8px 12px;
        font-size: 12px;
        width: 70%;
    }
}

@media (max-width: 480px) {
    .documento {
        flex: 1 1 calc(100% - 0px) !important; /* 1 columna */
        max-width: calc(100% - 0px) !important;
        min-height: 100px; /* Reducir la altura mínima */
        align-items: center;
        width: 100%;
    }

    .documentos-citi-container {
        width: 80%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 0 auto;
        margin-bottom: 25px;
    }

    .btn-pdf {
        text-align: center;
        padding: 8px 12px;
        font-size: 12px;
        width: 50%;
    }

}

/* /////////////////////////////////////////////// Estilo para entradas de Documentos CITI /////////////////////////////////////////////// */

.entry-documento-header .empty-element{
    height: 8.5vh;
    width: 100%;

}

/* /////////////////////////////////////////////// Estilo para Capacitaciones /////////////////////////////////////////////// */

.capacitaciones-container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.capacitacion {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(34% - 50px);
    box-sizing: border-box;
    min-height: 410px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease; 
}

.capacitacion:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.capacitacion-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.capacitacion-img img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.capacitacion-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 15px 10px;
}

.capacitacion-content-title {
    margin-bottom: 10px;
    height: auto;
}

.capacitacion-content h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.capacitacion-content-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    text-align: justify;

}

.capacitacion-btn-container {
    background-color: #dedede;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.capacitacion-content .btn_capacitaciones {
    text-align: center;
}

.btn_capacitaciones {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.btn_capacitaciones:hover {
    background: #691C32;
    color: #fff;
    transform: scale(1.05) !important;
}

.btn_capacitaciones::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_capacitaciones:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}


.material-estudio{
    width: 80%;
    background-color: #A57F2C;
    margin: 0px auto;
    border-radius: 10px;
}

.material-estudio h2{
    color: #ffffff;
    font-size: 50px;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 600;
    padding: 5px;
}

@media (max-width: 1600px) {
    .capacitaciones-container .capacitacion {
        flex: 1 1 calc(50% - 50px);
        max-width: calc(50% - 50px);
        min-height: 300px !important;
    }
    .capacitacion-content h5 {
        font-size: 18px;
    }
    
    .btn_capacitaciones {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .material-estudio h2{
        color: #ffffff;
        font-size: 45px;
        text-align: center;
        font-family: 'Montserrat';
        font-weight: 600;
        padding: 5px;
    }
}

@media (max-width: 1024px) {
    .capacitaciones-container .capacitacion {
        flex: 1 1 calc(70% - 50px);
        max-width: calc(70% - 50px);
        min-height: 315px !important;
    }
    .capacitacion-content h5 {
        font-size: 18px;
    }
    .capacitacion-content p,
    .capacitacion-content .btn_capacitaciones {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_capacitaciones {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .material-estudio h2{
        color: #ffffff;
        font-size: 40px;
        text-align: center;
        font-family: 'Montserrat';
        font-weight: 600;
        padding: 5px;
    }
}

@media (max-width: 768px) {
    .capacitaciones-container .capacitacion {
        flex: 1 1 calc(100% - 50px);
        max-width: calc(100% - 50px);
        min-height: 230px !important;
    }
    .capacitacion-content h5 {
        font-size: 18px;
    }
    .capacitacion-content p,
    .capacitacion-content .btn_capacitaciones {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_capacitaciones {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .material-estudio h2{
        color: #ffffff;
        font-size: 25px;
        text-align: center;
        font-family: 'Montserrat';
        font-weight: 600;
        padding: 5px;
    }
}

@media (max-width: 480px) {
    .capacitaciones-container .capacitacion {
        flex: 1 1 calc(100% - 50px);
        max-width: calc(100% - 50px);
        min-height: 280px !important;
    }
    .capacitacion-content p,
    .capacitacion-content .btn_capacitaciones {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_capacitaciones {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    .capacitacion-content h5 {
        font-size: 18px;
    }

    .material-estudio h2{
        color: #ffffff;
        font-size: 25px;
        text-align: center;
        font-family: 'Montserrat';
        font-weight: 600;
        padding: 5px;
    }
}

/* /////////////////////////////////////////////// Estilo para material de estudio /////////////////////////////////////////////// */

.material-estudio-container {
    width: 80%;
    padding: 20px;
    margin: 0 auto;
}

.material {
    margin-bottom: 20px;
    width: 100%;
}

.material .fecha {
    font-size: 0.9em;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.material h5 {
    margin: 0 0 10px;
    font-size: 25px;
    text-align: justify;
}

.material p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 17px;
}

.material h5 i {
    margin-right: 10px;
    font-size: 12px;
    color: #BC955C;
}

.material a.material-link {
    text-decoration: none;
    color: inherit;
}

.material a.material-link:hover {
    text-decoration: underline;
}

.material-estudio-container hr {
    border: 0;
    height: 1px;
    margin: 20px 0;
}

.boton_ordenar form {
    width: 80%;
    margin: 0 auto;
}

.boton_ordenar select {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.boton_ordenar select:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.boton_ordenar select:focus {
    background-color: #ffffff;
    border-color: #DDC9A3;
    box-shadow: 0 0 0 0.2rem #DDC9A3;
}

.boton_ordenar label {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #495057;
}

@media (max-width: 1600px) {

.material h5 {
    margin: 0 0 10px;
    font-size: 25px;
    text-align: justify;
    }
.material p {
    margin: 0 0 10px;
    text-align: justify;
    }
}

@media (max-width: 1024px) {

.material h5 {
    margin: 0 0 10px;
    font-size: 20px;
    text-align: justify;
    }
.material p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 17px;
    }
}

@media (max-width: 768px) {

.material h5 {
    margin: 0 0 10px;
    font-size: 20px;
    text-align: justify;
    }
.material p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 17px;
    }
}

@media (max-width: 480px) {

.material h5 {
    margin: 0 0 10px;
    font-size: 16px;
    text-align: justify;
    }
.material p {
    margin: 0 0 10px;
    text-align: justify;
    font-size: 15px;
    }
}


/* /////////////////////////////////////////////// Estilo para entradas de Capacitaciones /////////////////////////////////////////////// */


.single-capacitacion-content {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 1%;
    
}

.capacitacion-article {
    background-size: cover;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    width: 80%;
    box-sizing: border-box;
    background: url('./assets/img/fondo_cuadros.png') no-repeat center center;    
    background-size: cover;
}




.entry-header .title-box {
    background: linear-gradient(180deg, #9f2241, #691c32);    padding: 10px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.entry-header .entry-title {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.entry-content {
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.6;
}

.entry-content p,
.entry-content ul,
.entry-content ol,
.entry-content blockquote {
    padding-left: 5%; /* Ajusta el valor según sea necesario */
    padding-right: 5%;
}


.entry-content img {
    width: 90%;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 10px;
}


@media (max-width: 1600px) {
    .entry-header .entry-title {
        text-align: center;
        font-size: 40px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
}

@media (max-width: 1024px) {
    .entry-header .entry-title {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content{
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

}

@media (max-width: 768px) {
    .entry-header .entry-title {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content{
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

}

@media (max-width: 480px) {
    .entry-header .entry-title {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content{
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

}

/* /////////////////////////////////////////////// Estilo para Noticias /////////////////////////////////////////////// */

.noticias-container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.noticias {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(25% - 50px);
    box-sizing: border-box;
    min-height: 410px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease; 
}

.noticias:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.noticias-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.noticias-img img {
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.noticias-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 15px 10px;
}

.noticias-content h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.noticias-btn-container {
    background-color: #dedede;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
}


.noticias-content .btn_noticias {
    text-align: center;
}

.btn_noticias {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);

}

.btn_noticias:hover {
    background: #691C32;
    color: #fff;
    transform: scale(1.05) !important;
}

.btn_noticias::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_noticias:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}

@media (max-width: 1600px) {
    .noticias-container .noticias {
        flex: 1 1 calc(33.33% - 50px);
        max-width: calc(33.33% - 50px);
        min-height: 300px !important;
    }
    .noticias-content h5 {
        font-size: 18px;;
    }
    .noticias-content p {
        font-size: 0.8rem;
    }
    .btn_noticias {
        padding: 0.5rem 1rem;
        font-size:  0.8rem;
    }
}

@media (max-width: 1024px) {
    .noticias-container .noticias {
        flex: 1 1 calc(50% - 50px);
        max-width: calc(50% - 50px);
        min-height: 315px !important;
        transform-style: none;
    }
    .noticias-content h5 {
        font-size: 18px;;
    }
    .noticias-content p,
    .noticias-content .btn_noticias {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_noticias {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .noticias-container .noticias {
        flex: 1 1 calc(100% - 50px);
        max-width: calc(100% - 50px);
        min-height: 230px !important;
    }
    .noticias-content h5 {
        font-size: 18px;;
    }
    .noticias-content p,
    .noticias-content .btn_noticias {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_noticias {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .noticias-container .noticias {
        flex: 1 1 calc(100% - 50px);
        max-width: calc(100% - 50px);
        min-height: 280px !important; 
    }
    .noticias-content p,
    .noticias-content .btn_noticias {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .noticias-content h5 {
        font-size: 18px;;
    }
    .btn_noticias {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

}



/* /////////////////////////////////////////////// Estilo para entradas de Noticias /////////////////////////////////////////////// */

.single-noticias-content {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 1%;
}

.noticias-article {
    background-size: cover;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    width: 80%;
    box-sizing: border-box;
    background: url('./assets/img/fondo_cuadros.png') no-repeat center center;    
    background-size: cover;
}




.entry-header-noticias .title-noticias-box {
    background: linear-gradient(180deg, #9f2241, #691c32);    padding: 10px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.entry-header-noticias .entry-title-noticias {
    text-align: justify;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
    padding: 15px;
}

.entry-content-noticias {
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.6;
}

.entry-content-noticias p,
.entry-content-noticias ul,
.entry-content-noticias ol,
.entry-content-noticias blockquote {
    padding-left: 5%; /* Ajusta el valor según sea necesario */
    padding-right: 5%;
}


.entry-content-noticias img {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 70% !important;
}

@media (max-width: 1600px) {
    .entry-header-noticias .entry-title-noticias {
        text-align: justify;
        font-size: 40px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-noticias img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .single-noticias-content {
        margin-top: 7%;
    } 
}

@media (max-width: 1024px) {
    .entry-header-noticias .entry-title-noticias {
        text-align: justify;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-noticias img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-noticias {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-noticias-content {
        margin-top: 10%;
    } 

}

@media (max-width: 768px) {
    .entry-header-noticias .entry-title-noticias {
        text-align: justify;
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
        padding: 5px;
    }

    .entry-content-noticias img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-noticias {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-noticias-content {
        margin-top: 15%;
    } 

}

@media (max-width: 480px) {
    .entry-header-noticias .entry-title-noticias {
        text-align: justify;
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
        padding:5px;
    }

    .entry-content-noticias img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-noticias {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-noticias-content {
        margin-top: 20%;
    } 

}

/* /////////////////////////////////////////////// Estilo para Blog /////////////////////////////////////////////// */

.blog-container {
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
}

.blog {
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: calc(25% - 50px);
    box-sizing: border-box;
    min-height: 410px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(0, 0, 0, 0.1);
    border: 4px solid #ffffff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease; 
}

.blog:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.blog-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
}

.blog-img img{
    position: absolute;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    padding: 15px 10px;
}

.blog-content h5 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #000;
}

.blog-btn-container {
    background-color: #dedede;
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.blog-content .btn_blog {
    text-align: center;
}

.btn_blog {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.btn_blog:hover {
    background: #691C32;
    color: #fff;
    transform: scale(1.05) !important;
}

.btn_blog::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn_blog:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}

@media (max-width: 1600px) {
    .blog-container .blog {
        flex: 1 1 calc(33.33% - 50px);
        max-width: calc(33.33% - 50px);
        min-height: 300px !important;
    }
    .blog-content h5 {
        font-size: 18px;;
    }
    .blog-content p {
        font-size: 0.8rem;
    }
    .btn_blog {
        padding: 0.5rem 1rem;
        font-size:  0.8rem;
    }
}

@media (max-width: 1024px) {
    .blog-container .blog {
        flex: 1 1 calc(50% - 50px);
        max-width: calc(50% - 50px);
        min-height: 315px !important;
    }
    .blog-content h5 {
        font-size: 18px;;
    }
    .blog-content p,
    .blog-content .btn_blog {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_blog {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-container .blog {
        flex: 1 1 calc(100% - 50px);
        max-width: calc(100% - 50px);
        min-height: 230px !important;
    }
    .blog-content h5 {
        font-size: 18px;
    }
    .blog-content p,
    .blog-content .btn_blog {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .btn_blog {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-container .blog {
        flex: 1 1 calc(100% - 50px);
        max-width: calc(100% - 50px);
        min-height: 280px !important; 
    }
    .blog-content p,
    .blog-content .btn_blog {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    .blog-content h5 {
        font-size: 18px;
    }
    .btn_blog {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

}

/* /////////////////////////////////////////////// Estilo para entradas de Blog /////////////////////////////////////////////// */

.single-blog-content {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 1%;
}

.blog-article {
    background-size: cover;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    width: 80%;
    box-sizing: border-box;
    background: url('./assets/img/fondo_cuadros.png') no-repeat center center;    
    background-size: cover;
}




.entry-header-blog .title-blog-box {
    background: linear-gradient(180deg, #9f2241, #691c32);    padding: 10px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.entry-header-blog .entry-title-blog {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.entry-content-blog {
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.6;
}

.entry-content-blog p,
.entry-content-blog ul,
.entry-content-blog ol,
.entry-content-blog blockquote {
    padding-left: 5%; /* Ajusta el valor según sea necesario */
    padding-right: 5%;
}


.entry-content-blog img {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 90%;
}

@media (max-width: 1600px) {
    .entry-header-blog .entry-title-blog {
        text-align: center;
        font-size: 40px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-blog img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }

    .single-blog-content {
        margin-top: 7%;
    }
}

@media (max-width: 1024px) {
    .entry-header-blog .entry-title-blog {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-blog img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-blog {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-blog-content {
        margin-top: 10%;
    }

}

@media (max-width: 768px) {
    .entry-header-blog .entry-title-blog {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-blog img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-blog {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-blog-content {
        margin-top: 15%;
    }

}

@media (max-width: 480px) {
    .entry-header-blog .entry-title-blog {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-blog img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-blog {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

    .single-blog-content {
        margin-top: 20%;
    }

}

.resend-email-button {
    display: none; /* Ocultar el botón por defecto */
}


/* /////////////////////////////////////////////// Estilo para quienes somos /////////////////////////////////////////////// */

#quienes-somos-container {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin: 20px auto;
    background-color: #f8f9fa;
}

/* /////////////////////////////////////////////// Estilo para archivos /////////////////////////////////////////////// */

.entry-documento-content {

    margin-top: 55px;

}

/* /////////////////////////////////////////////// Estilo para informacion CITI /////////////////////////////////////////////// */


.info-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.5s ease, background-color 0.5s ease;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.info-container {
	max-width: 80%;
  	margin: 0 auto;
  	display: grid;
  	grid-template-columns: repeat(2, 1fr);
  	gap: 20px;
}

.info-title h5{
    margin-bottom: 10px;
    text-align: justify;
    color: #aa8753;
    font-weight:500;
    margin-top: 10px;
    font-size: 22px;
}

.info-title i {
    font-size: 13px;
    margin-right: 8px;
}

.info-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ver-informacion-button {
    text-align: center;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background: #9F2241;;
    cursor: pointer;
    transform: translate(0);
}

.ver-informacion-button:hover {
    background: #691C32;
    color: #fff;
    transform: scale(1.05);
}

.ver-informacion-button::before {
    content: '';
    border-radius: 10px;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #691C32;
    transform: scaleX(0);
    transform-origin: 100%;
    transition: transform 0.65s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ver-informacion-button:hover::before {
    transform: scaleX(1);
    transform-origin: 0%;
}    

.info-item {
    margin-bottom: 20px;
}

.info-content {
    padding-left: 20px;
}

.boton_ordenar form {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.boton_ordenar select {
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
    border-radius: 4px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    color: #495057;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s, border-color 0.3s;
}

.boton_ordenar select:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
}

.boton_ordenar select:focus {
    background-color: #ffffff;
    border-color: #DDC9A3;
    box-shadow: 0 0 0 0.2rem #DDC9A3;
}

.boton_ordenar label {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #495057;
}

@media (max-width: 1600px) {
    .info-title h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 22px;
    }

    .ver-informacion-button {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .info-title h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 18px;
    }

    .ver-informacion-button {
        font-size: 15px;
    }
    
    .info-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .info-title h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 18px;
    }

    .info-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .ver-informacion-button {
        font-size: 12px;
        width: auto;
        margin-top: 5px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {

    .info-container {
        max-width: 80%;
        margin: 0 auto;
    }    

    .info-title h5 {
        margin-bottom: 10px;
        text-align: justify;
        color: #aa8753;
        font-weight:500;
        margin-top: 10px;
        font-size: 18px;
    }

    .ver-informacion-button {
        font-size: 12px;
        width: auto;
        margin-top: 5px;
        margin: 0 auto;
    }
}

/* /////////////////////////////////////////////// Estilo para entradas de informacion CITI /////////////////////////////////////////////// */

.single-info-content {
    margin-top: 5%;
    display: flex;
    justify-content: center;
    padding: 20px;
    margin-bottom: 1%;
}

.info-article {
    background-size: cover;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 80%;
    width: 80%;
    box-sizing: border-box;
    background: url('./assets/img/fondo_cuadros.png') no-repeat center center;    
    background-size: cover;
}




.entry-header-info .title-info-box {
    background: linear-gradient(180deg, #9f2241, #691c32);    padding: 10px;
    border-radius: 5px;
    margin: 0 auto;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 90%;
}

.entry-header-info .entry-title-info {
    text-align: center;
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

.entry-content-info {
    text-align: justify;
    font-size: 1.2em;
    line-height: 1.6;
}

.entry-content-info p,
.entry-content-info ul,
.entry-content-info ol,
.entry-content-info blockquote {
    padding-left: 5%; /* Ajusta el valor según sea necesario */
    padding-right: 5%;
}


.entry-content-info img {
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 90%;
}

figure.wp-block-gallery.has-nested-images {
    align-items: normal;
    width: 80%;
    margin: 0 auto;
  }

@media (max-width: 1600px) {

    .single-info-content {
        margin-top: 6%;
    }
    .entry-header-info .entry-title-info {
        text-align: center;
        font-size: 40px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-info img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
}

@media (max-width: 1024px) {

    .single-info-content {
        margin-top: 10%;
    }

    .entry-header-info .entry-title-info {
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-info img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-info {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }
    
      .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px)*.75);
  }

     figure.wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {
    .single-info-content {
        margin-top: 15%;
    }

    .entry-header-info .entry-title-info {
        text-align: center;
        font-size: 20px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-info img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-info {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }
    
     .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    width: calc(100% - var(--wp--style--unstable-gallery-gap, 16px)*.75);
  }
    
     figure.wp-block-gallery.has-nested-images {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media (max-width: 480px) {

    .single-info-content {
        margin-top: 20%;
    }

    .entry-header-info .entry-title-info {
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        color: #ffffff;
        margin: 0;
    }

    .entry-content-info img {
        display: block;
        margin: 0 auto;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 90%;
    }
    .entry-content-info {
        text-align: justify;
        font-size: 15px;
        line-height: 1.6;
    }

}