@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: #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;
  color: #333;
  background-color: #F9F9F9;  
}
section{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.oculto_semantico{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/*/////////////////////////////////////////// NAVBAR /////////////////////////////////////////////*/
/*/////////////////////////////////////////// MENU ///////////////////////////////////////////////*/
.menu_container{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header_navbar{
  width: 100%;  
  background-color: transparent;
  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 a{
  text-decoration: none;
  color: #000000;
  font-weight: 400;
  font-size: 20px;
  color: #FFFFFF;  
}
.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-secundario);
  position: absolute;
  left: 101%;
  top: 50%;
}
.menu > li:nth-child(1) > a.activo::after{
  border-top-color: var(--color-principal);
}
.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-principal);
  position: absolute;
  left: 101%;
  top: 50%;
}
.menu > li:nth-child(2) > a.activo::after{
  border-top-color: var(--color-principal);
}
.redir[data-scroll="out"]{
  color: #000000;
}
.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 #FF0000;
}
.menu_dropdown li{
  list-style-type: none;
  width: 100%;  
}
.menu_dropdown li:hover{
  background-color: #FF0000;
}
.menu_dropdown li a{
  width: 100%;
  color: #000000;
  padding-left: 10px;
  font-size: 18px;
}
.menu > li:hover .menu_dropdown{
  display: flex;
}
/*////////////////////////////////////// MENU RESPONSIVE /////////////////////////////////////////*/
.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;
}
.submenu_responsive{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  list-style-type: none; 
}
/*.submenu_responsive li{
  list-style-type: none;
  padding: 5px 8px;
  position: relative;
}*/
.submenu_responsive 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: #FF0000;
  padding: 0;
  margin: 0;
  min-width: 180px;
  z-index: 1000;
  gap: 5px;
  padding: 5px 0px 5px 0px;
  border-top: solid 1px #FF0000;
}
.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;
}
/*///////////////////////////////////////// CARROUSEL /////////////////////////////////////////////*/
.main{
  width: 100%;      
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFFFFF;  
}
.carousel-item > div{
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.titulo_principal{
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/*/////////////////////////////////////////// CARDS ///////////////////////////////////////////////*/
.oferta_educativa{
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin-top: 50px;
}
.oferta_container{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.card-flip{
  width: 350px;
  height: 400px;
  perspective: 1000px;
}
.card-inner{
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}
.card-flip:hover .card-inner{
  transform: rotateY(180deg);
}
.card-front,
.card-back{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.card-front{
  background-color: var(--color-principal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 30px;
  color: #FFFFFF;
}
.card_logo{
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card_logo img{
  width: 100%;
  height: auto;
}
.card-front p{
  color: var(--color-secundario);
}
.card-back{
  transform: rotateY(180deg);
  background-size: cover;
  background-position: center;
}
/*///////////////////////////////////////// UBICACION /////////////////////////////////////////////*/
.ubicacion{
  margin-top: 50px;  
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;  
}
.ubicacion iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 50px;
}
/*////////////////////////////////////////// CONTACTO /////////////////////////////////////////////*/
.contacto{
  width: 100%;
  height: auto;
  margin-top: 50px;
  font-size: 18px;
}
.contacto_container{
  width: 100%;    
  height: auto;
  background-image: url("../images/contacto.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.contacto_row{
  width: 80%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-bottom: solid 2px var(--color-textoblanco);
  padding: 10px;
}
.contacto_logo{
  width: 150px;
  height: auto;
}
.contacto_logo img{
  width: 100%;
  height: auto;
}
.contacto_items_container{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.contacto_item{
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.contacto_icon{
  width: 30px;
  height: auto;
}
.contacto_icon img{
  width: 100%;
  height: auto;
}
.contacto_text{
  width: auto;
  height: auto;
  color: var(--color-textoblanco);
  font-size: 15px;  
}
.contacto_text p{
  margin: 0;
}
.contacto_form_container{
  width: 75%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.form_container{
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.form_container p{
  font-size: 20px;
  color: var(--color-textoblanco);
}
.contacto_form{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
.contacto_form input[type=text]{
  border: none;
  border-bottom: solid 1px var(--color-textoblanco);
  background-color: transparent;
  width: 350px;
  color: var(--color-secundario);
  padding: 10px 0px;
}
.contacto_form input[type=mail]{
  border: none;
  border-bottom: solid 1px var(--color-textoblanco);
  background-color: transparent;
  width: 350px;
  color: var(--color-textoblanco);
  padding: 10px 0px;
}
.contacto_form input:focus{
  outline: none;  
}
.contacto_form input::placeholder{
  color: var(--color-textoblanco);
}
.contacto_form input[type=submit]{
  color: #FFFFFF;
  padding: 8px 10px;
  background-color: var(--color-secundario);
  border: none;
  cursor: pointer;
  margin: 15px 0px;
}
.social_bar{
  width: auto;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: calc(50% - 25px);
  right: 20px;
}
.social_bar p{
  font-size: 18px;
  color: #FFFFFF;
}
.social_icon{
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.social_icon img{
  width: 100%;
  height: auto;
}
/*////////////////////////////////////////// DERECHOS /////////////////////////////////////////////*/
.register{
  width: 100%;
  height: auto;
  padding: 15px 10px;
  background-color: #000000;
  text-align: center;
}
.register p{
  margin: 0;
  font-size: 15px;
  color: #FFFFFF;
}
/*//////////////////////////////////////// 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){
  .ubicacion{    
    margin-top: 0px;      
  }
  .card-flip {
    width: 300px;
    height: 350px;    
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px){  
  .card-flip {
    width: 250px;
    height: 300px;    
  }
  .card-front {   
    font-size: 20px;    
  }
  .ubicacion{    
    margin-top: 0px;      
  }
}
@media screen and (min-width: 481px) and (max-width: 767px){  
  .card-flip{
    width: 200px;
    height: 250px;    
  }
  .card_logo{
    width: 100px;
  }
  .card-front{   
    font-size: 20px;    
  } 
  .ubicacion{    
    margin-top: 0px;      
  }
  .contacto_items_container{
    flex-direction: column;
    gap: 5px;
  }
  .contacto_row{
    padding-bottom: 20px;
  }
  .contacto_container{
    gap: 10px;
  }
  .header_navbar{
    justify-content: flex-start;
    width: 100vw;
  }
  .contacto_items_container{
    flex-direction: column;
    gap: 5px;
  }
  .contacto_row{
    padding-bottom: 20px;
  }
  .contacto_container{
    gap: 10px;
  }
  .oferta_container a{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px){  
  .ubicacion{
    height: 90vh;
    margin-top: 50px;      
  }
  .ubicacion iframe{    
    padding: 5px;
  }
  .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;
  }
  .contacto_items_container{
    flex-direction: column;
    gap: 5px;
  }
  .contacto_row{
    padding-bottom: 20px;
  }
  .contacto_container{
    gap: 10px;
  }
  .header_navbar{
    justify-content: flex-start;
    width: 100vw;
  }
  .card-flip{
    width: 250px;
    height: 300px;    
  }
  .card-front{   
    font-size: 20px;    
  }
  .contacto_items_container{
    flex-direction: column;
    gap: 5px;
  }
  .contacto_row{
    padding-bottom: 20px;
  }
  .contacto_container{
    gap: 10px;
  } 
  .register p{
    font-size: 10px;
  } 
}
/*//////////////////////////////////////// ANIMACIONES /////////////////////////////////////////////*/
@keyframes spin{
  0%{
    transform: rotate(0deg);
    opacity: 1;
  }
  100%{
    transform: rotate(360deg);
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {  
  /*.contacto_items_container{
    flex-direction: column;
    gap: 5px;
  }
  .contacto_row{
    padding-bottom: 20px;
  }
  .contacto_container{
    gap: 10px;
  }*/ 
}
