/* Navbar */
#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center; 
  font-family: var(--primary-font);
  height: 140px;
}
#first_line{
  background: linear-gradient(90deg, transparent 0%, #2BAC59 50%, transparent 100%);
  height: 2px;
  margin: 0 auto;
  width: 100%;
}
#principal_links {
  display: flex;
  list-style-type: none;
  gap: 25px;
}
#principal_links a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: -1px; 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  position: relative; 
  transition: opacity 0.4s ease, text-shadow 0.4s ease; 
}
#principal_links a:hover {
  opacity: 0.8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4); 
}
#principal_links a::after {
  content: '';
  width: 0;
  height: 2px;
  background: linear-gradient(70deg, #0A0C10 0%, #2BAC59 100%);
  display: block;
  transition: width 0.5s; 
}
#principal_links a:hover::after {
  width: 100%;
}
#logo_principal {
  height: 112.5px;
  width: 200px;
}
@media (min-width: 320px) and (max-width: 600px) {
  #navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    #principal_links a{
      font-size: .8rem;
    }
    #logo_principal{
      width: 150px;
      height: auto;
    }
  }
}