/* ============================================================
   NEXOS ACERVO — style.css
   Estilos compartilhados por todas as páginas do site.
   Estilos específicos de uma única página continuam dentro
   da própria página, em um bloco <style> local.
   ============================================================ */

/* ---------- Header: navegação, dropdown e botões ---------- */
.hnav-link{ color:#DCEAE5; transition:color .15s ease; }
.hnav-link:hover{ color:#fff; }
.hdrop-item:hover{ background:rgba(14,107,88,.07); }
.hbtn-ged{ border:1px solid rgba(245,243,236,.25); background:transparent; color:#DCEAE5; transition:border-color .2s ease, background .2s ease, color .2s ease; }
.hbtn-ged:hover{ border-color:#0E6B58; background:rgba(14,107,88,.12); color:#fff; }
.hbtn-wa{ background:#25D366; color:#0b3d24; transition:background .2s ease, color .2s ease, transform .2s ease; box-shadow:0 6px 18px -4px rgba(37,211,102,.55); }
.hbtn-wa:hover{ background:#1eb757; color:#fff; transform:translateY(-1px); }

/* ---------- Header: mega-menu ---------- */
.mega-menu{
  opacity:0; visibility:hidden; transform:translateY(8px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu{
  opacity:1; visibility:visible; transform:translateY(0);
}
#mobile-menu{ transition:max-height .3s ease; }

/* ---------- Base tipográfica ---------- */
html{ scroll-behavior:smooth; }
body{ font-family:'Helvetica Neue',Helvetica,Arial,sans-serif; }
.font-heading{ font-family:'Lora',Georgia,serif; }
.font-mono-data{ font-family:'JetBrains Mono', ui-monospace, monospace; }
::selection{ background:#F2994A; color:#fff; }

/* ---------- Performance: pausa animações fora da tela ---------- */
.anim-off, .anim-off *{ animation-play-state:paused !important; }
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; scroll-behavior:auto !important; }
}
