/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.68);
  padding: 4rem 2rem 2rem;
}

.footer-inner { max-width: 1200px; margin: 0 auto; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: .05em;
}
.footer-brand h2 span { color: var(--orange); }
.footer-brand p        { font-size: .83rem; line-height: 1.75; max-width: 278px; }
.footer-brand .mono-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: .66rem;
  color: var(--orange2);
  margin-top: .8rem;
  display: block;
  opacity: .65;
}

.footer-col h4 {
  color: var(--orange2);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul          { list-style: none; }
.footer-col li          { margin-bottom: .5rem; }
.footer-col a           { color: rgba(255,255,255,.58); text-decoration: none; font-size: .83rem; transition: color .2s; }
.footer-col a:hover     { color: var(--orange2); }
.footer-col .contact-item { font-size: .82rem; margin-bottom: .5rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

.footer-socials { display: flex; gap: .65rem; }
.social-icon.fb { color:#1877F2; }
.social-icon.fb:hover { background:#1877F2 !important; color:#fff !important; }
.social-icon.wa { color:#25D366; }
.social-icon.wa:hover { background:#25D366 !important; color:#fff !important; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.17);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.52);
  font-size: .76rem;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}
.social-icon:hover { border-color: var(--orange); color: var(--orange); }

/* ── Responsive ── */
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }




