/* ============================================================
   FOOTER.CSS — Rodapé do site
   ============================================================ */

footer {
  background: #0d0c0c;
  padding: 60px 0 40px;
  border-top: 1px solid rgba(184,150,90,0.1);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-logo span { color: var(--gold); }
.footer-logo-img {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-info {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
}
.footer-credit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-credit a { color: var(--gold); text-decoration: none; opacity: 0.7; transition: opacity 0.3s; }
.footer-credit a:hover { opacity: 1; }

/* Responsive */
@media (max-width: 960px) {
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }
}
