
/* FOOTER MODERNO Y CENTRADO */
.footer {
  background: #ecdcb0;
  border-top: 2px solid #bca16a;
  margin-top: 60px;
  width: 100vw;
  position: relative;
  left: 0;
  bottom: 0;
  font-family: 'Montserrat', sans-serif;
  color: #7a5c2b;
}

.footer-container.footer-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 32px 16px 32px;
  justify-items: center;
  align-items: start;
}
/* COLUMNAS Y MARCA */
.footer-col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer-logo {
  font-size: 2.2rem;
  margin-right: 4px;
}
.footer-nombre {
  color: #b68545;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.footer-desc-text {
  margin-top: 12px;
  font-size: 1.08rem;
  color: #7a5c2b;
  max-width: 340px;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}
/* LINKS Y NAVEGACIÓN */
.footer-nav {
  gap: 10px;
  align-items: center;
}
.footer-nav h4 {
  color: #b68545;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
}
.footer-link {
  color: #b68545;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2px;
  position: relative;
  transition: color 0.2s, letter-spacing 0.2s;
  display: inline-block;
  text-align: center;
}
.footer-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #b68545;
  transition: width 0.3s;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.footer-link:hover {
  color: #987134;
  letter-spacing: 1px;
}
.footer-link:hover::after {
  width: 100%;
}
/* REDES SOCIALES */
.footer-social h4 {
  color: #b68545;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
}
.footer-social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #f5e6c6;
  transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
  font-size: 1.7rem;
  color: #b68545;
  box-shadow: 0 0 0 rgba(186,133,69,0);
}
.social-link i {
  font-size: 2rem;
  color: #b68545;
  display: inline-block;
  vertical-align: middle;
  transition: color 0.2s;
}
.social-link:hover {
  background: #ecdcb0;
  color: #987134;
  box-shadow: 0 4px 16px rgba(186,133,69,0.15);
  transform: translateY(-4px) scale(1.08);
}
.social-link:hover i {
  color: #987134;
}
/* CONTACTO */
.footer-contact h4 {
  color: #b68545;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  text-align: center;
}
.footer-contact {
  font-size: 1.05rem;
  color: #7a5c2b;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  align-items: center;
  text-align: center;
}
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
  align-items: center;
  text-align: center;
}
.footer-contact-label {
  color: #7a5c2b;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  text-align: center;
  letter-spacing: 0.5px;
}
.footer-contact-info {
  color: #a17c3b;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  text-align: center;
}
/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 24px;
  font-size: 1.08rem;
  color: #7a5c2b;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

@media (max-width: 1000px) {
  .footer-container.footer-row {
    gap: 24px;
    padding: 32px 12px 12px 12px;
  }
  .footer-col {
    min-width: 160px;
  }
}
@media (max-width: 800px) {
  .footer-container.footer-row {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: stretch;
    padding: 24px 6px 8px 6px;
  }
  .footer-col {
    min-width: 0;
    gap: 14px;
  }
  .footer-brand-row {
    gap: 10px;
  }
}

@media (max-width: 500px) {
  .footer-container.footer-row {
    gap: 12px;
    padding: 16px 2px 4px 2px;
  }
  .footer-brand-row {
    gap: 6px;
  }
  .footer-nombre {
    font-size: 1.2rem;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-desc-text {
    font-size: 0.95rem;
    max-width: 100%;
  }
  .footer-nav h4,
  .footer-social h4,
  .footer-contact h4 {
    font-size: 1rem;
  }
  .footer-link {
    font-size: 0.98rem;
  }
  .footer-contact-label {
    font-size: 0.98rem;
  }
  .footer-contact-info {
    font-size: 0.95rem;
  }
  .footer-bottom {
    font-size: 0.9rem;
  }
  .footer-social-links {
    gap: 8px;
  }
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
  }
}