/* ====== CONTATO / FOOTER ====== */
.footer {
  padding: 80px 0 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo { height: 52px; margin-bottom: 16px; filter: brightness(10); }
.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
}
.footer-social a svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
.footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item svg {
  width: 18px; height: 18px;
  color: var(--rose-gold-light);
  margin-top: 2px;
  min-width: 18px;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact-item a:hover { color: var(--rose-gold-light); }
.footer-map {
  border-radius: 16px;
  overflow: hidden;
  height: 220px;
}
.footer-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.3) contrast(1.05);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--rose-gold-light); }
