/* NAV PRINCIPAL */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px) saturate(2.5);
  -webkit-backdrop-filter: blur(5px) saturate(2.5);
  position: relative;
  z-index: 10;
  gap: 140px;
  padding: 20px 0;
}

.menu-options {
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.menu-options li {
  list-style: none;
}

.menu-options li a {
  text-decoration: none;
  color: #1c1c1c;
  font-size: 18px;
  font-family: "Nunito", sans-serif;
}

/* Botón "Contáctanos" */
#contactanos-nav {
  color: #fff;
  font-weight: bold;
  padding: 10px 15px;
  background-color: #165eeb;
  border-radius: 15px;
}

/* LOGO */
.enlace {
  max-width: 170px;
}

.enlace img {
  width: 100%;
}

/* Botón hamburguesa (checkbox + label) */
#check {
  display: none; /* ocultamos el checkbox */
}

.checkbtn {
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: none; /* escondido en escritorio */
}

/* --- RESPONSIVE --- */

/* Laptop/medianas */
@media (max-width: 1152px) {
  .main-nav {
    gap: 40px;
  }
  .enlace {
    max-width: 140px;
  }
  .menu-options {
    gap: 30px;
  }
}

/* Tablet / Móvil */
@media (max-width: 976px) {
  .main-nav {
    justify-content: start;
    gap: 20px;
    padding: 20px 0;
  }

  .menu-options {
    position: fixed;
    width: 100%;
    height: calc(100vh - 80px);
    overflow-y: auto;
    background: #002554db;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all 0.5s;
    flex-direction: column;
    padding-top: 30px;
  }

  .menu-options li {
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .menu-options li a {
    font-size: 20px;
    color: #fff;
  }

  .menu-options li a:hover,
  .menu-options li a.active {
    color: #00afd7;
  }

  .enlace {
    height: 40px;
  }

  .enlace img {
    height: 100%;
    width: auto;
  }

  .checkbtn {
    padding-left: 20px;
    display: flex; /* visible en móvil */
  }

  /* Cuando se activa el checkbox, aparece el menú */
  #check:checked ~ ul {
    left: 0;
  }
}

.footer-actual {
    display: flex;
    justify-content: center;
    gap: 92px;
    background-color: #002254;
    padding: 70px 32px;
  }
  .footer-actual p {
    margin: 0;
  }

  .footer-seccion {
    color: #fff;
    font-family: "Nunito", sans-serif;
  }

  .footer-titulo {
    font-weight: bold;
    padding-bottom: 20px;
    font-size: 18px;
    display: block;
    color: #fff;
    text-decoration: none;
  }

  .footer-text {
    display: block;
    padding-bottom: 15px;
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    max-width: 300px;
  }

  .footer-svg-p {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    gap: 8px;
    font-size: 12px;
  }

  .footer-svg-p p{
    padding-bottom: 0;
  }

  @media (max-width: 768px) {
  .footer-actual {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }
  .footer-text, .footer-titulo {
    max-width: 400px;
    text-align: center;
  }

}
