/* =========================================================
   SHARED CHROME — topbar, header, mobile menu, footer, WhatsApp float
   Loaded on every page. Mirrors the duplicated CSS from the static site.
   ========================================================= */

/* TOPBAR */
.topbar{background:var(--forest-deep);color:var(--mint);font-size:.82rem}
.topbar .wrap{display:flex;justify-content:space-between;padding:.55rem 24px;flex-wrap:wrap;gap:.5rem}
.topbar a{color:var(--gold-light);font-weight:600}

/* STICKY HEADER */
header.site-header{position:sticky;top:0;z-index:100;background:rgba(246,242,233,.92);backdrop-filter:blur(12px);box-shadow:0 1px 0 var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.logo{display:flex;align-items:center}
.logo img{display:block;height:64px;width:auto}
.menu{display:flex;gap:1.5rem;font-weight:500;font-size:.92rem;align-items:center}
.menu a:hover,.menu .active{color:var(--forest)}
.menu .active{font-weight:600}
.nav-cta{display:flex;align-items:center;gap:.8rem}
.burger{display:none;background:none;border:0;cursor:pointer;width:34px;height:34px;flex-direction:column;justify-content:center;gap:5px}
.burger span{display:block;height:2px;background:var(--forest);border-radius:2px}
@media(max-width:880px){
  .menu{display:none}
  .burger{display:flex}
  .nav-cta .btn{display:none}
}

/* MOBILE MENU */
.mobile-menu{position:fixed;inset:0;background:var(--cream);z-index:200;padding:5rem 2rem 2rem;display:none;flex-direction:column;gap:1rem;font-size:1.2rem;overflow-y:auto}
.mobile-menu.open{display:flex}
.mobile-menu .close{position:absolute;top:1.2rem;right:1.6rem;background:none;border:0;font-size:2rem;cursor:pointer;color:var(--forest)}
.mobile-menu a{padding:.6rem 0;border-bottom:1px solid var(--line);color:var(--text);font-weight:500}
.mobile-menu a.btn{border-bottom:0;margin-top:1rem;justify-content:center;color:var(--cream)}

/* FOOTER */
footer.site-footer{background:var(--forest-deep);color:#B9C6C0;padding:3.5rem 0 1.5rem;font-size:.92rem}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;gap:2rem;margin-bottom:2rem}
.site-footer h5{font-family:var(--display);color:var(--cream);font-size:1.05rem;margin-bottom:.8rem;font-weight:500}
.site-footer a{display:block;padding:.25rem 0;color:#B9C6C0}
.site-footer a:hover{color:var(--gold-light)}
.foot-brand img{height:64px;margin-bottom:.8rem}
.foot-brand p{margin-bottom:1rem;max-width:32ch}
.foot-soc{display:flex;gap:.6rem}
.foot-soc a{width:36px;height:36px;border-radius:50%;display:grid;place-items:center;border:1px solid rgba(255,255,255,.15);padding:0}
.foot-bot{border-top:1px solid rgba(255,255,255,.1);padding-top:1.2rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.6rem;font-size:.84rem;color:#8FA29A}
@media(max-width:880px){.foot-grid{grid-template-columns:1fr 1fr}}
@media(max-width:540px){.foot-grid{grid-template-columns:1fr}}

/* WHATSAPP FLOAT */
.wa-float{position:fixed;bottom:24px;right:24px;width:60px;height:60px;background:#25D366;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 6px 20px rgba(37,211,102,.4);z-index:999;transition:.3s}
.wa-float:hover{transform:scale(1.08);box-shadow:0 8px 24px rgba(37,211,102,.55);color:#fff}
.wa-float::after{content:"";position:absolute;inset:0;border-radius:50%;border:3px solid #25D366;animation:wa-pulse 2s infinite;pointer-events:none}
@keyframes wa-pulse{0%{transform:scale(1);opacity:.7}100%{transform:scale(1.6);opacity:0}}
@media(max-width:560px){.wa-float{width:54px;height:54px;bottom:18px;right:18px}.wa-float svg{width:26px;height:26px}}
