/*==================================================
13. FOOTER
==================================================*/

.footer {
  background: linear-gradient(180deg, #003b12, #01280c);
  color: #fff;
  padding: 70px 20px 20px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-col h4 {
  color: #9ace16;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: #9ace16;
}

.footer-col p {
  opacity: 0.85;
  margin: 6px 0;
}

.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  opacity: 0.7;
}

.footer p,
.footer a,
.footer li {
  color: #fff;
}

.footer-logo img {
  width: auto;
  max-height: 50px;
  display: block;
  transition: 0.3s ease;
}

.footer-logo img:hover {
  filter: drop-shadow(0 0 6px rgba(154, 206, 22, 0.6));
  transform: scale(1.03);
}

.footer-col.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateY(-40%);
}

.footer .redes-icons {
  display: flex;
  gap: 12px;
}

.footer .redes-icons a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  background: rgba(154, 206, 22, 0.15);
  color: var(--verde-claro);

  font-size: 18px;

  transition: var(--transition);
}

.footer .redes-icons a:hover {
  background: var(--verde-claro);
  color: var(--verde);
  transform: translateY(-3px);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
