/* ===== FOOTER ===== */
.footer {
  background-color: #3E6C3E;
  color: white;
  padding: 50px 0 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.footer-col p,
.footer-col li {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li a {
  color: white;
  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social img {
  height: 30px;
  width: 30px;
  background: white;
  border-radius: 6px;
  padding: 5px;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: white;
  text-decoration: underline;
}

.btn-wsp-footer {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-wsp-footer:hover {
  background-color: #1ebe5d;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  width: 55px;
  height: 55px;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}


/* ===== Responsive ===== */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    min-width: unset;
    width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .mapa-footer iframe {
    height: 200px;
  }
}
