/* ===== FOOTER ===== */
footer {
  background: var(--green-deep);
  background-image: linear-gradient(160deg, #14532d 0%, #166534 60%, #15803d 100%);
  color:rgba(255,255,255,.55);
  padding:4rem 5% 2rem;
  position:relative; overflow:hidden;
}
footer::before {
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:40px 40px;
  pointer-events:none;
}
.footer-bg-sym {
  position:absolute; pointer-events:none;
  font-family:'Fraunces',serif; font-weight:900;
  color:rgba(255,255,255,0.04); line-height:1;
}
.footer-inner { position:relative; z-index:1; }
.footer-top {
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:3rem; padding-bottom:3rem;
  border-bottom:1px solid rgba(255,255,255,.1);
}


.footer-logo-wrap {
  display:inline-flex; align-items:center; justify-content:center;
  background:var(--green); border-radius:10px;
  padding:10px 16px 8px; margin-bottom:1.1rem;
}
.footer-logo-text {
  font-family:'Figtree',sans-serif; font-size:1.35rem; font-weight:800;
  color:#fff; letter-spacing:-0.03em; line-height:1; display:flex; flex-direction:column;
}
.footer-logo-text span { font-weight:500; font-size:0.75rem; letter-spacing:0.01em; display:block; }


.footer-brand p { font-size:.84rem; line-height:1.75; max-width:230px; }
.footer-col h4 {
  font-family:'Figtree',sans-serif; font-size:.75rem;
  font-weight:700; color:rgba(255,255,255,.9);
  margin-bottom:1.1rem; letter-spacing:.08em; text-transform:uppercase;
}
.footer-col a { display:block; font-size:.84rem; color:rgba(255,255,255,.45); text-decoration:none; margin-bottom:.6rem; transition:color .2s; }
.footer-col a:hover { color:var(--green-mid); }
.social-links { display:flex; gap:.6rem; margin-top:1.4rem; }
.soc-link {
  width:34px; height:34px; border-radius:8px;
  background:rgba(255,255,255,.08); display:flex;align-items:center;justify-content:center;
  transition:background .2s; text-decoration:none!important;
}
.soc-link:hover { background:var(--green); }
.footer-bottom {
  padding-top:2rem;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:1rem; font-size:.78rem;
}
.footer-bottom a { color:rgba(255,255,255,.3); text-decoration:none; }
.footer-bottom a:hover { color:var(--green-mid); }

/* WA */
.wa-float {
  position:fixed; bottom:2rem; right:2rem; z-index:999;
  width:52px; height:52px; border-radius:50%; background:#25D366;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45); text-decoration:none;
  transition:transform .2s; animation:waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform:scale(1.1); }
@keyframes waPulse{0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.45)}50%{box-shadow:0 8px 30px rgba(37,211,102,.7)}}
