@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,800&display=swap');

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}
body
{
	font-family: 'Poppins', sans-serif;
}
img
{
	max-width: 80%;
}

	/**Pabellon**/

.container-secundaria{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px; /* Agregar padding para evitar el desbordamiento */
}

.pabellon-content {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
    align-items: center; /* Alinear verticalmente */
}

.pabellon-txt {
    flex-basis: 50%;
    padding-right: 80px;
}

.pabellon-txt h1 {
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    color: #1B1B1D;
    margin-bottom: 15px;
}

.pabellon-img{
    width: 100%;
    text-align: center;
}

.pabellon-img img{
    max-width: 100%;
}

p {
    font-size: 18px;
    color: #515151;
    margin-bottom: 25px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .pabellon-content {
        flex-direction: column; /* Cambiar a columna en pantallas pequeñas */
        align-items: center; /* Centrar contenido */
        padding: 40px 0; /* Reducir el padding */
    }

    .pabellon-txt {
        padding-right: 0; /* Eliminar padding en pantallas pequeñas */
        text-align: center; /* Centrar texto */
        margin-bottom: 20px; /* Margen inferior para separación */
    }

    .pabellon-txt h1 {
        font-size: 36px; /* Ajustar tamaño de fuente */
    }

    p {
        font-size: 16px; /* Ajustar tamaño de fuente */
    }

    .pabellon-img {
        width: 100%; /* Asegurar que la imagen sea responsiva */
    }

    .pabellon-img img {
        width: 100%; /* La imagen ocupará todo el ancho del contenedor */
        height: auto; /* Mantener la proporción */
    }
}

@media (max-width: 480px) {
    .pabellon-txt h1 {
        font-size: 28px; /* Ajustar aún más el tamaño de fuente */
    }

    p {
        font-size: 14px; /* Ajustar aún más el tamaño de fuente */
    }
}


.btn-1
{
	display: inline-block;
	padding: 10px 25px;
	color: #FFFFFF;
	background-color: #0fa759;
	text-transform: uppercase;
	border-radius: 25px;
	font-size: 16px;
}
.btn-1:hover
{
	background-color: #e0af60;
    color: white;
}

h2
{
	color: #0fa759;
	font-size: 40px;
}

	/**Estrategias**/

    .primaria-flex{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .primaria-flex-texto{
        width: 50%;
    }
    
    .primaria-flex-img{
        width: 50%;
        margin-left: 60px;
    }
    
    .primaria-flex-img img{
        width: 70%;
    }

    .custom-list-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 20px;
        font-family: Arial, sans-serif;
        background-color: #f9f9f9;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .custom-list-title {
        font-size: 1.8em;
        color: #0fa759;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .custom-list-item {
        margin-bottom: 20px;
    }
    
    .custom-list-item h3 {
        font-size: 1.5em;
        color: #0fa759;
        margin-bottom: 10px;
    }
    
    .custom-list-item ul {
        list-style-type: disc;
        padding-left: 20px;
    }
    
    .custom-list-item ul li {
        margin-bottom: 8px;
        font-size: 1em;
        color: #555;
    }
    
    .custom-list-item ul li strong {
        color: #222;
    }
    
    .primaria-flex {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .primaria-flex-texto {
        width: 60%;
    }
    
    .primaria-flex-img {
        width: 35%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: center;
    }
    
    .primaria-flex-img img {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Media Queries */
    @media (max-width: 768px) {
        .custom-list-title {
            font-size: 1.6em;
        }
    
        .primaria-flex {
            flex-direction: column;
            align-items: center;
        }
    
        .primaria-flex-texto,
        .primaria-flex-img {
            width: 100%;
            margin-left: 0;
        }
    
        .primaria-flex-img img {
            width: 100%;
            margin-bottom: 10px;
        }
    
        .resumen {
            font-size: 0.95em;
        }
    }
    
    @media (max-width: 480px) {
        .custom-list-title {
            font-size: 1.4em;
        }
    
        .custom-list-item h3 {
            font-size: 1.3em;
        }
    
        .custom-list-item ul li {
            font-size: 0.9em;
        }
    
        .resumen {
            font-size: 0.9em;
        }
    
        .primaria-flex-img img {
            width: 100%;
        }
    }
    

.subtitulos h2 {
    font-size: 30px;
    text-align: center;
    color: #0fa759;
}

.table-container {
    max-width: 100%;
    overflow-x: auto; /* Habilita el desplazamiento horizontal en dispositivos pequeños */
}

@media (max-width: 480px) {
    .subtitulos h2 {
        font-size: 24px !important;
    }
}
@media (max-width: 768px) {
    .subtitulos h2 {
        font-size: 28px !important;
    }
}
@media (max-width: 992px) {
    .subtitulos h2 {
        font-size: 32px !important;
    }
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #0fa759; /* Color de fondo para el encabezado */
    color: white;
}

tr:hover {
    background-color: #f1f1f1; /* Color al pasar el mouse sobre las filas */
}

button.show-btn {
    padding: 8px 12px;
    background-color: #0fa759;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: .3s;
}

button.show-btn:hover {
    background-color: #0c6f3c;
}

@media (max-width: 600px) {
    th, td {
        font-size: 14px; /* Tamaño de fuente más pequeño en dispositivos móviles */
    }
}

#lightbox-desc{
	color: white;
}

.table-container {
    max-width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #0fa759;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

button.show-btn {
    padding: 8px 12px;
    background-color: #0fa759;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: .3s;
}

button.show-btn:hover {
    background-color: #0c6f3c;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox.hidden {
    display: none;
}

.lightbox-content {
    position: relative;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 80%;
    max-width: 600px;
}


.lightbox-images {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.lightbox-image {
    width: 48%; /* Ajusta el tamaño de cada imagen */
    text-align: center;
}

.lightbox img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

#lightbox-descriptions p {
    font-size: 16px;
    color: white;
    margin: 10px 0;
    text-align: center;
}

button.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}



.tabla-curricular-container {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.tabla-curricular {
    width: 90%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.tabla-curricular th,
.tabla-curricular td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.tabla-curricular thead th {
    background-color: #0fa759;
    color: white;
    font-weight: bold;
}

.tabla-curricular tbody tr:hover {
    background-color: #f1f1f1;
}

.total-horas {
    font-weight: bold;
    background-color: #d9f2d9;
    border-top: 2px solid #0fa759;
}

.horas{
    margin: 40px 0;
    
}

.horas-img{
	display: flex;
	justify-content: center;
    margin: 0 20px;
}

.horas-img img{
	width: 600px;
    border: 3px solid;
}



.products
{
	padding: 40px 0;
	text-align: center;
}
.products-content
{
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.products-1
{
	background-color: #F7F7F7;
	padding: 20px;
	border-radius: 30px;
}
.products-1 h4
{
	color: #1B1B1D;
	font-size: 22px;
	margin-bottom: 5px;
}
.products-1 p 
{
	color: #FF8400;
	margin-bottom: 10px;
}


@media(max-width:991px)
{

.pabellon-content
{
	padding: 30px;
	flex-direction: column;
	text-align: center;
}
.pabellon-txt
{
	padding: 0 0 10px 0;
}
.services
{
	padding: 30px;
}
.services-content
{
	flex-direction: column;
	margin-top: 30px;
}
.products
{
	padding: 30px;
}
.products-content
{
	margin-top: 30px;
	grid-template-columns: repeat(1, 1fr);
}
.testimonio
{
	padding: 30px;
}
.testimonio-content
{
	flex-direction: column;
	margin-top: 30px;
}
.testimonio-1
{
	margin-bottom: 30px;
}

}