:root {
  --verde-floresta:    #044108;
  --verde-campo:       #046A38;
  --verde-energia:     #7ED957;
  --verde-energia-soft:#7ed95733;
  --dourado-accent:    #C8962E;
  --bg-primary:        #FFFFFF;
  --bg-secondary:      #F7F9F7;
  --bg-tertiary:       #EEF2EE;
  --text-primary:      #1A1A1A;
  --text-secondary:    #4A4A4A;
  --text-tertiary:     #7A7A7A;
  --border-color:      #E0E8E0;
  --border-subtle:     #E8EDE8;
  --card-bg:           #FFFFFF;
  --header-border:     rgba(0,0,0,0.06);
  --radius-lg:         14px;
}
[data-theme="dark"] {
  --bg-primary:    #0A0F0A;
  --bg-secondary:  #111611;
  --bg-tertiary:   #1A201A;
  --text-primary:  #E8EDE8;
  --text-secondary:#B0BCB0;
  --text-tertiary: #7A887A;
  --border-color:  #1E2A1E;
  --border-subtle: #1A241A;
  --card-bg:       #141A14;
  --header-border: rgba(255,255,255,0.06);
}

/* ─── RESET ───────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:100px; font-size:17px; }
body { font-family:'Montserrat',-apple-system,sans-serif; background:var(--bg-secondary); color:var(--text-primary); line-height:1.7; overflow-x:hidden; -webkit-font-smoothing:antialiased; }
a { text-decoration:none; color:inherit; }
img { max-width:100%; display:block; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
ul,ol { list-style:none; }

/* ─── CONTAINER ────────────────────────────────────────── */
.container { width:100%; max-width:1240px; margin:0 auto; padding:0 24px; }

/* ════════════════════════════════════════════════
   HEADER (igual ao index)
════════════════════════════════════════════════ */
.header {
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(255,255,255,0.98);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border-bottom:1px solid var(--border-subtle);
  box-shadow:0 2px 16px rgba(0,0,0,.06);
  transition:box-shadow .3s ease;
}
[data-theme="dark"] .header { background:rgba(10,15,10,0.98); }
.header.is-scrolled { box-shadow:0 2px 24px rgba(0,0,0,.10); }

.header__logo img { height:62px; width:auto; object-fit:contain; flex-shrink:0; }
.logo-light { display:block; }
.logo-dark  { display:none; }

.header__top { border-bottom:1px solid var(--border-subtle); }
.header__top-inner { display:flex; align-items:center; justify-content:space-between; padding:10px 0; }
.header__top-right { display:flex; align-items:center; gap:6px; }

.header__top-pill { font-size:.75rem; font-weight:600; letter-spacing:.04em; padding:6px 14px; border-radius:20px; white-space:nowrap; transition:all .3s ease; }
.header__top-pill--outline { color:var(--verde-campo); border:1.5px solid var(--verde-campo); }
.header__top-pill--outline:hover { background:var(--verde-campo); color:#fff; }
.header__top-pill--solid { background:var(--verde-energia); color:var(--verde-floresta); border:1.5px solid var(--verde-energia); font-weight:700; }
.header__top-pill--solid:hover { background:#6bc947; transform:translateY(-1px); }

.header__social { display:flex; align-items:center; gap:4px; margin:0 8px; }
.header__social a { width:30px; height:30px; display:flex; align-items:center; justify-content:center; border-radius:6px; color:var(--text-tertiary); transition:all .3s ease; }
.header__social a:hover { color:var(--verde-campo); background:var(--verde-energia-soft); }
.header__social svg { width:16px; height:16px; }

.theme-toggle { width:34px; height:34px; border-radius:8px; display:flex; align-items:center; justify-content:center; color:var(--text-tertiary); transition:all .3s ease; border:1.5px solid var(--border-color); }
.theme-toggle:hover { color:var(--verde-campo); border-color:var(--verde-campo); background:var(--verde-energia-soft); }
.theme-toggle svg { width:16px; height:16px; }
.icon-sun { display:block; }
.icon-moon { display:none; }
[data-theme="dark"] .icon-sun { display:none; }
[data-theme="dark"] .icon-moon { display:block; }

.header__bottom { padding:7px 0 0; }
.header__bottom-inner { display:flex; align-items:center; height:50px; gap:4px; }
.header__nav { display:flex; align-items:center; gap:2px; }
.header__nav > a {
  font-size:.78rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  padding:8px 13px; border-radius:5px; white-space:nowrap; color:var(--text-secondary); transition:all .3s ease;
}
.header__nav > a:hover { color:var(--verde-campo); background:var(--verde-energia-soft); }
.header__nav > a.active { color:var(--verde-campo); }

/* Dropdown */
.nav-dropdown { position:relative; }
.nav-dropdown__menu::before { content:''; position:absolute; top:-10px; left:-16px; right:-16px; height:12px; }
.nav-dropdown__trigger {
  display:flex; align-items:center; gap:5px; cursor:pointer;
  font-size:.78rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  padding:8px 13px; border-radius:5px; white-space:nowrap; color:var(--text-secondary); transition:all .3s ease;
}
.nav-dropdown__trigger:hover { color:var(--verde-campo); background:var(--verde-energia-soft); }
.nav-dropdown__trigger svg { width:12px; height:12px; transition:transform .3s ease; }
.nav-dropdown:hover .nav-dropdown__trigger svg { transform:rotate(180deg); }
.nav-dropdown__menu {
  position:absolute; top:calc(100% + 8px); left:50%;
  background:var(--card-bg); border:1px solid var(--border-color); border-radius:var(--radius-lg);
  padding:8px; min-width:220px;
  box-shadow:0 8px 32px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.06);
  opacity:0; visibility:hidden; transform:translateX(-50%) translateY(-6px);
  transition:all .3s cubic-bezier(.4,0,.2,1); pointer-events:none; z-index:200;
}
.nav-dropdown:hover .nav-dropdown__menu { opacity:1; visibility:visible; transform:translateX(-50%) translateY(0); pointer-events:all; }
.nav-dropdown__menu a { display:block; padding:10px 14px; border-radius:6px; font-size:.78rem; font-weight:600; color:var(--text-secondary); transition:all .25s ease; text-transform:none; }
.nav-dropdown__menu a:hover { background:var(--verde-energia-soft); color:var(--verde-campo); }

.header__hamburger { display:none; margin-left:8px; width:38px; height:38px; align-items:center; justify-content:center; border-radius:7px; border:1.5px solid var(--border-color); color:var(--text-secondary); transition:all .3s ease; }
.header__hamburger:hover { border-color:var(--verde-campo); color:var(--verde-campo); }
.header__mobile-nav { display:none; flex-direction:column; background:var(--bg-primary); border-top:1px solid var(--border-color); padding:12px 0 16px; }
.header__mobile-nav.open { display:flex; }
.header__mobile-nav a { padding:12px 24px; font-size:.85rem; font-weight:600; letter-spacing:.04em; text-transform:uppercase; color:var(--text-secondary); transition:all .25s ease; }
.header__mobile-nav a:hover { color:var(--verde-campo); background:var(--verde-energia-soft); }

/* ════════════════════════════════════════════════
   HERO BANNER
════════════════════════════════════════════════ */
.policy-hero {
  position:relative; min-height:340px;
  display:flex; align-items:flex-end;
  overflow:hidden;
  padding-top:94px; /* header height */
}
.policy-hero__bg {
  position:absolute; inset:0; z-index:1;
}
.policy-hero__bg img { width:100%; height:100%; object-fit:cover; object-position:center 60%; }
.policy-hero__overlay {
  position:absolute; inset:0; z-index:2;
  background:linear-gradient(90deg, rgba(4,65,8,.96) 0%, rgba(4,106,56,.88) 50%, rgba(4,65,8,.7) 100%);
}
.policy-hero__content {
  position:relative; z-index:3; padding:48px 0 52px;
}
.policy-hero__eyebrow {
  font-size:.72rem; font-weight:700; letter-spacing:.25em; text-transform:uppercase;
  color:var(--verde-energia); margin-bottom:14px;
  display:flex; align-items:center; gap:10px;
}
.policy-hero__eyebrow::before { content:''; width:24px; height:2px; background:var(--verde-energia); border-radius:1px; }
.policy-hero__title {
  font-size:clamp(1.8rem,4vw,2.8rem); font-weight:800; line-height:1.1; letter-spacing:-.025em;
  color:#fff; margin-bottom:16px;
}
.policy-hero__subtitle {
  font-size:1rem; color:rgba(255,255,255,.65); max-width:560px; line-height:1.7;
}
.policy-hero__meta {
  display:flex; gap:32px; margin-top:28px;
}
.policy-hero__meta-item { }
.policy-hero__meta-label { font-size:.65rem; color:rgba(255,255,255,.35); text-transform:uppercase; letter-spacing:.12em; }
.policy-hero__meta-value { font-size:.82rem; font-weight:600; color:rgba(255,255,255,.7); margin-top:2px; }

/* ════════════════════════════════════════════════
   POLICY LAYOUT
════════════════════════════════════════════════ */
.policy-section-wrap {
  background:var(--bg-secondary);
  padding:64px 0 80px;
}
.policy-layout {
  display:grid;
  grid-template-columns:280px 1fr;
  gap:40px;
  align-items:start;
}

/* Aside */
.policy-aside { position:sticky; top:110px; }
.policy-aside__panel {
  background:var(--card-bg); border:1px solid var(--border-color); border-radius:var(--radius-lg);
  padding:24px; margin-bottom:16px;
}
.policy-aside__title {
  font-size:.68rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  color:var(--text-tertiary); margin-bottom:16px;
  padding-bottom:10px; border-bottom:1px solid var(--border-subtle);
}
.policy-aside__nav { display:flex; flex-direction:column; gap:2px; }
.policy-aside__nav a {
  display:flex; align-items:center; gap:8px;
  padding:9px 12px; border-radius:7px;
  font-size:.83rem; font-weight:500; color:var(--text-secondary);
  border-left:2px solid transparent;
  transition:all .2s ease;
}
.policy-aside__nav a:hover { color:var(--verde-campo); background:var(--verde-energia-soft); }
.policy-aside__nav a.active { color:var(--verde-campo); background:var(--verde-energia-soft); border-left-color:var(--verde-campo); font-weight:600; }
.policy-aside__meta { display:flex; flex-direction:column; gap:14px; font-size:.82rem; }
.policy-aside__meta strong { display:block; font-weight:600; color:var(--text-secondary); font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:3px; }
.policy-aside__meta a { color:var(--verde-campo); word-break:break-all; }
.policy-aside__meta a:hover { text-decoration:underline; }

/* Content */
.policy-content { display:flex; flex-direction:column; gap:16px; }

/* Section blocks */
.policy-block {
  background:var(--card-bg); border:1px solid var(--border-color); border-radius:var(--radius-lg);
  overflow:hidden;
}
.policy-block--accent { border-color:rgba(126,217,87,.3); }
.policy-block__head {
  display:flex; align-items:flex-start; gap:16px;
  padding:28px 28px 20px;
  border-bottom:1px solid var(--border-subtle);
}
.policy-block__icon {
  width:44px; height:44px; flex-shrink:0;
  background:var(--verde-energia-soft);
  border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--verde-campo);
}
.policy-block__icon svg { width:22px; height:22px; }
.policy-block__kicker { font-size:.68rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--verde-campo); margin-bottom:5px; }
.policy-block__title { font-size:1.12rem; font-weight:700; color:var(--text-primary); line-height:1.3; }
.policy-block__body { padding:24px 28px; font-size:.94rem; color:var(--text-secondary); line-height:1.75; }
.policy-block__body p + p { margin-top:14px; }

/* Mini cards grid */
.mini-grid { display:grid; gap:12px; margin-top:18px; }
.mini-grid--2 { grid-template-columns:repeat(2,1fr); }
.mini-grid--3 { grid-template-columns:repeat(3,1fr); }
.mini-grid--4 { grid-template-columns:repeat(2,1fr); }
.mini-card {
  background:var(--bg-secondary); border:1px solid var(--border-subtle); border-radius:10px;
  padding:18px 20px;
}
.mini-card__eyebrow { font-size:.68rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--verde-campo); margin-bottom:7px; }
.mini-card__title { font-size:.92rem; font-weight:700; color:var(--text-primary); margin-bottom:6px; line-height:1.3; }
.mini-card__text { font-size:.85rem; color:var(--text-tertiary); line-height:1.65; }
.mini-card__text a { color:var(--verde-campo) }

/* Quote panel */
.split-note { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:18px; }
.quote-panel {
  background:var(--verde-floresta); border-radius:10px; padding:20px 22px;
  font-size:.88rem; line-height:1.7; color:rgba(255,255,255,.75);
}
.quote-panel strong { display:block; color:#fff; font-size:.92rem; margin-bottom:10px; line-height:1.5; }

/* Rights list */
.rights-list { padding:24px 28px; display:flex; flex-direction:column; gap:0; }
.rights-list li {
  display:flex; gap:16px; align-items:flex-start;
  padding:18px 0; border-bottom:1px solid var(--border-subtle); font-size:.92rem; color:var(--text-secondary); line-height:1.65;
}
.rights-list li:last-child { border-bottom:none; }
.rights-list li .num {
  flex-shrink:0; width:32px; height:32px;
  background:var(--verde-energia-soft); color:var(--verde-campo);
  border-radius:8px; display:flex; align-items:center; justify-content:center;
  font-size:.72rem; font-weight:800; letter-spacing:.05em;
}
.rights-list li strong { color:var(--text-primary); display:block; margin-bottom:4px; font-size:.9rem; }

/* CTA band */
.cta-band {
  background:var(--verde-floresta); border-radius:var(--radius-lg);
  padding:40px; display:flex; align-items:center; justify-content:space-between; gap:32px;
  flex-wrap:wrap; margin-top:8px;
}
.cta-band__eyebrow { font-size:.68rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--verde-energia); margin-bottom:10px; }
.cta-band__title { font-size:1.35rem; font-weight:800; color:#fff; line-height:1.2; margin-bottom:10px; }
.cta-band__text { font-size:.88rem; color:rgba(255,255,255,.6); line-height:1.65; max-width:400px; }
.cta-band__actions { display:flex; flex-direction:column; gap:10px; flex-shrink:0; }
.cta-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:inherit; font-size:.85rem; font-weight:700; letter-spacing:.02em;
  padding:13px 24px; border-radius:8px; transition:all .25s ease; border:none; cursor:pointer; white-space:nowrap;
}
.cta-btn--primary { background:var(--verde-energia); color:var(--verde-floresta); }
.cta-btn--primary:hover { background:#6bc947; transform:translateY(-1px); }
.cta-btn--outline { background:transparent; color:rgba(255,255,255,.8); border:1.5px solid rgba(255,255,255,.25); }
.cta-btn--outline:hover { border-color:#fff; color:#fff; background:rgba(255,255,255,.08); }
.cta-btn svg { width:15px; height:15px; }

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer { background:var(--verde-floresta); padding:72px 0 0; color:rgba(255,255,255,0.7); }
.footer__top { display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:48px; padding-bottom:48px; border-bottom:1px solid rgba(255,255,255,0.08); }
.footer__brand img { width:180px; margin-bottom:18px; }
.footer__desc { font-size:.88rem; line-height:1.7; margin-bottom:24px; max-width:300px; }
.footer__socials { display:flex; gap:10px; }
.footer__social { width:36px; height:36px; display:flex; align-items:center; justify-content:center; border-radius:8px; border:1px solid rgba(255,255,255,0.12); color:rgba(255,255,255,0.6); transition:all .3s ease; }
.footer__social:hover { background:var(--verde-energia); border-color:var(--verde-energia); color:var(--verde-floresta); }
.footer__social svg { width:16px; height:16px; }
.footer__col-title { font-size:.8rem; font-weight:700; text-transform:uppercase; letter-spacing:.15em; color:rgba(255,255,255,.4); margin-bottom:20px; }
.footer__links { display:flex; flex-direction:column; gap:10px; }
.footer__link { font-size:.88rem; color:rgba(255,255,255,.6); transition:all .3s ease; }
.footer__link:hover { color:var(--verde-energia); transform:translateX(3px); }
.footer__bottom { display:flex; justify-content:space-between; align-items:center; padding:24px 0; font-size:.82rem; color:rgba(255,255,255,.35); }

/* ─── RESPONSIVE ──────────────────────────────── */
@media (max-width:1024px) {
  .header__nav { display:none; }
  .header__bottom { display:none; }
  .header__hamburger { display:flex; }
  .header__top-pill { display:none; }
  .header__social { display:none; }
  .header__top-right { gap:8px; }
  .policy-layout { grid-template-columns:1fr; }
  .policy-aside { position:static; }
  .split-note { grid-template-columns:1fr; }
  .mini-grid--3 { grid-template-columns:repeat(2,1fr); }
  .footer__top { grid-template-columns:1fr 1fr; gap:32px; }
}
@media (max-width:640px) {
  .policy-hero__meta { flex-wrap:wrap; gap:16px; }
  .mini-grid--2, .mini-grid--3, .mini-grid--4 { grid-template-columns:1fr; }
  .cta-band { flex-direction:column; }
  .policy-block__head { flex-direction:column; gap:12px; }
  .footer__top { grid-template-columns:1fr; gap:32px; }
  .footer__bottom { flex-direction:column; gap:8px; text-align:center; }
  .rights-list { padding:16px 20px; }
  .policy-block__body { padding:20px; }
}
