 /*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/*@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300&family=Montserrat:wght@300;400;700&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');

@font-face {
	font-family: familiagibson;
	src: url(../fonts/Gibson/Gibson-SemiBold.ttf);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Euclid Circular A", "Poppins";
}
 
 
 body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 70px;
    padding: 20px;
}
.title-principal {
    text-align: center;
    margin-bottom: 40px;
}
.title-principal h1 {
    font-size: 2.5em;
    color: #2a2a2a;
    margin: 0;
}
.title-principal p {
    font-size: 1.2em;
    color: #666;
}
.section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.section h2 {
    font-size: 2em;
    color: #2a2a2a;
    margin-bottom: 15px;
}
.section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
}
.section .mission,
.section .vision {
    margin-top: 30px;
}
.section .mission h3,
.section .vision h3 {
    font-size: 1.5em;
    color: #2a2a2a;
    margin-bottom: 10px;
}


/*INICIO HEADER*/
header {
    
    background-color: #004aad;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.33);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.33);
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.33);
    color: white;
    height: 80px;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: "Euclid Circular A", "Poppins" !important;
}


.logo {
	font-size: 1.5rem;
	font-weight: bold;
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

/* Estilos para el menú hamburguesa */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
}

.hamburger div {
	width: 25px;
	height: 3px;
	background-color: white;
}

/* Estilos para el menú en móvil */
.nav-mobile {
	display: none;
	flex-direction: column;
	gap: 10px;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	background-color: #50007f;
	padding: 10px 0;
	text-align: center;
}

.nav-mobile a {
	color: white;
	text-decoration: none;
	font-size: 1.2rem;
	padding: 10px 0;
}

@media (max-width: 768px) {
	.nav-links {
	display: none;
	}

	 
      .nav-links li:first-child{
        margin-top: 180px;
    }


    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw;
        height: 100vh;
        
        background-color: white;
        /*justify-content: center;
        align-items: center;*/
        z-index: 10;
        padding: 10px 0;
        text-align: center;
      
    }
     .nav-links.active a {
        padding: 10px 0;
        color: #004aad;
    }

    /* Evitar el scroll en el menú activo */
        body.menu-open {
            overflow: hidden;
        }

    .hamburger {
        display: flex;
    }
}

.btn {
	display: block;
	width: 55%;
	margin: 0 auto;
	padding: 4px;
	background: #24c78e;
	border: none;
	border-radius: 5px;

}

.btn a {
	color: #fafafa !important;
}




#texto{
	height: 110px;
}






/* Estilos para pantallas pequeñas */
@media (max-width: 768px) {
    .title-principal h1 {
        font-size: 2em;
    }
    .title-principal p {
        font-size: 1em;
    }
    .section h2 {
        font-size: 1.5em;
    }
    .section p {
        font-size: 1em;
    }
    .section .mission h3,
    .section .vision h3 {
        font-size: 1.3em;
    }

    .container{
        width: 100%;
    }
}

@media (max-width:605px) {
    .calification {
  padding: 2px !important;


}
}