/*FOOTER---------------------------------------------------------------*/

footer {
  background-color: #144A4A;
  color: white;
  padding: 40px 0px 20px;
  font-family: Arial, sans-serif;
  margin: 0 auto;
  width: 100%;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-redes {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo-redes .logo {
  width: 240px;
  height: auto;
}

.redes a img {
  width: 28px;
  margin: 0 5px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}
.redes a img:hover {
  transform: scale(1.2);
}

.footer-columns {
  display: flex;
  flex: 2 1 600px;
  justify-content: flex-end;
  gap: 80px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .footer-columns {
    justify-content: center;
    gap: 0px;
  }
}

.footer-col {
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
}