.navbar {
  display: flex;
  justify-content: center;
  background-color: #003366;
  padding: 15px 0;
}

.navbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  margin: 0 25px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  transform: translateY(-3px);
  color: #00bcd4;
}

.nav-text-es {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-text-en {
  font-size: 12px;
  opacity: 0.7;
  text-transform: capitalize;
}

.navbar a.active {
  color: #ffdd57;
  text-shadow: 0 0 10px #ffdd57, 0 0 20px #ffdd57;
  animation: pulseGlow 1.5s infinite alternate;
}