.footer-section {
  background: #0b0b0b;
  color: #f0ece4;
  padding: 80px 8% 30px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 40px;
}

/* BRAND */
.footer-logo {
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: #c9a84c;
}

.footer-logo span {
  color: #f0ece4;
}

.footer-text {
  margin-top: 15px;
  line-height: 1.7;
  color: rgba(240,236,228,0.7);
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
  color: #c9a84c;
  margin-bottom: 15px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(240,236,228,0.8);
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #c9a84c;
  transform: translateX(5px);
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 10px;
  color: rgba(240,236,228,0.7);
}

.footer-social,
.footer-whatsapp {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.3s;
}

.footer-social:hover,
.footer-whatsapp:hover {
  background: #c9a84c;
  color: #0b0b0b;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-size: 0.8rem;
  color: rgba(240,236,228,0.5);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}