* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

header {
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
}

/* ================= HEADER SUPERIOR ================= */
/* Logo del colegio (izquierda) */
.logo-institucional img {
  max-height: 90px; /* Limita la altura del logo */
  object-fit: contain; /* Asegura que no se distorsione */
}

/* Logo de la Diócesis (derecha) */
.logo-diocesis img {
  max-height: 70px; /* Tamaño del logo en pantallas grandes */
  object-fit: contain; /* Mantiene la proporción */
}

/* Logo cuadrado de la diócesis en pantallas pequeñas */
.logo-completo {
  display: block;
}

.logo-cuadrado {
  display: none; /* ocultamos en pantallas grandes */
}

/* Pantallas pequeñas */
@media (max-width: 768px) {
  .container {
    justify-content: center; /* Centra los logos en pantallas pequeñas */
  }
  
  .logo-institucional,
  .logo-diocesis {
    max-width: 150px; /* Limita el tamaño de los logos en móvil */
  }

  .logo-diocesis img {
    max-width: 110%; /* Hace que el logo de la Diócesis sea más grande */
  }

  .logo-completo{
    display: none;
  }
  
  .logo-cuadrado{
    display: block;
  }
}



/* BARRA MENU */
.container_menu {
  width: 100%;
  height: 70px;
  background: #0288D1;
  padding: 0px 20px;
}

.menu {
  max-width: 1200px;
  margin: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 480px){
  .menu {
  margin: auto;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
}

nav {
  height: 100%;
}

nav > ul {
  height: 100%;
  display: flex;
}

nav a {
  text-decoration: none;
  color: white;
}

nav ul li {
  height: 100%;
  list-style: none;
  position: relative;
}

nav > ul > li:first-child > a {
  background-image: url(/assets/img/homeIcon.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px 40px;
}

nav > ul > li:first-child:hover > a {
  background-image: url(/assets/img/homeIcon.png);
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 20px 40px;
}

nav > ul > li > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  padding: 14px;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 300ms ease;
}

nav > ul > li > a:hover {
  transform: scale(1.1);
  background-color: #4FC3F7;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}


/* SUBMENU */
nav ul li ul {
  width: 200px;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  position: absolute;
  top: 90px;
  left: -5px;
  padding: 14px 0px;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
  transition: all 300ms ease;
}

nav ul li:hover ul {
  visibility: visible;
  opacity: 1;
  top: 70px; 
}

nav ul li ul::before {
  content: ' ';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid white;
  position: absolute;
  top: -12px;
  left: 20px;
}

nav ul li ul li a {
  display: block;
  color: #0288D1;
  padding: 6px 14px;
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  transition: all 300ms ease;
}

nav ul li ul li a:hover {
  background-color: #0288D1;
  color: #E1F5FE;
  transform: scale(1.1);
  padding-left: 30px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

/* ICONO MENU */
.icon_menu {
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; 
}

/* CHECK */

#label_check {
  display: none;
  height: 100%; 
  align-items: center;
  justify-content: center;
}

#check_menu {
  display: none;
}

/* RESPONSIVE*/
@media screen and (max-width: 720px) {
  .escudo img {
    max-width: 65px;
  }

  .logo-completo {
    display: none !important;
  }

  .logo-cuadrado {
    display: inline-block !important;
    max-width: 65px !important;
  }

  .menu {
    max-width: 100%;
    margin: 0;
  }
  .container_menu {
    height: 50px;
    background: #0288D1;
  }

  .menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
  }

  #label_check {
    display: flex; /* Mostrar el label (hamburguesa) */
    height: 100%;
    align-items: center;
    justify-content: center;
  }
  .icon_menu {
    display: flex; 
    align-items: center;
    justify-content: center;
    
  }

  nav > ul {
    flex-direction: column;
    background-color: #0288D1;
    position: fixed;
    left: 0;
    top: 140px;
    width: 100%;
    height: 0%;
    transition: all 300ms ease;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
  }

  #check_menu:checked ~ nav > ul {
    height: 300px;
    visibility: visible;
    opacity: 1;
    top: 165px;
  }

  nav ul li ul {
    left: 90px;
  }

  nav > ul > li:hover ul {
    top: 50px;
  }

  nav > ul > li:first-child a {
    background-position: 20px;
  }

  #selected {
    transform: scale(1);
  }
}