/* =========================================================
   AEFoeste — Template institucional (sem frameworks)
   ========================================================= */

/* ---------- Reset leve ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

/* ---------- Variáveis ---------- */
:root{
  --green-900:#0a3e22;
  --green-800:#0d532d;
  --green-700:#0f6b3a;
  --green-600:#15914e;

  --bg-950:#070b09;
  --bg-900:#0b100d;
  --bg-850:#0e1511;

  --card: rgba(255,255,255,.05);
  --card-2: rgba(255,255,255,.035);

  --text: #eef4ef;
  --muted: #c2cec7;
  --muted-2: rgba(238,244,239,.80);

  --line: rgba(255,255,255,.12);

  --shadow: 0 14px 34px rgba(0,0,0,.40);
  --shadow-soft: 0 10px 22px rgba(0,0,0,.28);

  --radius: 14px;
  --max: 1120px;

  --focus: rgba(126, 255, 185, .35);
  --glow: rgba(126,255,185,.18);

  --t: 180ms ease;
}

/* ---------- Base ---------- */
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(15,107,58,.20), transparent 60%),
    radial-gradient(900px 360px at 85% 10%, rgba(21,145,78,.14), transparent 60%),
    linear-gradient(180deg, var(--bg-950), var(--bg-850) 55%, var(--bg-950));
  color: var(--text);
  line-height: 1.55;
}

.container{
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: 10px;
}

@media (prefers-reduced-motion: reduce){
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- Acessibilidade ---------- */
.skip-link{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background: rgba(10,16,13,.96);
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 99999;
}

/* ---------- Topbar ---------- */
.topbar{
  background: #070d0a;
  border-bottom: 1px solid rgba(255,255,255,.10);
  font-size: 13px;
}
.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 8px 0;
}
.topbar .left,
.topbar .right{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}
.topbar a{
  color: var(--muted);
  font-weight: 700;
}
.topbar a:hover{ color: var(--text); }

/* Instagram link */
.ig-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  font-weight: 900;
  transition: var(--t);
}
.ig-link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(126,255,185,.22);
}

/* ---------- Header / Navbar ---------- */
header{
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(11,16,13,.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand-mark{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), #2aa45f);
  box-shadow: 0 12px 24px rgba(0,0,0,.45);
}
.brand-txt{ line-height: 1.05; }
.brand-txt strong{
  letter-spacing: .3px;
  font-size: 16px;
}
.brand-txt span{
  display:block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

/* Menu desktop */
.menu{
  display:flex;
  align-items:center;
  gap: 4px;
}
.menu > a{
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: var(--t);
}
.menu > a:hover{
  color: var(--text);
  border-color: rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.menu a[aria-current="page"]{
  color: var(--text);
  border-color: rgba(126,255,185,.22);
  background: rgba(15,107,58,.22);
  box-shadow: 0 0 0 4px rgba(126,255,185,.06);
}

/* Mobile menu */
.burger{
  display:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  transition: var(--t);
}
.burger:hover{ background: rgba(255,255,255,.06); }



@media (max-width: 980px){
  .menu{ display:none; }
  .burger{ display:inline-flex; }
}

/* ---------- Hero (Home) ---------- */
.hero{
  position: relative;
  min-height: 360px;
  display:flex;
  align-items:center;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(7,11,9,.90), rgba(7,11,9,.30)),
    url("hero.jpg") center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background: radial-gradient(900px 420px at 30% 25%, rgba(21,145,78,.14), transparent 55%);
}
.hero .inner{
  position:relative;
  padding: 54px 0;
}
.kicker{
  color: rgba(210,235,220,.92);
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1{
  margin: 10px 0 10px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.06;
  letter-spacing: -0.02em;
}
.hero p{
  margin: 0;
  max-width: 70ch;
  color: var(--muted-2);
}
.actions{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ---------- Botões ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  font-weight: 900;
  font-size: 13px;
  transition: var(--t);
}
.btn:hover{
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.btn.primary{
  border-color: rgba(126,255,185,.22);
  background: rgba(15,107,58,.26);
  box-shadow: 0 0 0 4px rgba(126,255,185,.06);
}
.btn.primary:hover{
  background: rgba(15,107,58,.34);
  box-shadow: 0 0 0 6px rgba(126,255,185,.08);
}

/* ---------- Conteúdo ---------- */
main{ padding: 26px 0 46px; }
.spacer{ height: 12px; }

.section-title{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap: 12px;
  margin: 0 0 14px;
}
.section-title h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.section-title .hint{
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

/* Layout home: coluna principal + sidebar */
.grid{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 16px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--t);
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.card h3{
  margin: 0 0 8px;
  font-size: 16px;
}
.card p{
  margin: 0;
  color: var(--muted-2);
}

.card.subtle{ background: var(--card-2); }
.card.accent{
  background: linear-gradient(180deg, rgba(15,107,58,.18), rgba(255,255,255,.04));
  border-color: rgba(126,255,185,.18);
}

/* Bullets (Objetivos) */
.bullets{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
}
.bullets li{
  position: relative;
  padding-left: 26px;
  color: var(--muted-2);
}
.bullets li::before{
  content:"";
  position:absolute;
  left:0; top: .45em;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: rgba(126,255,185,.35);
  box-shadow: 0 0 0 4px rgba(126,255,185,.10);
}

/* Quick links */
.quick-links{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.q{
  display:inline-flex;
  align-items:center;
  padding: 9px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(238,244,239,.92);
  font-weight: 900;
  font-size: 13px;
  transition: var(--t);
}
.q:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(126,255,185,.22);
  transform: translateY(-1px);
}

/* Logos */
.logos{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  align-items:center;
}
.logo-box{
  width: 128px;
  height: 66px;
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,.18);
  background: rgba(255,255,255,.03);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  transition: var(--t);
}
.logo-box:hover{
  border-color: rgba(126,255,185,.25);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}

/* ---------- Página interna ---------- */
.page-hero{
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(90deg, rgba(7,11,9,.92), rgba(7,11,9,.40)),
    radial-gradient(950px 360px at 15% 15%, rgba(15,107,58,.22), transparent 60%);
}
.page-hero h1{
  margin: 0 0 6px;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.page-hero p{
  margin: 0;
  color: var(--muted-2);
}

.breadcrumbs{
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 10px;
}
.breadcrumbs a{ color: var(--muted); }
.breadcrumbs a:hover{ color: var(--text); }

/* Tabela (diretorias) */
.table{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
}
.table th, .table td{
  padding: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  vertical-align: top;
}
.table th{
  text-align: left;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}
.table tr:last-child td{ border-bottom: 0; }

/* ---------- Footer (novo, limpo e profissional) ---------- */
.footer{
  background: #070d0a;
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 22px 0;
}

.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
@media (max-width: 980px){
  .footer-top{ flex-direction: column; align-items: flex-start; }
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-mark{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-700), #2aa45f);
  box-shadow: 0 10px 20px rgba(0,0,0,.35);
}
.footer-name{ font-size: 14px; letter-spacing: .3px; }
.footer-sub{
  margin-top: 4px;
  color: rgba(194,206,199,.9);
  font-weight: 700;
  font-size: 12px;
}

.social{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(238,244,239,.92);
  font-weight: 900;
  font-size: 13px;
  transition: var(--t);
}
.social:hover{
  background: rgba(255,255,255,.07);
  border-color: rgba(126,255,185,.25);
  box-shadow: 0 0 0 6px rgba(126,255,185,.06);
}

.footer-mid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
  padding: 16px 0;
}
@media (max-width: 980px){
  .footer-mid{ grid-template-columns: 1fr; }
}

.footer-col h4{
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(194,206,199,.95);
}
.footer-col p{
  margin: 0 0 8px;
  color: rgba(194,206,199,.9);
  font-weight: 700;
}
.footer-col a{ color: rgba(194,206,199,.9); }
.footer-col a:hover{ color: var(--text); }

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.footer-links a{
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  font-weight: 900;
  font-size: 13px;
  transition: var(--t);
}
.footer-links a:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(126,255,185,.22);
  transform: translateY(-1px);
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 12px;
  color: rgba(194,206,199,.85);
  font-weight: 700;
  font-size: 13px;
}
/* ===== Boletim: toolbar, cards e inputs ===== */
.toolbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 12px;
  margin: 18px 0 16px;
  flex-wrap: wrap;
}
.tool{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.label{
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
}
.chip{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(238,244,239,.90);
  font-weight: 900;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: 180ms ease;
}
.chip:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(126,255,185,.22);
  transform: translateY(-1px);
}
.chip.is-active{
  background: rgba(15,107,58,.22);
  border-color: rgba(126,255,185,.22);
  box-shadow: 0 0 0 6px rgba(126,255,185,.06);
}

.input{
  width: min(420px, 100%);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 800;
  padding: 10px 12px;
  outline: none;
  transition: 180ms ease;
}
.input::placeholder{ color: rgba(194,206,199,.7); font-weight: 700; }
.input:focus{
  border-color: rgba(126,255,185,.22);
  box-shadow: 0 0 0 6px rgba(126,255,185,.06);
}

/* Cards do boletim */
.cards{ display:grid; gap: 12px; }
.b-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: 180ms ease;
}
.b-card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.b-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  flex-wrap: wrap;
}
.b-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.b-desc{
  margin: 10px 0 0;
  color: var(--muted-2);
  font-weight: 700;
}
.b-actions{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Acessibilidade: label invisível */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
/* ===== Diretorias: layout por gestão + cards de cargos ===== */
.mgmt-grid{
  display:grid;
  gap: 14px;
}
.mgmt{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: 180ms ease;
}
.mgmt:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.mgmt-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.mgmt-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.mgmt-sub{
  margin: 6px 0 0;
  color: var(--muted-2);
  font-weight: 700;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(126,255,185,.18);
  background: rgba(15,107,58,.18);
  color: rgba(210,235,220,.95);
  font-weight: 900;
  font-size: 12px;
}

.roles{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (max-width: 720px){
  .roles{ grid-template-columns: 1fr; }
}

.role{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px;
  transition: 180ms ease;
}
.role:hover{
  border-color: rgba(126,255,185,.18);
  background: rgba(255,255,255,.05);
  transform: translateY(-1px);
}
.role-top{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 10px;
}
.role-top h3{
  margin: 0;
  font-size: 14px;
  letter-spacing: .01em;
}
.role-badge{
  font-size: 11px;
  font-weight: 900;
  color: rgba(194,206,199,.95);
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.role-name{
  margin: 10px 0 0;
  font-weight: 900;
  color: rgba(238,244,239,.92);
}
/* ===== Eventos: cards com coluna de data/horário ===== */
.e-card{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: 180ms ease;
}
.e-card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}
.e-top{
  display:grid;
  grid-template-columns: 160px 1fr auto;
  gap: 14px;
  align-items:start;
}
@media (max-width: 900px){
  .e-top{ grid-template-columns: 1fr; }
}

.e-when{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  border-radius: 14px;
  padding: 12px;
}
.e-date{
  font-weight: 1000;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.e-time{
  margin-top: 6px;
  color: var(--muted-2);
  font-weight: 800;
  font-size: 13px;
}

.e-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.e-desc{
  margin: 10px 0 0;
  color: var(--muted-2);
  font-weight: 700;
}
.e-tags{
  margin-top: 10px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.e-actions{
  display:flex;
  align-items:flex-start;
}
@media (max-width: 900px){
  .e-actions{ justify-content:flex-start; }
}
/* ================= DIRETORIA ================= */

.mgmt {
  margin-bottom: 48px;
}

.mgmt-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.mgmt-title {
  margin: 0;
  font-size: 1.4rem;
}

.mgmt-sub {
  margin: 4px 0 0;
  color: #9fb3aa;
  font-size: .95rem;
}

.pill {
  background: #1f3d32;
  color: #bff0d3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
}

.pill.outline {
  background: transparent;
  border: 1px solid #2f4a3f;
  color: #9fd8b8;
}

.roles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.roles-highlight .role {
  background: linear-gradient(180deg, #111815, #0c110f);
  border: 1px solid rgba(255,255,255,.12);
}

.role {
  background: #0f1512;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 16px;
}

.role h3 {
  margin: 0;
  font-size: .95rem;
  color: #9fd8b8;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.role-name {
  margin: 6px 0 2px;
  font-weight: 600;
}

.role-meta {
  font-size: .85rem;
  color: #9fb3aa;
}

.role.muted {
  opacity: .85;
}
/* =========================================================
   HERO — refinamento estético institucional (upgrade visual)
   ========================================================= */

/* Overlay em gradiente (mais contraste e leitura) */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(7,11,9,.55),
    rgba(7,11,9,.82)
  );
  z-index:0;
}

/* Camada de conteúdo acima do overlay */
.hero .inner{
  position:relative;
  z-index:1;
}

/* Eyebrow / kicker mais institucional */
.kicker{
  font-size: 11px;
  letter-spacing: .22em;
  color: #9fd8b8;
  margin-bottom: 6px;
}

/* Título mais forte e autoritativo */
.hero h1{
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 28px rgba(0,0,0,.45);
}

/* Subtítulo mais respirado */
.hero p{
  font-size: 15px;
  line-height: 1.7;
  max-width: 64ch;
  margin-top: 6px;
}

/* Hierarquia de botões */
.actions{
  margin-top: 22px;
}

.btn.primary{
  background: linear-gradient(
    180deg,
    rgba(21,145,78,.42),
    rgba(15,107,58,.55)
  );
  border-color: rgba(126,255,185,.35);
  box-shadow:
    0 14px 34px rgba(0,0,0,.45),
    0 0 0 6px rgba(126,255,185,.08);
}

.btn.primary:hover{
  background: linear-gradient(
    180deg,
    rgba(21,145,78,.55),
    rgba(15,107,58,.68)
  );
  box-shadow:
    0 18px 40px rgba(0,0,0,.55),
    0 0 0 8px rgba(126,255,185,.12);
}

/* Botões secundários mais discretos */
.btn:not(.primary){
  opacity: .9;
}

/* Microanimações de entrada */
.hero h1,
.hero p,
.actions{
  animation: heroFadeUp .7s ease both;
}

.hero p{ animation-delay: .08s; }
.actions{ animation-delay: .16s; }

@keyframes heroFadeUp{
  from{
    opacity:0;
    transform: translateY(14px);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* Ajustes mobile */
@media (max-width: 720px){
  .hero{
    min-height: 320px;
  }

  .hero h1{
    font-size: clamp(26px, 7vw, 34px);
  }

  .hero p{
    font-size: 14px;
  }
}
/* =========================================================
   ANIMAÇÃO INSTITUCIONAL GLOBAL — AEFoeste
   Impactante, elegante e reutilizável
   ========================================================= */

/* Base: tudo que "entra" na tela */


/* Versão mais forte (hero / page-hero) */
@keyframes aefoeste-hero {
  0% {
    opacity: 0;
    transform: translateY(32px) scale(.97);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    transform: translateY(-4px) scale(1.01);
    filter: blur(0);
  }
  100% {
    transform: none;
  }
}

/* ===== HERO HOME ===== */
.hero .kicker,
.hero h1,
.hero p,
.hero .actions {
  animation: aefoeste-hero .85s cubic-bezier(.2,.8,.2,1) both;
}

.hero h1 { animation-delay: .05s; }
.hero p  { animation-delay: .14s; }
.hero .actions { animation-delay: .22s; }

/* ===== PAGE HERO (todas as páginas internas) ===== */
.page-hero h1,
.page-hero p,
.page-hero .breadcrumbs {
  animation: aefoeste-reveal .75s cubic-bezier(.2,.8,.2,1) both;
}

.page-hero h1 { animation-delay: .06s; }
.page-hero p  { animation-delay: .14s; }
.page-hero .breadcrumbs { animation-delay: 0s; }

/* ===== SEÇÕES INTERNAS ===== */
.section-title,
.mgmt,
.card,
.b-card,
.e-card {
  animation: aefoeste-reveal .7s cubic-bezier(.2,.8,.2,1) both;
}

/* Pequeno stagger automático */
.mgmt:nth-child(2),
.card:nth-child(2),
.b-card:nth-child(2),
.e-card:nth-child(2) { animation-delay: .06s; }

.mgmt:nth-child(3),
.card:nth-child(3),
.b-card:nth-child(3),
.e-card:nth-child(3) { animation-delay: .12s; }

.mgmt:nth-child(4),
.card:nth-child(4),
.b-card:nth-child(4),
.e-card:nth-child(4) { animation-delay: .18s; }

/* ===== INTERAÇÃO: hover mais vivo ===== */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover {
  transform: translateY(-4px) scale(1.01);
}

/* ===== MOBILE: impacto controlado ===== */
@media (max-width: 720px){
  .hero h1,
  .page-hero h1 {
    animation-duration: .65s;
  }
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce){
  * {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}
/* =========================================================
   AEFoeste — Animação on-scroll institucional (nível avançado)
   ========================================================= */

/* Estado inicial: antes de entrar na viewport */
.reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  filter: blur(8px);
  transition:
    opacity .7s cubic-bezier(.2,.8,.2,1),
    transform .7s cubic-bezier(.2,.8,.2,1),
    filter .7s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity, filter;
}

/* Estado ativo */
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* Variante mais forte (hero/page-hero) */
.reveal-hero {
  transform: translateY(34px) scale(.97);
  filter: blur(12px);
}

.reveal-hero.is-visible {
  transform: none;
  filter: blur(0);
}

/* Delay utilitário (stagger manual quando quiser) */
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

/* Hover continua vivo */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover {
  transform: translateY(-4px) scale(1.01);
}

/* Mobile: menos blur, mais leve */
@media (max-width: 720px){
  .reveal {
    transform: translateY(18px);
    filter: blur(4px);
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce){
  .reveal,
  .reveal-hero {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* =========================================================
   AEFoeste — Motion System Cinematográfico (nível alto)
   ========================================================= */

/* ===== Variáveis de motion ===== */
:root{
  --motion-ease: cubic-bezier(.16,1,.3,1);
  --motion-fast: .55s;
  --motion-base: .85s;
  --motion-slow: 1.1s;
}

/* ===== Keyframes principais ===== */


@keyframes aefoeste-soft-float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

/* ===== Estado base (antes de aparecer) ===== */
.reveal{
  opacity: 0;
  transform: translateY(42px) scale(.96);
  filter: blur(14px);
  will-change: transform, opacity, filter;
}

/* ===== Estado ativo ===== */
.reveal.is-visible{
  animation:
    aefoeste-enter var(--motion-base) var(--motion-ease) both;
}




/* ===== Parallax fake (background vivo) ===== */
.hero,
.page-hero{
  position: relative;
  overflow: hidden;
}

.hero::after,
.page-hero::after{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(600px 260px at 20% 20%, rgba(21,145,78,.20), transparent 60%),
    radial-gradient(500px 240px at 80% 30%, rgba(15,107,58,.18), transparent 60%);
  animation: aefoeste-soft-float 12s ease-in-out infinite;
  pointer-events:none;
}

/* ===== Cards ganham leve vida contínua ===== */
.card,
.mgmt,
.b-card,
.e-card{
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.card.is-visible,
.mgmt.is-visible,
.b-card.is-visible,
.e-card.is-visible{
  animation:
    aefoeste-enter var(--motion-fast) var(--motion-ease) both;
}

/* Hover mais premium */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 22px 46px rgba(0,0,0,.45),
    0 0 0 6px rgba(126,255,185,.08);
}



/* ===== Acessibilidade ===== */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
/* Logo AEFoeste */
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.45));
  transition: transform .25s ease, filter .25s ease;
}

.brand:hover .brand-logo{
  transform: scale(1.05);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.55));
}
.footer-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
/* Refino do hero: menos peso, mais sofisticação */
.hero::before{
  background: linear-gradient(
    to bottom,
    rgba(7,11,9,.45),
    rgba(7,11,9,.70)
  );
}

.hero::after{
  opacity: .75;
  animation-duration: 18s; /* mais lento */
}

.hero h1{
  text-shadow: 0 6px 22px rgba(0,0,0,.45);
}

.hero p{
  color: rgba(220,235,225,.88);
}
.brand-logo{
  width: 52px;      /* antes 44 */
  height: 52px;
}

.brand-txt strong{
  font-size: 17px;
}
/* Conteúdo abaixo do hero entra com menos impacto */
.card.is-visible,
.mgmt.is-visible,
.b-card.is-visible,
.e-card.is-visible{
  animation-duration: .65s;
  filter: blur(0);
}


/* =========================================================
   Page Hero — imagens específicas por página
   ========================================================= */

.page-hero.page-bg{
  position: relative;
  padding: 46px 0;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(7,11,9,.88),
      rgba(7,11,9,.55)
    );
}

/* Conteúdo acima do fundo */
.page-hero.page-bg > .container{
  position: relative;
  z-index: 1;
}

/* Camada viva (herda motion) */
.page-hero.page-bg::after{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(700px 320px at 20% 30%, rgba(21,145,78,.18), transparent 60%),
    radial-gradient(600px 300px at 80% 40%, rgba(15,107,58,.14), transparent 60%);
  animation: aefoeste-soft-float 18s ease-in-out infinite;
  pointer-events:none;
}

/* ================= IMAGENS POR PÁGINA ================= */

/* Estatuto — institucional, sóbrio */
.page-estatuto .page-hero.page-bg{
  background-image:
    linear-gradient(
      90deg,
      rgba(7,11,9,.88),
      rgba(7,11,9,.55)
    ),
    url("assets/hero/estatuto.jpg");
}

/* Diretorias — humano, corporativo */
.page-diretorias .page-hero.page-bg{
  background-image:
    linear-gradient(
      90deg,
      rgba(7,11,9,.88),
      rgba(7,11,9,.55)
    ),
    url("assets/hero/diretorias.jpg");
}

/* Eventos — mais vibrante */
.page-eventos .page-hero.page-bg{
  background-image:
    linear-gradient(
      90deg,
      rgba(7,11,9,.82),
      rgba(7,11,9,.48)
    ),
    url("assets/hero/eventos.jpg");
}

/* Boletim — editorial */
.page-boletim .page-hero.page-bg{
  background-image:
    linear-gradient(
      90deg,
      rgba(7,11,9,.90),
      rgba(7,11,9,.60)
    ),
    url("assets/hero/boletim.jpg");
}

/* Garantia de cobertura */
.page-hero.page-bg{
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* =========================================================
   Page Hero — imagens por página (CORRIGIDO)
   ========================================================= */

.page-hero.page-bg{
  position: relative;
  padding: 56px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Estatuto */
body.page-estatuto .page-hero.page-bg{
  background-image:
    linear-gradient(rgba(7,11,9,.85), rgba(7,11,9,.55)),
    url("hero/estatuto.jpg");
}

/* Diretorias */
body.page-diretorias .page-hero.page-bg{
  background-image:
    linear-gradient(rgba(7,11,9,.85), rgba(7,11,9,.55)),
    url("hero/diretorias.jpg");
}

/* Eventos */
body.page-eventos .page-hero.page-bg{
  background-image:
    linear-gradient(rgba(7,11,9,.82), rgba(7,11,9,.50)),
    url("hero/eventos.jpg");
}

/* Boletim */
body.page-boletim .page-hero.page-bg{
  background-image:
    linear-gradient(rgba(7,11,9,.88), rgba(7,11,9,.60)),
    url("hero/boletim.jpg");
}
.page-hero.page-bg{
  min-height: 260px;
}

body.page-boletim .page-hero.page-bg{
  background-image:
    radial-gradient(1200px 400px at 15% 50%, rgba(15,107,58,.25), transparent 55%),
    linear-gradient(rgba(7,11,9,.88), rgba(7,11,9,.55)),
    url("hero/boletim.jpg");
}
.b-card{
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.03)
  );
  backdrop-filter: blur(6px);
}
@keyframes fadeUpStrong{
  from{
    opacity: 0;
    transform: translateY(28px) scale(.98);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.page-hero,
.b-card{
  animation: fadeUpStrong .9s cubic-bezier(.22,.61,.36,1) both;
}
.menu a[aria-current="page"]{
  box-shadow:
    0 0 0 2px rgba(126,255,185,.18),
    0 0 24px rgba(126,255,185,.25);
}
.hero-animated{
  position: relative;
  overflow: hidden;
}

.hero-animated::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 500px at 20% 30%, rgba(21,145,78,.25), transparent 60%);
  animation: heroGlow 18s ease-in-out infinite alternate;
}

.hero-animated::after{
  content:"";
  position:absolute;
  inset:-10%;
  background: inherit;
  filter: blur(18px) saturate(1.1);
  opacity:.25;
  transform: scale(1.05);
  pointer-events:none;
}

@keyframes heroGlow{
  0%{ opacity:.35; }
  100%{ opacity:.65; }
}
.hero h1{
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: -0.03em;
  font-weight: 900;
}

.hero p{
  font-size: 18px;
  max-width: 60ch;
}
.card{
  background:
    linear-gradient(180deg,
      rgba(255,255,255,.07),
      rgba(255,255,255,.03)
    );
  backdrop-filter: blur(8px) saturate(1.2);
}

.card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 20px 40px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(126,255,185,.08);
}


.hero,
.card,
.section-title{
  animation: riseFade 1s cubic-bezier(.22,.61,.36,1) both;
}
.section-title{ animation-delay:.1s }
.card:nth-of-type(1){ animation-delay:.2s }
.card:nth-of-type(2){ animation-delay:.35s }
.card:nth-of-type(3){ animation-delay:.5s }
.brand-logo,
.footer-logo{
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.45));
  transition: transform .4s ease;
}

.brand:hover .brand-logo{
  transform: scale(1.05);
}
.menu a{
  position: relative;
}

.menu a::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:2px;
  background: linear-gradient(90deg, #2aa45f, transparent);
  opacity:0;
  transition:.3s;
}

.menu a:hover::after,
.menu a[aria-current="page"]::after{
  opacity:1;
}
.logos-stack{
  flex-direction: column;
  align-items: stretch;
}

.logos-stack .logo-box{
  width: 100%;
  height: 72px;
}
.footer-grid-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.footer-left{ text-align:left; }
.footer-center{ text-align:center; }
.footer-right{ text-align:right; }

@media (max-width: 980px){
  .footer-grid-3{
    grid-template-columns: 1fr;
  }
  .footer-left,
  .footer-center,
  .footer-right{
    text-align:left;
  }
}
.footer-dev{
  margin-top: 10px;
  text-align: center;
  font-size: 11px;
  color: rgba(194,206,199,.7);
  font-weight: 700;
}

.footer-dev a{
  color: rgba(126,255,185,.85);
  font-weight: 900;
}

.footer-dev a:hover{
  text-decoration: underline;
}
/* Parceiros em largura total */
.grid-full{
  grid-column: 1 / -1;
}
.logos-stack{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.logos-stack .logo-box{
  height: 80px;
  font-size: 13px;
}
/* Centralização institucional */
.centered-section{
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Centraliza títulos */
.section-title.center{
  justify-content: center;
  text-align: center;
}

.section-title.center h2{
  text-align: center;
}

.section-title.center .hint{
  margin-left: 0;
}
/* Centraliza apenas o conteúdo (não títulos) */
.content-center{
  display: flex;
  justify-content: center;
}

/* Limite institucional de largura */
.content-center > .card{
  width: 100%;
  max-width: 820px;
}
/* Centraliza apenas o conteúdo (Objetivos) */
.content-center{
  display: flex;
  justify-content: center;
}

.content-center > .card{
  width: 100%;
  max-width: 820px;
}
/* Objetivos centralizado corretamente dentro do grid */
.objectives-full{
  grid-column: 1 / -1;          /* ocupa as duas colunas */
  display: flex;
  justify-content: center;
}

.objectives-full .card{
  width: 100%;
  max-width: 820px;
}
/* ===== Seções institucionais centralizadas ===== */
.institutional{
  padding: 40px 0;
}

/* container mais estreito para leitura */
.container.narrow{
  max-width: 860px;
}

/* título com esquerda/direita separados */
.section-title.split{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

/* garante que NÃO herda layout do hero */
.institutional .section-title h2,
.institutional .section-title .hint{
  text-align: left;
}

/* ===== Parceiros largura total ===== */
.partners{
  padding: 50px 0;
}
/* ===== Tipografia institucional ===== */

/* Espaçamento entre parágrafos dentro dos cards */
.card p + p{
  margin-top: 14px;
}

/* Ajuste de leitura institucional */
.card p{
  line-height: 1.7;
}
/* ===== Institucional + Direcionamento lado a lado ===== */

.institutional-dual{
  padding: 48px 0;
}

.dual-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

/* colunas */
.dual-col{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* mobile */
@media (max-width: 900px){
  .dual-grid{
    grid-template-columns: 1fr;
  }
}
section{
  margin-bottom: 56px;
}
section{
  margin-bottom: 56px;
}
.section-title{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 16px;
}

.section-title h2{
  font-size: 1.6rem;
  letter-spacing: .3px;
}

.section-title .hint{
  font-size: .85rem;
  opacity: .65;
  text-transform: none;
}
.card{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 30px;
}
.card p{
  max-width: none;      /* <<< ISSO É O SEGREDO */
}

.card h3{
  margin-bottom: 12px;
  font-size: 1.1rem;
}
.card p{
  line-height: 1.75;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}

.card p + p{
  margin-top: 16px;
}
.card.accent{
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 30px;
}
.bullets li{
  margin-bottom: 10px;
  line-height: 1.6;
}

.bullets li::marker{
  color: rgba(120,200,150,.7);
}
/* Stack vertical institucional */
.stack{
  display: flex;
  flex-direction: column;
  gap: 56px;
  max-width: 1100px;
  margin: 0 auto;
}
section{
  width: 100%;
}

.card{
  padding: 28px 30px;
}

.card p + p{
  margin-top: 16px;
}

.logos{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px,1fr));
  gap: 16px;
}
.footer-cnpj {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(194,206,199,.85);
  font-weight: 700;
}
/* =========================================================
   FIX DEFINITIVO — ANTI-ZOOM / ANTI-SCALE
   ========================================================= */

/* Proíbe SCALE em elementos estruturais */
.hero,
.hero *,
.page-hero,
.page-hero *,
main,
section,
.container,
.grid,
.card,
.card *,
.section-title,
.mgmt,
.b-card,
.e-card {
  transform: translateY(0) !important;
}

/* Remove QUALQUER scale vindo de animações antigas */
.hero,
.page-hero,
.card,
.section-title,
.mgmt,
.b-card,
.e-card {
  animation: none !important;
}

/* Reaplica animação SEGURA (SEM SCALE) */
@keyframes safeFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

/* Só elementos de CONTEÚDO recebem animação */
.hero h1,
.hero p,
.hero .actions,
.page-hero h1,
.page-hero p,
.card > * ,
.section-title > * {
  animation: safeFadeUp .7s cubic-bezier(.2,.8,.2,1) both;
}

/* Hover seguro */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover {
  transform: translateY(-4px) !important;
}


/* =========================================================
   FIX DEFINITIVO — ZOOM AO NAVEGAR (ANTI-JS SCALE)
   ========================================================= */

/* NUNCA permitir transform em layout estrutural */
html,
body,
main,
header,
footer,
section,
.container,
.grid,
.page-hero,
.hero {
  transform: none !important;
}

/* Reveal só pode animar CONTEÚDO, não blocos */
.reveal,
.reveal-hero {
  transform: translateY(24px) !important;
}

/* Estado visível: SEM SCALE */
.reveal.is-visible,
.reveal-hero.is-visible {
  transform: translateY(0) !important;
}

/* Garante que hover não cause reescala global */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover {
  transform: translateY(-4px) !important;
}

/* Última linha de defesa */
html, body {
  zoom: 100% !important;
}
/* =========================================================
   AEFoeste — Motion System FINAL (seguro e institucional)
   ========================================================= */

/* Base: nunca animar layout */
html, body, main, header, footer, section, .container, .grid {
  transform: none !important;
}

/* Animação única (SEM scale) */
@keyframes motionFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: none;
  }
}

/* HERO */
.hero h1,
.hero p,
.hero .actions {
  animation: motionFadeUp .8s cubic-bezier(.2,.8,.2,1) both;
}

.hero p { animation-delay: .08s; }
.hero .actions { animation-delay: .16s; }

/* PAGE HERO */
.page-hero h1,
.page-hero p,
.page-hero .breadcrumbs {
  animation: motionFadeUp .7s cubic-bezier(.2,.8,.2,1) both;
}

/* CONTEÚDO */
.section-title > *,
.card > *,
.mgmt > *,
.b-card > *,
.e-card > * {
  animation: motionFadeUp .65s cubic-bezier(.2,.8,.2,1) both;
}

/* Hover premium (SEM scale) */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 22px 46px rgba(0,0,0,.45),
    0 0 0 6px rgba(126,255,185,.08);
}

/* Mobile: mais leve */
@media (max-width: 720px){
  @keyframes motionFadeUp {
    from {
      opacity: 0;
      transform: translateY(16px);
      filter: blur(2px);
    }
  }
}

/* Acessibilidade */
@media (prefers-reduced-motion: reduce){
  * {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
}
/* =========================================================
   Parceiros Institucionais — FIX DEFINITIVO
   ========================================================= */

.partners-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: stretch;
}

/* Caixa padrão de cada parceiro */
.partner{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.06),
    rgba(255,255,255,.03)
  );
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover institucional */
.partner:hover{
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 0 6px rgba(126,255,185,.08);
}

/* Logo em si */
.partner img{
  max-width: 100%;
  max-height: 72px;      /* <<< PADRÃO VISUAL */
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
/* =========================================================
   Parceiros Institucionais — POLIMENTO FINAL
   ========================================================= */

/* Grid mais equilibrado */
.partners-grid{
  gap: 28px;
}

/* Card do parceiro */
.partner{
  height: 130px;                 /* um pouco mais alto */
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.055),
    rgba(255,255,255,.025)
  );
  border: 1px solid rgba(255,255,255,.14);
  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

/* Hover mais institucional, menos chamativo */
.partner:hover{
  transform: translateY(-3px);
  border-color: rgba(126,255,185,.28);
  box-shadow:
    0 16px 34px rgba(0,0,0,.45),
    0 0 0 4px rgba(126,255,185,.06);
}

/* Logo: PADRÃO FINAL */
.partner img{
  max-height: 64px;              /* <<< AJUSTE CHAVE */
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
}

/* Subtítulo à direita mais discreto */
.section-title .hint{
  opacity: .55;
  font-weight: 700;
}
/* ===== Respiro institucional ===== */
section{
  margin-bottom: 72px; /* antes 56px */
}

.card,
.card.accent{
  padding: 32px 36px; /* mais ar, mais leitura */
}
/* ===== Hierarquia de títulos ===== */
.section-title h2{
  font-size: 1.75rem;
  letter-spacing: .2px;
  font-weight: 900;
}

.section-title .hint{
  font-size: .8rem;
  opacity: .55;
}
/* ===== Card refinement ===== */
.card,
.partner{
  backdrop-filter: blur(10px) saturate(1.1);
}

.card{
  border-color: rgba(255,255,255,.14);
}
/* ===== Hover mais maduro ===== */
.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover,
.partner:hover{
  transform: translateY(-3px);
  box-shadow:
    0 18px 36px rgba(0,0,0,.42),
    0 0 0 4px rgba(126,255,185,.06);
}
/* ===== Parceiros: equilíbrio visual final ===== */
.partner img{
  max-height: 60px; /* ligeiramente menor */
  opacity: .95;
}

.partner{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.045),
      rgba(255,255,255,.02)
    );
}
/* ===== Footer refinement ===== */
.footer{
  font-size: 13px;
}

.footer-col h4{
  letter-spacing: .14em;
  opacity: .9;
}

.footer-bottom{
  opacity: .75;
}
/* ===== Leitura institucional ===== */
.card p{
  max-width: 68ch;
}
/* =====================================================
   FIX MENU MOBILE – clique não funciona
   ===================================================== */

/* Garante que o header fique acima do hero */
header{
  position: relative;
  z-index: 1000;
}

/* Botão do menu sempre clicável */
.burger{
  position: relative;
  z-index: 1100;
  pointer-events: auto;
}

/* Caso exista overlay no hero */
.page-hero::before,
.page-hero::after{
  pointer-events: none;
}
/* =====================================================
   FIX DEFINITIVO – MENU MOBILE NÃO CLICÁVEL
   ===================================================== */

/* Header sempre acima do hero */
header{
  position: sticky;   /* ou fixed, se preferir */
  top: 0;
  z-index: 1000;
}

/* Botão MENU acima de tudo */
.burger{
  position: relative;
  z-index: 1100;
  pointer-events: auto;
}



/* Hero nunca intercepta interação */
.hero,
.page-hero{
  position: relative;
  z-index: 1;
}
header {
  position: sticky;
  top: 0;
  z-index: 99999;
}
.card p{
  line-height: 1.75;
  font-size: 0.95rem;
}
.card p{
  max-width: none;      /* <<< ISSO É O SEGREDO */
}
@media (max-width: 720px){
  .card{
    padding: 22px 20px;
  }
}
.card{
  position: relative;
  overflow: hidden;
}

.card::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    400px 120px at 0% 0%,
    rgba(126,255,185,.06),
    transparent 60%
  );
  opacity:.6;
  pointer-events:none;
  animation: cardGlow 14s ease-in-out infinite alternate;
}

@keyframes cardGlow{
  from{
    transform: translateX(-40px) translateY(-20px);
  }
  to{
    transform: translateX(40px) translateY(20px);
  }
}
.card{
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.card:hover{
  transform: translateY(-6px);
  border-color: rgba(126,255,185,.28);
  box-shadow:
    0 26px 48px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(126,255,185,.12);
}
.card{
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.card:hover{
  transform: translateY(-6px);
  border-color: rgba(126,255,185,.28);
  box-shadow:
    0 26px 48px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(126,255,185,.12);
}
.card p{
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity .6s cubic-bezier(.2,.8,.2,1),
    transform .6s cubic-bezier(.2,.8,.2,1);
}

.card.is-visible p{
  opacity: 1;
  transform: translateY(0);
}
/* Zoom elegante no hover */
.card,
.mgmt,
.b-card,
.e-card,
.partner{
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease;
}

.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover,
.partner:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 26px 52px rgba(0,0,0,.45),
    0 0 0 4px rgba(126,255,185,.08);
}
/* Zoom elegante no hover */
.card,
.mgmt,
.b-card,
.e-card,
.partner{
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease;
}

.card:hover,
.mgmt:hover,
.b-card:hover,
.e-card:hover,
.partner:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow:
    0 26px 52px rgba(0,0,0,.45),
    0 0 0 4px rgba(126,255,185,.08);
}
.card p,
.card ul,
.card li{
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .6s ease,
    transform .6s ease;
}

.card.is-visible p,
.card.is-visible ul,
.card.is-visible li{
  opacity: 1;
  transform: translateY(0);
}
@keyframes heroFloat{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.hero::after{
  animation: heroFloat 14s ease-in-out infinite;
}
.partner img{
  transition: transform .3s ease;
}

.partner:hover img{
  transform: scale(1.08);
}
.menu a{
  position: relative;
}

.menu a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:2px;
  background: linear-gradient(90deg, #2aa45f, transparent);
  opacity:0;
  transition:.3s;
}

.menu a:hover::after,
.menu a[aria-current="page"]::after{
  opacity:1;
}
.menu a{
  position: relative;
}

.menu a::after{
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:6px;
  height:2px;
  background: linear-gradient(90deg, #2aa45f, transparent);
  opacity:0;
  transition:.3s;
}

.menu a:hover::after,
.menu a[aria-current="page"]::after{
  opacity:1;
}
/* Hero com fundo vivo */
.hero{
  position: relative;
  overflow: hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:-12%;
  background:
    radial-gradient(700px 320px at 20% 30%, rgba(21,145,78,.22), transparent 60%),
    radial-gradient(600px 300px at 80% 40%, rgba(15,107,58,.18), transparent 60%);
  animation: heroDrift 18s ease-in-out infinite;
  pointer-events:none;
}

@keyframes heroDrift{
  0%   { transform: translate(0,0); }
  50%  { transform: translate(-18px,-12px); }
  100% { transform: translate(0,0); }
}
.hero .kicker,
.hero h1,
.hero p{
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn .8s cubic-bezier(.22,.61,.36,1) forwards;
}

.hero h1{ animation-delay: .08s; }
.hero p { animation-delay: .16s; }

@keyframes heroTextIn{
  to{
    opacity:1;
    transform: translateY(0);
  }
}
.hero .kicker,
.hero h1,
.hero p{
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextIn .8s cubic-bezier(.22,.61,.36,1) forwards;
}

.hero h1{ animation-delay: .08s; }
.hero p { animation-delay: .16s; }

@keyframes heroTextIn{
  to{
    opacity:1;
    transform: translateY(0);
  }
}
.hero h1{
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 26px rgba(0,0,0,.45);
}

.hero p{
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 720px){
  .hero::after{
    animation-duration: 26s;
  }

  .hero h1{
    font-size: clamp(28px, 7vw, 36px);
  }

  .heroTitlePulse{
    animation: none;
  }
}
@media (max-width: 720px){
  .hero::after{
    animation-duration: 26s;
  }

  .hero h1{
    font-size: clamp(28px, 7vw, 36px);
  }

  .heroTitlePulse{
    animation: none;
  }
}
/* ===============================
   MENU MOBILE — OVERLAY LIMPO
   =============================== */

.drawer{
  position: fixed;
  inset: 0;
  background: rgba(6,10,8,.98); /* MAIS ESCURO */
  backdrop-filter: blur(12px);
  z-index: 99999;

  display: none;
  padding: 32px 20px;
}

/* aberto */
.drawer.open{
  display: block;
}

/* lista */
.drawer .links{
  max-width: 420px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* botões */
.drawer a{
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #eef4ef;
  font-weight: 900;
  font-size: 17px;
  text-align: center;
  transition: .25s ease;
}

.drawer a:hover{
  background: rgba(255,255,255,.10);
}
.drawer{
  opacity: 0;
  transition: opacity .25s ease;
}

.drawer.open{
  opacity: 1;
}

.drawer a{
  transform: translateY(10px);
  opacity: 0;
}

.drawer.open a{
  animation: menuItem .4s ease forwards;
}

.drawer.open a:nth-child(1){ animation-delay:.05s }
.drawer.open a:nth-child(2){ animation-delay:.10s }
.drawer.open a:nth-child(3){ animation-delay:.15s }
.drawer.open a:nth-child(4){ animation-delay:.20s }
.drawer.open a:nth-child(5){ animation-delay:.25s }

@keyframes menuItem{
  to{
    transform: none;
    opacity: 1;
  }
}
/* ===============================
   MENU MOBILE — ISOLAMENTO TOTAL
   =============================== */

/* quando menu abre, some TUDO atrás */
body.menu-open main,
body.menu-open .hero,
body.menu-open .page-hero {
  visibility: hidden;
}

/* header continua visível */
body.menu-open header {
  visibility: visible;
}

/* drawer ocupa tudo */
.drawer{
  position: fixed;
  inset: 0;
  background: rgba(7,11,9,.96);
  backdrop-filter: blur(16px);
  z-index: 99999;
  display: none;
}

.drawer.open{
  display: block;
}

/* centralização do menu */
.drawer .links{
  max-width: 420px;
  margin: 120px auto 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer a{
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: #eef4ef;
  font-weight: 900;
  font-size: 17px;
}
/* =========================================================
   Parceiros Institucionais — ESTILO FINAL (override)
   ========================================================= */

.partners-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.partner{
  height: 130px;
  padding: 20px 22px;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,.045),
    rgba(255,255,255,.02)
  );
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px) saturate(1.1);

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}

.partner:hover{
  transform: translateY(-3px);
  border-color: rgba(126,255,185,.28);
  box-shadow:
    0 16px 34px rgba(0,0,0,.45),
    0 0 0 4px rgba(126,255,185,.06);
}

.partner img{
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  opacity: .95;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
  transition: transform .3s ease;
}

.partner:hover img{
  transform: scale(1.06);
}
/* ===== Parceiros Institucionais — acabamento premium ===== */

.partners-grid{
  gap: 32px;
}

.partner{
  height: 130px;
  padding: 22px 24px;
  border-radius: 20px;

  background:
    radial-gradient(
      240px 80px at 50% 20%,
      rgba(126,255,185,.06),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(255,255,255,.02)
    );

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.45);

  display:flex;
  align-items:center;
  justify-content:center;

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.partner:hover{
  transform: translateY(-4px);
  border-color: rgba(126,255,185,.30);
  box-shadow:
    0 20px 44px rgba(0,0,0,.55),
    0 0 0 4px rgba(126,255,185,.06);
}
.partner img{
  max-height: 62px;
  max-width: 100%;
  object-fit: contain;

  filter:
    brightness(.95)
    contrast(1.05)
    drop-shadow(0 4px 10px rgba(0,0,0,.35));

  transition: transform .28s ease;
}

.partner:hover img{
  transform: scale(1.05);
}
.partners-grid > .partner:nth-child(-n+3){
  background:
    radial-gradient(
      280px 100px at 50% 20%,
      rgba(126,255,185,.10),
      transparent 70%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.025)
    );
}
/* ===== Parceiros Institucionais — CARD BRANCO INSTITUCIONAL ===== */

.partner{
  height: 130px;
  padding: 22px 24px;
  border-radius: 18px;

  background: rgba(255,255,255,.92); /* branco fosco */
  border: 1px solid rgba(0,0,0,.06);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 14px 34px rgba(0,0,0,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.partner:hover{
  transform: translateY(-4px);
  box-shadow:
    0 22px 48px rgba(0,0,0,.55);
}

/* Logo no branco */
.partner img{
  max-height: 62px;
  max-width: 100%;
  object-fit: contain;
  filter: none; /* IMPORTANTE */
}
/* =========================================================
   Parceiros Institucionais — BRANCO INSTITUCIONAL (FINAL)
   ========================================================= */

.partners-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  align-items: stretch;
}

/* Card branco institucional */
.partner{
  height: 140px;                 /* um pouco mais alto */
  padding: 26px 28px;
  border-radius: 20px;

  background: rgba(255,255,255,.96); /* branco institucional */
  border: 1px solid rgba(0,0,0,.08);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 16px 36px rgba(0,0,0,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* Hover elegante */
.partner:hover{
  transform: translateY(-4px);
  box-shadow:
    0 24px 52px rgba(0,0,0,.55);
}

/* Logo — PROPORÇÃO CORRETA */
.partner img{
  max-height: 82px;     /* <<< AQUI ESTÁ O SEGREDO */
  max-width: 100%;
  width: auto;
  height: auto;

  object-fit: contain;
  filter: none;         /* sem escurecer, sem brilho falso */
}
/* =========================================================
   Parceiros Institucionais — BRANCO FORÇADO (ALL IN)
   ========================================================= */

/* Garante branco para TODOS os parceiros */
.partners-grid .partner{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.45) !important;
}

/* Altura e proporção consistentes */
.partners-grid .partner{
  height: 140px;
  padding: 26px 28px;
  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* Hover limpo */
.partners-grid .partner:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(0,0,0,.55) !important;
}

/* Logos maiores e proporcionais */
.partners-grid .partner img{
  max-height: 88px;   /* <<< maior, proporcional */
  max-width: 100%;
  width: auto;
  height: auto;

  object-fit: contain;
  filter: none !important;
}
/* =========================================================
   Parceiros Institucionais — acabamento institucional final
   ========================================================= */

/* Card branco com sombra nas bordas (vinheta) */
.partners-grid .partner{
  height: 145px;
  padding: 26px 28px;
  border-radius: 22px;

  background:
    radial-gradient(
      140% 90% at 50% 0%,
      rgba(0,0,0,.08),
      transparent 60%
    ),
    #ffffff;

  border: 1px solid rgba(0,0,0,.10);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.02),
    0 18px 42px rgba(0,0,0,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

/* Hover: bordas mais escuras */
.partners-grid .partner:hover{
  transform: translateY(-4px);

  background:
    radial-gradient(
      140% 90% at 50% 0%,
      rgba(0,0,0,.14),
      transparent 58%
    ),
    #ffffff;

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.06),
    0 26px 56px rgba(0,0,0,.55);
}

/* Logo padrão */
.partners-grid .partner img{
  max-height: 86px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform .25s ease;
}

/* =========================================================
   AJUSTE FINO — AEFs (mais presença visual)
   ========================================================= */

/* Aumenta um pouco AEFs */
.partners-grid .partner img[src*="aefsul"],
.partners-grid .partner img[src*="aefvale"],
.partners-grid .partner img[src*="aefnorte"]{
  max-height: 96px;              /* <<< MAIS IMPACTO */
}

/* Correção específica da AEFSul (logo mais baixo) */
.partners-grid .partner img[src*="aefsul"]{
  max-height: 88px;
  transform: scale(1.08);
}

/* Hover nos logos */
.partners-grid .partner:hover img{
  transform: scale(1.06);
}
/* =========================================================
   Parceiros Institucionais — VINHETA REAL (funciona)
   ========================================================= */

.partners-grid .partner{
  height: 145px;
  padding: 26px 28px;
  border-radius: 22px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);

  display: flex;
  align-items: center;
  justify-content: center;

  /* VINHETA REAL */
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.02),
    inset 0 0 24px rgba(0,0,0,.12),   /* <<< bordas escuras */
    0 18px 42px rgba(0,0,0,.45);      /* sombra externa */

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* Hover: vinheta MAIS FORTE */
.partners-grid .partner:hover{
  transform: translateY(-4px);

  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,.06),
    inset 0 0 36px rgba(0,0,0,.20),   /* <<< escurece bordas */
    0 26px 56px rgba(0,0,0,.55);
}
.partners-grid .partner img{
  max-height: 86px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform .25s ease;
}

/* AEFs maiores */
.partners-grid .partner img[src*="aefsul"],
.partners-grid .partner img[src*="aefvale"],
.partners-grid .partner img[src*="aefnorte"]{
  max-height: 96px;
}

/* Correção específica AEFSul */
.partners-grid .partner img[src*="aefsul"]{
  max-height: 88px;
  transform: scale(1.08);
}

/* Hover logo */
.partners-grid .partner:hover img{
  transform: scale(1.06);
}
/* =========================================================
   Parceiros Institucionais — VINHETA REAL (via ::after)
   ========================================================= */

.partners-grid .partner{
  position: relative;
  overflow: hidden;          /* OBRIGATÓRIO para a vinheta */

  height: 145px;
  padding: 26px 28px;
  border-radius: 22px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 18px 42px rgba(0,0,0,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* VINHETA */
.partners-grid .partner::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;

  /* Vinheta escura nas bordas */
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 55%,
    rgba(0,0,0,.18) 100%
  );

  transition: opacity .25s ease;
  opacity: .85;
}

/* Hover: vinheta mais intensa */
.partners-grid .partner:hover{
  transform: translateY(-4px);
  box-shadow:
    0 26px 56px rgba(0,0,0,.55);
}

.partners-grid .partner:hover::after{
  opacity: 1;   /* escurece mais */
}
.partners-grid .partner img{
  max-height: 86px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform .25s ease;
}

/* AEFs maiores */
.partners-grid .partner img[src*="aefsul"],
.partners-grid .partner img[src*="aefvale"],
.partners-grid .partner img[src*="aefnorte"]{
  max-height: 96px;
}

/* Correção específica AEFSul */
.partners-grid .partner img[src*="aefsul"]{
  max-height: 88px;
  transform: scale(1.08);
}

/* Hover logo */
.partners-grid .partner:hover img{
  transform: scale(1.06);
}
/* =========================================================
   Parceiros Institucionais — VINHETA FORTE (BORDAS ESCURAS)
   ========================================================= */

.partners-grid .partner{
  position: relative;
  overflow: hidden;

  height: 145px;
  padding: 26px 28px;
  border-radius: 22px;

  background: #ffffff;
  border: 1px solid rgba(0,0,0,.10);

  display: flex;
  align-items: center;
  justify-content: center;

  /* sombra externa */
  box-shadow:
    0 18px 42px rgba(0,0,0,.45);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* VINHETA — CAMADA 1 (radial forte) */
.partners-grid .partner::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;

  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 42%,
    rgba(0,0,0,.28) 100%
  );

  opacity: 1;
}

/* VINHETA — CAMADA 2 (inset shadow) */
.partners-grid .partner::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  pointer-events:none;

  box-shadow:
    inset 0 0 28px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(0,0,0,.06);
}

/* Hover: ainda mais profundo */
.partners-grid .partner:hover{
  transform: translateY(-4px);
  box-shadow:
    0 26px 56px rgba(0,0,0,.60);
}

.partners-grid .partner:hover::after{
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 36%,
    rgba(0,0,0,.50) 100%
  );
}

.partners-grid .partner:hover::before{
  box-shadow:
    inset 0 0 35px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(0,0,0,.10);
}
.partners-grid .partner img{
  max-height: 88px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  transition: transform .25s ease;
}

/* AEFs maiores */
.partners-grid .partner img[src*="aefsul"],
.partners-grid .partner img[src*="aefvale"],
.partners-grid .partner img[src*="aefnorte"]{
  max-height: 98px;
}

/* Correção AEFSul */
.partners-grid .partner img[src*="aefsul"]{
  max-height: 90px;
  transform: scale(1.08);
}

/* Hover logo */
.partners-grid .partner:hover img{
  transform: scale(1.06);
}
.page-hero{
  position: relative;
  overflow: hidden;
}

.page-hero::after{
  content:"";
  position:absolute;
  inset:-10%;
  background:
    radial-gradient(800px 300px at 20% 40%, rgba(21,145,78,.22), transparent 60%),
    radial-gradient(700px 280px at 80% 60%, rgba(15,107,58,.18), transparent 60%);
  animation: heroDrift 18s ease-in-out infinite alternate;
  pointer-events:none;
}

@keyframes heroDrift{
  from{ transform: translateY(0); }
  to{ transform: translateY(-20px); }
}
.page-hero h1{
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.page-hero p{
  font-size: 16px;
  opacity: .9;
}
.card.download{
  max-width: 560px;
  margin: 0 auto;
  padding: 32px 36px;

  background:
    radial-gradient(300px 120px at 20% 0%, rgba(126,255,185,.20), transparent 60%),
    linear-gradient(180deg, rgba(15,107,58,.35), rgba(255,255,255,.04));

  border: 1px solid rgba(126,255,185,.35);
  box-shadow:
    0 24px 56px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(126,255,185,.15);
}
.reveal{
  opacity:0;
  transform: translateY(24px);
  transition: .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}
.btn{
  position: relative;
  overflow: hidden;
}

.btn::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg,
    transparent 40%,
    rgba(255,255,255,.25),
    transparent 60%);
  transform: translateX(-100%);
  transition: .6s;
}

.btn:hover::after{
  transform: translateX(100%);
}
.reveal{
  opacity:0;
  transform: translateY(24px);
  transition: .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible{
  opacity:1;
  transform:none;
}
/* ===== Microinteração premium ===== */
.card,
.partner,
.btn{
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease;
}

/* Hover */
.card:hover,
.partner:hover{
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 26px 52px rgba(0,0,0,.45),
    0 0 0 6px rgba(126,255,185,.08);
}

.btn:hover{
  transform: scale(1.06);
}
.reveal{
  opacity: 0;
  transform: translateY(28px) scale(.96);
  transition:
    opacity .7s cubic-bezier(.2,.8,.2,1),
    transform .7s cubic-bezier(.2,.8,.2,1);
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* =========================================================
   Motion System — ENTRADA SUAVE E FLUTUANTE
   ========================================================= */

/* Estado inicial */
.reveal{
  opacity: 0;
  transform: translateY(12px) translateX(-8px);
  filter: blur(6px);
  transition:
    opacity 1.1s cubic-bezier(.16,1,.3,1),
    transform 1.1s cubic-bezier(.16,1,.3,1),
    filter 1.1s cubic-bezier(.16,1,.3,1);
}

/* Estado visível */
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0) translateX(0);
  filter: blur(0);
}
.page-hero h1,
.page-hero p{
  opacity: 0;
  transform: translateX(-24px);
  filter: blur(8px);
  animation: heroFloatIn 1.6s cubic-bezier(.16,1,.3,1) forwards;
}

.page-hero p{ animation-delay: .12s; }

@keyframes heroFloatIn{
  to{
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}
.card,
.partner,
.b-card,
.e-card{
  transition:
    transform .8s cubic-bezier(.16,1,.3,1),
    box-shadow .8s ease;
}

.card:hover,
.partner:hover{
  transform: translateY(-2px); /* quase imperceptível */
}
.hero::after,
.page-hero::after{
  animation: backgroundFloat 26s ease-in-out infinite alternate;
}

@keyframes backgroundFloat{
  from{ transform: translateY(0); }
  to{ transform: translateY(-14px); }
}
/* =========================================================
   FIX DEFINITIVO — Reveal + Filtro de Eventos
   NÃO usar display:none no reveal
   ========================================================= */

/* Estado inicial (antes do reveal) */
.e-card,
.card,
.mgmt,
.b-card,
.section-title,
.page-hero h1,
.page-hero p {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

/* Estado visível (IntersectionObserver) */
.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* GARANTIA: cards SEMPRE existem no layout */


/* Quando o filtro esconder, só o JS controla */
.e-card[style*="display: none"] {
  pointer-events: none;
}
/* =========================================================
   Reveal + Filtro — versão correta (JS manda no display)
   ========================================================= */

/* Reveal inicial (NUNCA usar display aqui) */
.e-card,
.card,
.mgmt,
.b-card,
.section-title,
.page-hero h1,
.page-hero p {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Quando entra na tela */
.is-visible {
  opacity: 1;
  transform: none;
}

/* O filtro controla a visibilidade */
.e-card {
  display: block;
}

/* Quando o JS esconder */
.e-card[style*="display: none"] {
  display: none;
}
.event-image img{
  width:100%;
  max-width:900px;
  display:block;
  margin:24px auto;
  border-radius:14px;
}
/* =========================================================
   DESIGN PATCH (v1) — Geral + Eventos
   Cole no FINAL do assets/style.css
   ========================================================= */

/* ---------- Base visual melhor ---------- */
:root{
  --radius: 16px;                 /* se já existir, mantém este */
  --radius-sm: 12px;
  --line: rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.14);

  --card-bg: rgba(255,255,255,.045);
  --card-bg-2: rgba(255,255,255,.03);

  --shadow-1: 0 10px 30px rgba(0,0,0,.35);
  --shadow-2: 0 18px 60px rgba(0,0,0,.45);

  --focus: rgba(126,255,185,.45); /* verde claro p/ foco */
}

/* Tipografia mais “executiva” */
body{
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Container mais confortável */
.container{
  max-width: 1120px; /* mais “pro” */
}

/* Links com underline só no hover */
a{ text-decoration: none; }
a:hover{ text-decoration: underline; text-underline-offset: 3px; }

/* Melhor foco (teclado) */
:focus-visible{
  outline: 2px solid var(--focus);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Botões mais “premium” */
.btn{
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--line-2);
  background: rgba(255,255,255,.035);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.22);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  background: rgba(255,255,255,.06);
}
.btn.primary{
  border-color: rgba(126,255,185,.28);
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

/* Cards com aparência mais sólida */
.card, .e-card, .mgmt, .panel, .box{
  border-radius: var(--radius);
}

/* Page hero um pouco mais “fino” */
.page-hero{
  padding: 44px 0 34px;
}
.page-hero h1{
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.03em;
}
.page-hero p{
  color: rgba(238,244,239,.86);
  max-width: 65ch;
}

/* Breadcrumbs mais discreto */
.breadcrumbs{
  opacity: .9;
  font-size: 13px;
}

/* Footer mais limpo */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer .footer-top{
  gap: 18px;
}
/* =========================================================
   EVENTOS — visual e layout
   ========================================================= */

.page-eventos .toolbar{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;

  margin: 18px 0 18px;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow-1);

  position: sticky;
  top: 76px; /* ajusta se teu header sticky for maior/menor */
  z-index: 20;
  backdrop-filter: blur(10px);
}

.page-eventos .tool{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-eventos .tool .label{
  color: rgba(238,244,239,.78);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-eventos .chip{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  padding: 8px 12px;
  line-height: 1;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.page-eventos .chip:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.22);
  background: rgba(255,255,255,.06);
}
.page-eventos .chip.is-active{
  border-color: rgba(126,255,185,.35);
  background: rgba(21,145,78,.18); /* verde discreto */
}

/* Campo de busca melhor */
.page-eventos .tool.search{
  flex: 1 1 320px;
  justify-content: flex-end;
}
.page-eventos .input{
  width: min(520px, 100%);
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.page-eventos .input:focus{
  border-color: rgba(126,255,185,.35);
}

/* Cards em coluna com espaçamento “executivo” */
.page-eventos .cards{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.page-eventos .e-card{
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow-1);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.page-eventos .e-card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.16);
  box-shadow: var(--shadow-2);
}

.page-eventos .e-top{
  display:grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 16px;
}

@media (max-width: 720px){
  .page-eventos .toolbar{ top: 64px; }
  .page-eventos .e-top{ grid-template-columns: 1fr; }
}

/* Coluna da data “cartão” */
.page-eventos .e-when{
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 12px;
  align-self: start;
}
.page-eventos .e-date{
  display:block;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 16px;
}

/* Título/descrição */
.page-eventos .e-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.page-eventos .e-desc{
  margin: 10px 0 0;
  color: rgba(238,244,239,.82);
  line-height: 1.45;
}

/* Badges e tags mais alinhados */
.page-eventos .meta{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.page-eventos .badge{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  font-size: 12px;
}

.page-eventos .e-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.page-eventos .tag{
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(126,255,185,.18);
  background: rgba(21,145,78,.12);
  font-size: 12px;
}
/* =========================================================
   BOLETIM — layout e visual (page-boletim)
   ========================================================= */

.page-boletim .toolbar{
  display:flex;
  gap: 12px;
  align-items:center;
  justify-content: space-between;
  flex-wrap: wrap;

  margin: 18px 0 18px;
  padding: 12px 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow-1);

  position: sticky;
  top: 76px; /* igual eventos (ajuste se necessário) */
  z-index: 20;
  backdrop-filter: blur(10px);
}

.page-boletim .tool{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-boletim .tool .label{
  color: rgba(238,244,239,.78);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-boletim .chip{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  padding: 8px 12px;
  line-height: 1;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.page-boletim .chip:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.22);
  background: rgba(255,255,255,.06);
}
.page-boletim .chip.is-active{
  border-color: rgba(126,255,185,.35);
  background: rgba(21,145,78,.18);
}

/* Busca */
.page-boletim .tool.search{
  flex: 1 1 320px;
  justify-content: flex-end;
}
.page-boletim .input{
  width: min(520px, 100%);
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.page-boletim .input:focus{
  border-color: rgba(126,255,185,.35);
}

/* Lista */
.page-boletim .cards{
  display:grid;
  gap: 12px;
  margin-top: 14px;
}

/* Card do boletim */
.page-boletim .b-card{
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 16px;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.page-boletim .b-card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.16);
  box-shadow: var(--shadow-2);
}

/* Topo com título + botão */
.page-boletim .b-top{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-boletim .b-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

/* Meta badges */
.page-boletim .meta{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.page-boletim .badge{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  font-size: 12px;
}

/* Descrição */
.page-boletim .b-desc{
  margin: 10px 0 0;
  color: rgba(238,244,239,.82);
  line-height: 1.45;
}

/* Rodapé do card (ações + tags) */
.page-boletim .b-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Tag visual igual ao eventos */
.page-boletim .tag{
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(126,255,185,.18);
  background: rgba(21,145,78,.12);
  font-size: 12px;
}

/* Botão "Abrir PDF" no topo fica sempre destacado */
.page-boletim .b-top .btn.primary{
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 720px){
  .page-boletim .toolbar{ top: 64px; }
  .page-boletim .b-top{ flex-direction: column; }
  .page-boletim .b-top .btn.primary{ width: 100%; text-align: center; }
}
/* =========================================================
   AEFoeste — Estatuto (page-estatuto) — Upgrade premium
   Cole no FINAL do assets/style.css
   ========================================================= */

/* ---------- Tokens (fallback caso seu CSS não tenha) ---------- */
:root{
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);
  --shadow-strong: 0 18px 50px rgba(0,0,0,.5);
  --stroke: rgba(255,255,255,.10);
  --stroke-2: rgba(255,255,255,.14);

  --text: #eef4ef;
  --muted: rgba(238,244,239,.78);
  --muted-2: rgba(238,244,239,.62);

  --bg-950: #070b09;
  --bg-900: #0b100d;
  --bg-850: #0e1511;

  --green-900:#0a3e22;
  --green-800:#0d532d;
  --green-700:#0f6b3a;
  --green-600:#15914e;

  --accent: #7effb9; /* seu verde “neon” institucional */
  --accent-2: rgba(126,255,185,.18);
}

/* ---------- Base: sensação de qualidade e leitura ---------- */
.page-estatuto{
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(21,145,78,.22), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(126,255,185,.12), transparent 55%),
    linear-gradient(180deg, var(--bg-950), var(--bg-900) 55%, var(--bg-850));
  color: var(--text);
}

/* Container (fallback se não existir) */
.container{
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

/* ---------- Topbar refinado ---------- */
.page-estatuto .topbar{
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.page-estatuto .topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.page-estatuto .topbar .left{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
}
.page-estatuto .topbar a{
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.page-estatuto .topbar a:hover{
  border-bottom-color: rgba(126,255,185,.45);
}
.page-estatuto .ig-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
}
.page-estatuto .ig-link:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.25);
}

/* ---------- Header/Navbar (seu layout já existe; aqui só polish) ---------- */
.page-estatuto header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7,11,9,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-estatuto .navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.page-estatuto .brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.page-estatuto .brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}
.page-estatuto .brand-txt strong{
  display:block;
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 1.1;
}
.page-estatuto .brand-txt span{
  display:block;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.25;
  margin-top: 4px;
}

.page-estatuto .menu{
  display:flex;
  gap: 10px;
  align-items:center;
}
.page-estatuto .menu a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid transparent;
  background: transparent;
  transition: 160ms ease;
}
.page-estatuto .menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}
.page-estatuto .menu a[aria-current="page"]{
  color: var(--text);
  background: rgba(126,255,185,.10);
  border-color: rgba(126,255,185,.22);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

/* Burger polish */
.page-estatuto .burger{
  display:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 800;
  letter-spacing: .4px;
}
.page-estatuto .burger:hover{
  border-color: rgba(126,255,185,.22);
}

/* Drawer (mobile) */
.page-estatuto .drawer{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,11,9,.78);
  backdrop-filter: blur(14px);
}
.page-estatuto .drawer .links{
  display:grid;
  gap: 8px;
  padding: 12px 0 16px;
}
.page-estatuto .drawer .links a{
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.page-estatuto .drawer .links a:hover{
  color: var(--text);
  border-color: rgba(126,255,185,.22);
}
.page-estatuto .drawer.open{ display:block; }

/* ---------- Hero interno “executivo” ---------- */
.page-estatuto .page-hero{
  padding: 44px 0 24px;
  position: relative;
  overflow: hidden;
}
.page-estatuto .page-hero::before{
  content:"";
  position:absolute;
  inset: -1px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(21,145,78,.25), transparent 65%),
    radial-gradient(700px 540px at 100% 20%, rgba(126,255,185,.13), transparent 60%);
  pointer-events:none;
}
.page-estatuto .page-hero .container{
  position: relative;
}
.page-estatuto .breadcrumbs{
  color: var(--muted-2);
  font-size: 13px;
  margin-bottom: 10px;
}
.page-estatuto .breadcrumbs a{
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.page-estatuto .breadcrumbs a:hover{
  color: var(--text);
  border-bottom-color: rgba(126,255,185,.35);
}
.page-estatuto h1{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page-estatuto .page-hero p{
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- Main layout ---------- */
.page-estatuto main{
  padding: 22px 0 50px;
}
.page-estatuto .grid.single{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* ---------- Card premium (glass + borda + acento) ---------- */
.page-estatuto .card{
  background: rgba(255,255,255,.045);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.page-estatuto .card.accent{
  position: relative;
  padding: 18px;
  overflow: hidden;
}
.page-estatuto .card.accent::before{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(900px 260px at 20% 0%, rgba(126,255,185,.14), transparent 60%);
  pointer-events:none;
}
.page-estatuto .card.accent::after{
  content:"";
  position:absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(126,255,185,.95), rgba(21,145,78,.65));
  opacity: .95;
}
.page-estatuto .card.accent > *{
  position: relative;
}
.page-estatuto .card h3{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.page-estatuto .spacer{ height: 14px; }

/* ---------- Actions + Buttons ultra profissionais ---------- */
.page-estatuto .actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-estatuto .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: 0 10px 25px rgba(0,0,0,.24);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  will-change: transform;
}
.page-estatuto .btn:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.25);
  background: rgba(255,255,255,.085);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
}
.page-estatuto .btn:active{ transform: translateY(0px); }

.page-estatuto .btn.primary{
  border-color: rgba(126,255,185,.26);
  background: linear-gradient(180deg, rgba(21,145,78,.95), rgba(13,83,45,.92));
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}
.page-estatuto .btn.primary:hover{
  border-color: rgba(126,255,185,.45);
  box-shadow: 0 22px 55px rgba(0,0,0,.48);
}

/* ---------- Acessibilidade (foco bonito) ---------- */
.page-estatuto a:focus-visible,
.page-estatuto button:focus-visible{
  outline: 3px solid rgba(126,255,185,.55);
  outline-offset: 3px;
  border-radius: 12px;
}

/* ---------- Footer polish + fix telefone ---------- */
.page-estatuto .footer{
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
}
.page-estatuto .footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 0;
}
.page-estatuto .footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.page-estatuto .footer-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}
.page-estatuto .footer-name{
  font-size: 16px;
  letter-spacing: -0.01em;
}
.page-estatuto .footer-sub{
  color: var(--muted-2);
  font-size: 12.5px;
  margin-top: 3px;
  max-width: 60ch;
}
.page-estatuto .footer-mid{
  padding: 18px 0 10px;
}
.page-estatuto .footer-grid-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.page-estatuto .footer-col{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.page-estatuto .footer-col h4{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(238,244,239,.86);
}
.page-estatuto .footer-col p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.page-estatuto .footer-col a{
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.page-estatuto .footer-col a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}
.page-estatuto .footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted-2);
}
.page-estatuto .footer-dev a{
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.page-estatuto .footer-dev a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}

/* ---------- Responsivo ---------- */
@media (max-width: 920px){
  .page-estatuto .footer-grid-3{
    grid-template-columns: 1fr;
  }
  .page-estatuto .menu{ display:none; }
  .page-estatuto .burger{ display:inline-flex; }
}
@media (max-width: 520px){
  .page-estatuto .brand-txt span{ display:none; }
  .page-estatuto .actions{ flex-direction: column; }
  .page-estatuto .btn{ width: 100%; }
  .page-estatuto .page-hero{ padding: 34px 0 18px; }
}

/* ---------- Respeita usuários com menos animação ---------- */
@media (prefers-reduced-motion: reduce){
  .page-estatuto *{
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
/* =========================================================
   AEFoeste — Style System (site inteiro) — versão premium
   Autor: você + eu (sem frameworks)
   ========================================================= */

/* ---------- Reset leve + base ---------- */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{ margin: 0; min-height: 100%; }
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }
input, textarea{ font: inherit; }

:root{
  /* Cores institucionais */
  --green-950:#062513;
  --green-900:#0a3e22;
  --green-800:#0d532d;
  --green-700:#0f6b3a;
  --green-600:#15914e;

  /* Neutros */
  --bg-950:#070b09;
  --bg-900:#0b100d;
  --bg-850:#0e1511;

  /* Texto */
  --text: #eef4ef;
  --muted: rgba(238,244,239,.78);
  --muted-2: rgba(238,244,239,.62);

  /* Acento */
  --accent: #7effb9;
  --accent-2: rgba(126,255,185,.18);
  --accent-3: rgba(126,255,185,.10);

  /* UI */
  --card: rgba(255,255,255,.045);
  --card-2: rgba(255,255,255,.03);
  --stroke: rgba(255,255,255,.10);
  --stroke-2: rgba(255,255,255,.14);

  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,.35);
  --shadow-strong: 0 18px 50px rgba(0,0,0,.5);

  --max: 1100px;
}

/* Tipografia */
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, "Noto Sans", "Liberation Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(21,145,78,.22), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(126,255,185,.12), transparent 55%),
    linear-gradient(180deg, var(--bg-950), var(--bg-900) 55%, var(--bg-850));
  line-height: 1.55;
}

/* Seleção */
::selection{
  background: rgba(126,255,185,.25);
  color: var(--text);
}

/* Container */
.container{
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

/* Skip link (acessibilidade) */
.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 16px;
  top: 16px;
  width:auto;
  height:auto;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0,0,0,.65);
  border: 1px solid rgba(126,255,185,.35);
  z-index: 9999;
}

/* =========================================================
   Topbar
   ========================================================= */
.topbar{
  background: rgba(0,0,0,.28);
  border-bottom: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
}
.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 10px 0;
}
.topbar .left{
  display:flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13.5px;
}
.topbar a{
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.topbar a:hover{
  border-bottom-color: rgba(126,255,185,.45);
}
.ig-link{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 20px rgba(0,0,0,.22);
  transition: 160ms ease;
}
.ig-link:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.25);
}

/* =========================================================
   Header / Navbar
   ========================================================= */
header{
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7,11,9,.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 220px;
}
.brand-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,.35));
}
.brand-txt strong{
  display:block;
  letter-spacing: -0.02em;
  font-size: 16px;
  line-height: 1.1;
}
.brand-txt span{
  display:block;
  color: var(--muted-2);
  font-size: 12.5px;
  line-height: 1.25;
  margin-top: 4px;
}

/* Menu desktop */
.menu{
  display:flex;
  gap: 10px;
  align-items:center;
}
.menu a{
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .2px;
  border: 1px solid transparent;
  background: transparent;
  transition: 160ms ease;
}
.menu a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}
.menu a[aria-current="page"]{
  color: var(--text);
  background: rgba(126,255,185,.10);
  border-color: rgba(126,255,185,.22);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

/* Burger */
.burger{
  display:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .4px;
  transition: 160ms ease;
}
.burger:hover{ border-color: rgba(126,255,185,.22); }

/* Drawer mobile */
.drawer{
  display:none;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(7,11,9,.78);
  backdrop-filter: blur(14px);
}
.drawer .links{
  display:grid;
  gap: 8px;
  padding: 12px 0 16px;
}
.drawer .links a{
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.drawer .links a:hover{
  color: var(--text);
  border-color: rgba(126,255,185,.22);
}
.drawer.open{ display:block; }

/* =========================================================
   Hero / Page Hero
   ========================================================= */
.page-hero{
  padding: 44px 0 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset: -1px;
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(21,145,78,.25), transparent 65%),
    radial-gradient(700px 540px at 100% 20%, rgba(126,255,185,.13), transparent 60%);
  pointer-events:none;
}
.page-hero .container{ position: relative; }
.breadcrumbs{
  color: var(--muted-2);
  font-size: 13px;
  margin-bottom: 10px;
}
.breadcrumbs a{
  color: var(--muted);
  border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover{
  color: var(--text);
  border-bottom-color: rgba(126,255,185,.35);
}
.page-hero h1{
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.page-hero p{
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 75ch;
  font-size: 16px;
  line-height: 1.55;
}

/* Seções gerais */
main{ padding: 22px 0 50px; }
.spacer{ height: 14px; }

/* =========================================================
   Componentes: Card / Button / Badge / Tag / Inputs
   ========================================================= */
.card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 18px;
}
.card.accent{
  position: relative;
  overflow: hidden;
}
.card.accent::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 260px at 20% 0%, rgba(126,255,185,.14), transparent 60%);
  pointer-events:none;
}
.card.accent::after{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width:4px;
  background: linear-gradient(180deg, rgba(126,255,185,.95), rgba(21,145,78,.65));
  opacity:.95;
}
.card.accent > *{ position: relative; }

.card h2, .card h3, .card h4{
  margin: 0;
  letter-spacing: -0.02em;
}
.card h3{ font-size: 18px; }

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Botões */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 10px 25px rgba(0,0,0,.24);
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
  will-change: transform;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.25);
  background: rgba(255,255,255,.085);
  box-shadow: 0 16px 38px rgba(0,0,0,.32);
}
.btn:active{ transform: translateY(0); }

.btn.primary{
  border-color: rgba(126,255,185,.26);
  background: linear-gradient(180deg, rgba(21,145,78,.95), rgba(13,83,45,.92));
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}
.btn.primary:hover{
  border-color: rgba(126,255,185,.45);
  box-shadow: 0 22px 55px rgba(0,0,0,.48);
}

/* Badges e tags */
.badge{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(238,244,239,.90);
  font-size: 12.5px;
  font-weight: 800;
}
.tag{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(126,255,185,.09);
  border: 1px solid rgba(126,255,185,.18);
  color: rgba(238,244,239,.95);
  font-size: 12.5px;
  font-weight: 800;
}

/* Input */
.input{
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline: none;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.input::placeholder{ color: rgba(238,244,239,.52); }
.input:focus{
  border-color: rgba(126,255,185,.28);
  box-shadow: 0 14px 32px rgba(0,0,0,.25);
}

/* Acessibilidade (foco) */
a:focus-visible,
button:focus-visible,
input:focus-visible{
  outline: 3px solid rgba(126,255,185,.55);
  outline-offset: 3px;
  border-radius: 12px;
}

/* =========================================================
   Grids genéricos
   ========================================================= */
.grid.single{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.cards{
  display:grid;
  gap: 14px;
}

/* =========================================================
   Boletim (b-card) — boletim.html
   ========================================================= */
.toolbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.tool{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.tool .label{
  color: var(--muted);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .2px;
}
.tool.search{
  min-width: min(420px, 100%);
}

/* Chips filtro */
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: 160ms ease;
}
.chip:hover{
  color: var(--text);
  border-color: rgba(126,255,185,.22);
  background: rgba(255,255,255,.075);
}
.chip.is-active{
  color: var(--text);
  background: rgba(126,255,185,.10);
  border-color: rgba(126,255,185,.28);
  box-shadow: 0 12px 28px rgba(0,0,0,.30);
}

.b-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transition: 180ms ease;
}
.b-card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.b-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.b-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.meta{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.b-desc{
  margin: 12px 0 0;
  color: var(--muted);
}
.b-actions{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

/* =========================================================
   Eventos (e-card) — eventos.html
   ========================================================= */
.e-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px;
  transition: 180ms ease;
}
.e-card:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.e-top{
  display:grid;
  grid-template-columns: 120px 1fr auto;
  gap: 14px;
  align-items:flex-start;
}
.e-when{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align:left;
}
.e-date{
  display:block;
  font-weight: 1000;
  letter-spacing: .2px;
}
.e-main
.e-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.e-desc{
  margin: 10px 0 0;
  color: var(--muted);
}
.e-tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.e-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

/* Em telas pequenas, eventos vira 1 coluna */
@media (max-width: 820px){
  .e-top{
    grid-template-columns: 1fr;
  }
  .e-actions{
    justify-content:flex-start;
  }
}

/* =========================================================
   Diretorias (mgmt) — diretorias.html
   ========================================================= */
.mgmt-grid{
  display:grid;
  gap: 14px;
}
.mgmt{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-soft);
  transition: 180ms ease;
}
.mgmt:hover{
  transform: translateY(-2px);
  border-color: rgba(126,255,185,.18);
  box-shadow: 0 18px 44px rgba(0,0,0,.42);
}
.mgmt-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.mgmt-title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.mgmt-sub{
  margin: 6px 0 0;
  color: var(--muted-2);
  font-weight: 900;
}
.mgmt-cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 820px){
  .mgmt-cards{ grid-template-columns: 1fr; }
}

/* =========================================================
   Home (componentes gerais)
   - Se você tiver hero, seções, parceiros, etc, isso ajuda
   ========================================================= */
.section{
  padding: 26px 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.section-title{
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.section-desc{
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 75ch;
}

/* Grade de cards genérica */
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
@media (max-width: 920px){
  .grid-2, .grid-3{ grid-template-columns: 1fr; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer{
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.20);
  backdrop-filter: blur(10px);
}
.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px 0;
}
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-logo{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}
.footer-name{
  font-size: 16px;
  letter-spacing: -0.01em;
}
.footer-sub{
  color: var(--muted-2);
  font-size: 12.5px;
  margin-top: 3px;
  max-width: 60ch;
}
.social{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.social:hover{
  border-color: rgba(126,255,185,.22);
  transform: translateY(-1px);
}

.footer-mid{ padding: 18px 0 10px; }
.footer-grid-3{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.footer-col{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.footer-col h4{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(238,244,239,.86);
}
.footer-col p{
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.footer-col a{
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.footer-col a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}
.footer-cnpj{
  margin-top: 10px !important;
  color: rgba(238,244,239,.70);
  font-weight: 800;
}

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: var(--muted-2);
}
.footer-dev a{
  color: var(--text);
  border-bottom: 1px solid transparent;
}
.footer-dev a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}

/* =========================================================
   Responsivo global
   ========================================================= */
@media (max-width: 920px){
  .menu{ display:none; }
  .burger{ display:inline-flex; }
  .footer-grid-3{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .brand-txt span{ display:none; }
  .actions{ flex-direction: column; }
  .btn{ width: 100%; }
  .page-hero{ padding: 34px 0 18px; }
  .tool.search{ min-width: 100%; }
}

/* =========================================================
   Redução de movimento (acessibilidade)
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  *{
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
/* Remove a listra (barra vertical) mas mantém o card accent */
.card.accent::after{
  display: none !important;
}
/* =========================================================
   Footer — Executive Clean Upgrade
   Cole no FINAL do style.css
   ========================================================= */

.footer{
  margin-top: 56px;
  background:
    radial-gradient(900px 260px at 15% 0%, rgba(126,255,185,.10), transparent 60%),
    radial-gradient(900px 280px at 90% 10%, rgba(21,145,78,.12), transparent 65%),
    rgba(0,0,0,.18);
  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.footer .container{
  padding: 18px 0 0;
}

/* faixa superior discreta (executivo) */
.footer::before{
  content:"";
  display:block;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(126,255,185,.55), transparent);
  opacity: .55;
}

/* Top */
.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 18px 0 16px;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 260px;
}

.footer-logo{
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,.45));
}

.footer-name{
  font-size: 16px;
  letter-spacing: -0.02em;
}

.footer-sub{
  color: rgba(238,244,239,.62);
  font-size: 12.5px;
  margin-top: 4px;
  line-height: 1.35;
  max-width: 58ch;
}

/* social pill mais elegante */
.footer .social{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(238,244,239,.92);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  transition: 160ms ease;
}
.footer .social:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.22);
  background: rgba(255,255,255,.085);
}

/* Mid grid: mais clean e alinhado */
.footer-mid{
  padding: 14px 0 16px;
}

.footer-grid-3{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1.4fr;
  gap: 14px;
}

/* Cards mais “executivos”: menos borda, mais vidro */
.footer-col{
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  transition: 160ms ease;
}
.footer-col:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.16);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

/* Títulos com cara de “seção” */
.footer-col h4{
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(238,244,239,.72);
}

.footer-col p{
  margin: 0;
  color: rgba(238,244,239,.88);
  line-height: 1.55;
  font-weight: 650;
}

/* Links: discreto e premium */
.footer-col a{
  color: rgba(238,244,239,.92);
  border-bottom: 1px solid transparent;
}
.footer-col a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}

/* CNPJ menor, mais “institucional” */
.footer-cnpj{
  margin-top: 10px !important;
  color: rgba(238,244,239,.62);
  font-weight: 750;
  font-size: 12.5px;
}

/* Bottom: bem clean */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(238,244,239,.55);
}

.footer-dev{
  color: rgba(238,244,239,.55);
}
.footer-dev a{
  color: rgba(238,244,239,.82);
  font-weight: 850;
  border-bottom: 1px solid transparent;
}
.footer-dev a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}

/* Responsivo */
@media (max-width: 920px){
  .footer-grid-3{
    grid-template-columns: 1fr;
  }
  .footer-top{
    flex-direction: column;
    align-items:flex-start;
  }
  .footer .social{
    align-self:flex-start;
  }
}
.footer-dev{
  font-size: 13.5px;
  color: rgba(238,244,239,.62);
}
.footer-dev a{
  font-weight: 1000;
  color: rgba(238,244,239,.95);
  border-bottom: 1px solid rgba(126,255,185,.35);
}
.footer-dev a:hover{
  border-bottom-color: rgba(126,255,185,.60);
}
/* =========================================================
   FOOTER — híbrido (premium + clean) + FUNDO antigo mais escuro
   Cole no FINAL do style.css
   ========================================================= */

/* Fundo do footer: volta pro escuro “antigo”, sem faixa verde clara */
.footer{
  margin-top: 56px;

  /* fundo mais escuro e profundo */
  background:
    radial-gradient(1200px 420px at 20% -20%, rgba(21,145,78,.12), transparent 60%),
    radial-gradient(900px 420px at 110% 0%, rgba(126,255,185,.06), transparent 55%),
    linear-gradient(180deg, rgba(7,11,9,.98), rgba(7,11,9,.92) 45%, rgba(7,11,9,.98));

  border-top: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

/* remove qualquer “listra/linha” superior que possa estar vindo de outro bloco */
.footer::before{
  content:"";
  display:none !important;
}

/* Top: brand + social alinhados e com respiro */
.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 18px 0 14px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Brand mais clean */
.footer-brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.55));
}
.footer-name{
  font-size: 16px;
  letter-spacing: -0.02em;
}
.footer-sub{
  color: rgba(238,244,239,.62);
  font-size: 12.5px;
  line-height: 1.35;
  margin-top: 4px;
  max-width: 60ch;
}

/* Social pill mais discreto */
.footer .social{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(238,244,239,.90);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: 160ms ease;
}
.footer .social:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.22);
  background: rgba(255,255,255,.08);
}

/* Mid: cards menores e mais “executivos” (menos peso) */
.footer-mid{
  padding: 14px 0 10px;
}

.footer-grid-3{
  display:grid;
  grid-template-columns: 1.15fr 0.9fr 1.35fr;
  gap: 12px;
}

/* Cards compactos e clean */
.footer-col{
  background: rgba(255,255,255,.028);              /* mais leve */
  border: 1px solid rgba(255,255,255,.07);         /* borda mais sutil */
  border-radius: 14px;
  padding: 12px 14px;                               /* menor */
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  transition: 160ms ease;
}
.footer-col:hover{
  transform: translateY(-1px);
  border-color: rgba(126,255,185,.14);
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
}

/* Título de seção bem executivo */
.footer-col h4{
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(238,244,239,.68);
}

/* Conteúdo com contraste melhor */
.footer-col p{
  margin: 0;
  color: rgba(238,244,239,.88);
  line-height: 1.55;
  font-weight: 650;
}
.footer-col a{
  color: rgba(238,244,239,.92);
  border-bottom: 1px solid transparent;
}
.footer-col a:hover{
  border-bottom-color: rgba(126,255,185,.35);
}

/* CNPJ mais discreto */
.footer-cnpj{
  margin-top: 8px !important;
  color: rgba(238,244,239,.58);
  font-weight: 750;
  font-size: 12.5px;
}

/* Bottom: clean e com seu nome mais visível */
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0 18px;
  border-top: 1px solid rgba(255,255,255,.06);
  color: rgba(238,244,239,.52);
}

/* Seu nome em “pill” discreta (sem chamar mais que a entidade) */
.footer-dev{
  color: rgba(238,244,239,.55);
  font-size: 13px;
}
.footer-dev a{
  display:inline-flex;
  align-items:center;
  margin-left: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .02em;
  color: rgba(238,244,239,.94);
  background: rgba(126,255,185,.08);
  border: 1px solid rgba(126,255,185,.18);
  box-shadow: 0 10px 24px rgba(0,0,0,.26);
  border-bottom: none !important;
  transition: 160ms ease;
}
.footer-dev a:hover{
  transform: translateY(-1px);
  background: rgba(126,255,185,.12);
  border-color: rgba(126,255,185,.28);
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
}

/* Responsivo */
@media (max-width: 920px){
  .footer-grid-3{ grid-template-columns: 1fr; }
  .footer-top{
    flex-direction: column;
    align-items:flex-start;
  }
  .footer .social{ align-self:flex-start; }
}
