/* ============================================================
   🌿 FOOTER RAÍCES — Estilo Figma
   ============================================================ */

.footer {
  background-color: #8a9a22; /* verde oliva */
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 2.5rem 4rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1440px;
  margin: 0 auto;
  gap: 2rem;
}

/* --- Logo --- */
.footer-logo {
  font-family: 'Caprasimo', cursive;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* --- Columnas --- */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 160px;
}

.footer-col h4 {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  margin-bottom: 0.2rem;
}

.footer-col a,
.footer-col p {
  font-size: 14px;
  color: #f0f0f0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

/* --- Redes sociales --- */
.redes .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.4rem;
}

.redes img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  transition: transform 0.2s ease;
  object-fit: contain;
}

.redes img:hover {
  transform: scale(1.1);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-col {
    align-items: center;
  }
}
