/* MENÚ */
.main-header {
  background-color: #0082C9;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 30px;
}

.logo-link img {
  width: 260px;
  height: auto;
  margin-bottom: 10px;
}

.navigation {
  width: 100%;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.nav-list li a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-list li a:hover {
  color: #FFC107;
}

/* FOOTER */
.main-footer {
  background-color: #0082C9;
  color: #FFFFFF;
  padding: 30px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left img {
  width: 150px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.footer-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact {
  text-align: right;
  font-size: 14px;
}

.footer-contact p {
  margin-bottom: 5px;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    gap: 15px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
    margin-top: 20px;
  }
}

@media (max-width: 480px) {
  .logo-link img {
    width: 180px;
  }
}
