/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #ffffff;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
}

/* ===== FUENTE ===== */
.navbar, .menu li a, .menu-toggle {
  font-family: Candara, Calibri, Segoe, "Segoe UI", Arial, sans-serif;
}

/* ===== BOTÓN MENÚ ===== */
.menu-toggle {
  width: 100%;
  height: 45px;

  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;

  background: none;
  border: none;
  cursor: pointer;

  font-weight: bold;
  color: #162B4E;
}

/* ===== MENÚ PC ===== */
.menu {
  display: flex;
  justify-content: center;
  align-items: center;

  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  width: auto;
}

.menu li a {
  display: block;
  padding: 10px 15px;

  text-decoration: none;
  color: #162B4E;
  font-weight: bold;
}

.menu li a:hover {
  color: #329fce;
}

/* ===== MÓVIL ===== */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: all 0.3s ease;
  }

  .menu.active {
    max-height: 300px;
    opacity: 1;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 45px;
    padding: 0;

    border-top: 1px solid #ddd;
  }

}