/* Navbar */
.navbar {  
  background-color: #fff;
  padding: .7rem;
  color: #092F57;
  z-index: 9999999;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar .logo {
  font-family: 'Roboto Slab', serif;
  font-size: 1.5rem;

}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-left: 20px;
}

.nav-links a {
  color: var(--azul-oscuro);
  text-decoration: none;
  font-weight: 600;
}

.cta {
  background-color: #203AE9;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: #FFF;
}

.cta:hover {
  background-color: #FF4452;
}

/* Burger Menu (for mobile) */
.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #203AE9;
  border-radius: 5px;
  transition: all 0.3s ease;
}


@media (max-width: 480px) {
  
  .navbar{
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .container {
    flex-direction: column;
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
  }

  .nav-links li {
    margin: 10px 0;
  }
}