@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}
:root {
  /*--color-principal: #ED3237;*/
  --color-principal: #AF0000;
  --color-secundario: #DAA520;
  --color-textoblanco: #FFFFFF;
  --color-textonegro: #000000;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  height: 100%;
}
body{ 
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 1.6;   
}
section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
ul, ol{
  list-style-position: inside;
}
.oculto_semantico{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.section_title{
  width: 100%;
  margin: 70px 0px 50px 0px;
  text-align: center;
  padding: 0px 20px 0px 20px;
  color: var(--color-secundario);   
}
.text_intro{
  background-color: #CC0000;
  border-radius: 15px;
  padding: 20px;  
  font-size: 18px;
  color: var(--color-textoblanco);
  text-align: justify;
}
/*/////////////////////////////////////////// NAVBAR /////////////////////////////////////////////*/
/*/////////////////////////////////////////// MENU ///////////////////////////////////////////////*/
.menu_container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_navbar{
  width: 100%;  
  /*background-color: transparent;*/  
  background-color: rgba(128, 128, 128, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;  
  z-index: 1000;  
  position: fixed;
  top: 0px;
  left: 0px;  
}
.header_navbar[data-scroll="out"]{  
  background: #FFFFFF;
}
.logo_container{
  width: 250px;
  height: 70px;  
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../images/liceo_logo_wh.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 20px;
}
.logo_container[data-scroll="out"]{
  background-image: url("../images/liceo_logo.png");
}
.logo_container img{
  width: 100%;
  height: auto;
}
.menu{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #FFFFFF;
  margin: 0;
}
.menu li{
  list-style-type: none;
  position: relative;
}
.menu li:hover{
  background-color: var(--color-principal);  
}
.menu li a{
  text-decoration: none;  
  font-weight: 400;
  font-size: 20px;
  color: var(--color-textoblanco);
  padding: 0px 3px;   
}
.menu li a:hover{  
  color: var(--color-secundario);
}
.menu > li:nth-child(1) > a::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-textoblanco);
  position: absolute;
  left: 105%;
  top: 50%;
}
.menu > li:nth-child(1) > a.activo::after {
  border-top-color: var(--color-principal);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;  
}
.menu > li:nth-child(2) > a::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-textoblanco);
  position: absolute;
  left: 105%;
  top: 50%;
}
.menu > li:nth-child(2) > a.activo::after {
  border-top-color: var(--color-principal);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;  
}
.redir[data-scroll="out"]{
  color: var(--color-secundario);
}
.menu_dropdown{
  position: absolute;
  display: none;  
  flex-direction: column;
  top: 100%;
  left: 0px;  
  background-color: #FFFFFF;
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 1000;
  gap: 5px;
  padding: 5px 0px 5px 0px;
  border-top: solid 1px var(--color-secundario);
}
.menu_dropdown li{
  list-style-type: none;
  width: 100%;  
}
.menu_dropdown li:hover{
  background-color: var(--color-principal);
}
.menu_dropdown li a{
  width: 100%;
  color: var(--color-secundario);
  padding-left: 10px;
  font-size: 18px;
}
.submenu:hover .menu_dropdown {
  display: flex;
}
/*////////////////////////////////////// RESPONSIVE MENU /////////////////////////////////////////*/
.responsive_menu_icon{
  width: 50px;
  height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% - 25px);
  right: 30px; 
  border-radius: 100%;
  border: solid 2px #DC2700;
  cursor: pointer;
}
.responsive_menu_icon img{
  width: 50%;
  height: auto;
}
.responsive_menu_icon_close{
  width: 50px;
  height: 50px;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% - 25px);
  right: 30px; 
  border-radius: 100%;
  border: solid 2px #DC2700;
}
.responsive_menu_icon_close img{
  width: 50%;
  height: auto;
}
.animate_close{
  animation: spin 0.5s ease;
}
.responsive_menu_container{
  display: none;  
  background-color: var(--color-principal);
  width: auto;
  height: auto;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  right: 0px;
}
.menu_responsive{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;  
}
.menu_responsive li{
  list-style-type: none;
  padding: 5px 8px;
  position: relative;
}
.menu_responsive li a{
  text-decoration: none;
  color: #FFFFFF;
}
.menu_responsive > li:nth-child(1) > a::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-textoblanco);
  position: absolute;
  left: 50%;
  top: 15px;
}
.menu_responsive > li:nth-child(1) > a.activo::after{
  border-top: none;
  border-bottom: 6px solid var(--color-textoblanco);
}
.menu_responsive > li:nth-child(2) > a::after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-textoblanco);
  position: absolute;
  left: 80%;
  top: 15px;
}
.menu_responsive > li:nth-child(2) > a.activo::after{
  border-top: none;
  border-bottom: 6px solid var(--color-textoblanco);  
}
.menu_dropdown_responsive{  
  flex-direction: column;   
  background-color: var(--color-principal);
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 1000;
  gap: 5px;
  padding: 5px 0px 5px 0px;
  border-top: solid 1px var(--color-principal);
}
.menu_dropdown_responsive li{
  list-style-type: none;
  width: 100%;  
}
.menu_dropdown_responsive li:hover{
  background-color: #FF0000;
}
.menu_dropdown_responsive li a{
  width: 100%;
  color: #FFFFFF;
  padding-left: 10px;
  font-size: 18px;
}
.menu_dropdown_responsive{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.menu_dropdown_responsive.activo{
  max-height: 500px;
}
/*///////////////////////////////////////////// INTRO //////////////////////////////////////////////*/
.intro_container{
  width: 100%;  
  display: flex;
  justify-content: space-evenly;
  align-items: center;  
  flex-wrap: wrap;
}
.intro_aside{
  width: 500px;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 20px;
  box-sizing: border-box;
}
.aside_image_container{
  width: 400px; /* tamaño del vector de fondo */
  height: 400px; /* tamaño del vector de fondo */
  background-image: url("../images/shape_vector.png"); /*complemento para ajustar vector de fondo */
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.aside_image_vector{
  max-width: 460px; /* tamaño del vector animado */
 /* position: absolute;
  top: 15%;*/
}
.aside_image_vector img{
  width: 100%;
  height: auto;
}
.intro_aside_text{
  background-color: #FFFFFF;
  padding: 1rem;
  text-align: justify;
  font-size: 18px;
}
.small{
  width: 280px;
}
.intro_aside.texto{
  align-items: flex-start;
  flex-direction: column;
}
.aside_image_vector {
  z-index: 1;
}
.intro_aside_text {
  /*position: relative;
  z-index: 2;*/
  
  /*box-sizing: border-box;*/
}
@media (max-width: 1024px) {
  .intro_container {
    flex-direction: column;
  }

  .intro_aside {
    width: 100%;
    min-height: auto;
  }

  /*.aside_image_vector {
    position: relative;
    top: auto;
    margin-bottom: 1rem;
  }*/
}
/*/////////////////////////////////////////// PERFILES //////////////////////////////////////////////*/
.perfiles_academicos{
  width: 100%;
  margin: auto;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.perfiles_container{
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  flex-wrap: wrap;
}
.perfil_container{
  width: 450px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.perfil_header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-principal);
  padding: 1rem;
  cursor: pointer;
  color: #FFFFFF;
  gap: 15px;
}
.perfil_toggle{
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #333;
}
/*.perfil_lista{
  list-style: none;
  padding: 1rem 2rem;
  margin: 0;
}
.perfil_lista li{
  margin-bottom: 0.5rem;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}
.perfil_lista li .flecha{
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}*/
.oculto{
  display: none;
}
.icono_mas{
  font-size: 40px;
  font-weight: bold;
  color: #FFFFFF;
}
.perfil_contenido{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.perfil_container.activo .perfil_contenido {
  max-height: 500px;
  overflow-y: auto;
  padding-right: 1rem; /* para evitar que el scroll tape el texto */
}
.perfil_lista{
  list-style: none;
  padding: 1rem 2rem;
  margin: 0;
  text-align: justify;
}
.perfil_lista li{
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  position: relative;
  padding-left: 1.5rem;
}
.perfil_lista li .flecha {
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}
/*////////////////////////////////////// PLAN DE ESTUDIOS /////////////////////////////////////////*/
.reticula{
  margin-top: 50px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  background-image: url("../images/vector2_reticula.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 25px 0px 0px 0px;
}
.semestre_card{
  width: 350px;
  max-height: 300px;  
  box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
  -webkit-box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 10px 10px -6px rgba(0,0,0,0.75);
  background-color: #FFFFFF;
}
.semestre_title{
  width: 100%;
  height: 20%;
  display: flex;
  background-color: var(--color-principal);
  padding: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 20px;
}
.circulo{
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: solid 2px #FFFFFF;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
}
.lista_tematica{
  font-family: "Lato", sans-serif;
  font-size: 17px;  
}
.lista_tematica{
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 1.5rem;
}

.lista_tematica li{
  /*text-indent: -1rem;*/
  padding-left: 1rem;
  line-height: 1.5;
}
/*//////////////////////////////////// AREAS DE APRENDIZAJE ///////////////////////////////////////*/
.areas_aprendizaje{
  width: 100%;
  padding: 2rem;
  /*background-color: #f9f9f9;*/
  background-color: var(--color-principal);
  text-align: center;
}
.areas_aprendizaje h2{
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #333;
}
.areas_container{
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.area_item{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  padding: 1rem;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.area_item:hover{
  transform: translateY(-5px);
}
.area_icon{
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #F60909; /* institucional */
}
.area_texto{
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}
/*////////////////////////////////////// CAMPO LABORAL /////////////////////////////////////////*/
.campo_laboral{
  max-width: 800px;
  margin: auto;
  padding: 2rem;
}
.campo_titulo{
  font-size: 25px;
  /*margin-bottom: 1.5rem;*/
  text-align: center;
}
.campo_titulo p{
  font-size: 18px;
  color: var(--color-textonegro);
}
.accordion_item{
  border-bottom: 1px solid #ccc;
}
.accordion_trigger{
  background: var(--color-principal);
  color: #fff;
  padding: 1rem;
  width: 100%;
  text-align: left;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: flex !important;
  position: relative;
  font-size: 20px;
}
.accordion_trigger::after{
  content: '';
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #FFFFFF;
  transition: transform 0.3s ease;
}
.accordion_item.active .accordion_trigger::after{
  transform: translateY(-50%) rotate(180deg);
}
.accordion_icon{
  width: 30px;
  height: auto;
}
.accordion_icon img{
  width: 100%;
  height: auto;
}
.accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1rem;
  background: #FFFFFF;  
}
.accordion_content li{
  font-size: 18px;
  list-style-position: initial;
}
.accordion_item.active .accordion_content {
  max-height: 500px;
  padding: 1rem;
}
/*///////////////////////////////////////// INFORMACION ////////////////////////////////////////////*/
.informacion_container{
  /*margin-top: 100px;*/
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.informacion_container a{
  text-decoration: none;
  color: #000000;
}
.info_card{
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;  
}
.info_icon{
  width: 150px;  
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border: solid 3px #DAA520;
  border-radius: 100%;
  transition: 1s;
}
.info_icon svg{
  width: 120px;
  height: 120px;
  color: #000000;
  transition: 1s;
}
.info_text{
   font-size: 20px;
}
.info_card:hover .info_icon svg {
  color: #CC0000;
  transform: scale(1.05);
  transition: 0.5s;  
}
.info_card:hover .info_icon{
  border-radius: 15px;
  /*border: solid 3px #000000;    */
  transition: 0.5s;
}
/*/////////////////////////////////////////// FOOTER ///////////////////////////////////////////////*/
footer{
  background-color: var(--color-principal);
  /*padding: 20px;*/
}
.footer_container{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}
.logo_footer_container{
  width: 150px;
  height: 150px;
  background-image: url("../images/liceo_logo_gold.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 10px;
}
.footer_contact_info{
  max-width: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.footer_contacto_item{
  min-width: 300px;
  display: flex;
  justify-content: flex-start;
  align-items: center;  
  gap: 5px;
}
.footer_contacto_icon{
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_contacto_icon img{
  width: 100%;
  height: auto;
}
.footer_contacto_text{  
  height: 25px;  
}
.footer_contacto_text p{
  font-size: 13px;
  color: var(--color-textoblanco);
}
.footer_social_bar{
  margin: 20px 0px;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;  
}
.social_container{  
}
.social_icon_container{
  width: 30px;
  height: 30px;
}
.social_icon_container img{
  width: 100%;
  height: auto;
}
.footer_social_bar h2{
  color: var(--color-textoblanco);
}
/*////////////////////////////////////////// DERECHOS /////////////////////////////////////////////*/
.register{
  width: 100%;
  height: auto;
  padding: 15px 10px;
  background-color: #000000;
  text-align: center;
}
.register p{
  margin: 0;
  font-size: 15px;
  color: #FFFFFF;
}
/*///////////////////////////////////////// WHATSAPP ////////////////////////////////////////////*/
.whatsapp-button{
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*gap: 0.5rem;*/
  background-color: #25D366;
  color: white;
  font-weight: bold;
  padding: 1rem;
  border-radius: 100%;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  position: fixed;
  bottom: 200px;
  right: 10px;
  z-index: 2000; 
}
.whatsapp-button:hover{
  background-color: #1EBE57;
}
.whatsapp-button img{
  width: 100%;
  height: auto;
}
/*//////////////////////////////////////// RESPONSIVE /////////////////////////////////////////////*/
/*@media screen and (min-width: 1400px){

}
@media screen and (min-width: 1280px) and (max-width: 1399px){

}
@media screen and (min-width: 1025px) and (max-width: 1279px){
  
}
@media screen and (min-width: 768px) and (max-width: 1024px){  
  
}*/
@media screen and (max-width: 850px){  
  .header_navbar{    
    position: relative;   
  }
  .header_navbar[data-scroll="out"]{
    position: fixed;    
  }
  .logo_container{
    background-image: url("../images/liceo_logo.png");
  }
  .menu_container{
    display: none;
  }
  .responsive_menu_icon{
    display: flex;
  }  
  .header_navbar{
    justify-content: flex-start;
    width: 100vw;
  }
  .info_card{
    width: 100vw;
  }
  .intro_aside{
    width: 100vw;
  }
  .intro_aside_text{    
    padding: 15px;
  }  
}
@media screen and (min-width: 481px) and (max-width: 767px){  
  .header_navbar{
    justify-content: flex-start;
    width: 100vw;
  }  
}
@media screen and (max-width: 537px){  
  .footer_container{
    justify-content: center;
  }
  .footer_contacto_item{
    justify-content: center;
  }
  .footer_contacto_text{
    text-align: center;
  }
}
@media screen and (max-width: 500px){
  .aside_image_container{
    width: 350px; 
    height: 350px;
  }
  .intro_aside{
    width: 400px;   
    padding: 10px;
    font-size: 17px;
  }
  .aside_image_vector{
    width: 300px;    
    top: 20%;
  }
  .register p{
    font-size: 10px;
  }
}
/*///////////////////////////////////////// ANIMACIONES ////////////////////////////////////////////*/
@keyframes spin{
  0%{
    transform: rotate(0deg);
    opacity: 1;
  }
  100%{
    transform: rotate(360deg);
    opacity: 0;
  }
}