:root {
  --verde: #186133;
  --verde-escuro: #0f3d20;
  --verde-claro: #1e7a3e;
  --verde-soft: rgba(24,97,51,0.08);
  --amarelo: #fcad0a;
  --amarelo-soft: rgba(252,173,10,0.12);
  --amarelo-dark: #d48f00;
  --bg: #ffffff;
  --bg-2: #f5f7f5;
  --bg-3: #eef1ee;
  --bg-dark-section: #186133;
  --bg-dark-alt: #0f3d20;
  --text-1: #111a13;
  --text-2: #3d5040;
  --text-3: #6b806e;
  --text-inv: #ffffff;
  --text-inv-muted: rgba(255,255,255,0.75);
  --border: #dde5de;
  --border-subtle: #eaf0ea;
  --card-bg: #ffffff;
  --card-shadow: 0 1px 4px rgba(0,0,0,0.05), 0 4px 16px rgba(0,0,0,0.04);
  --card-shadow-hover: 0 8px 32px rgba(24,97,51,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --header-bg-transparent: transparent;
  --header-bg-solid: rgba(255,255,255,0.97);
  --header-border: rgba(0,0,0,0.07);
  --logo-pos: none;
  --logo-neg: block;
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 22px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

[data-theme="dark"] {
  --bg: #0c120d;
  --bg-2: #111811;
  --bg-3: #172019;
  --bg-dark-section: #0a1a0c;
  --bg-dark-alt: #071209;
  --text-1: #ffffff;
  --text-2: #e8eee8;
  --text-3: #c4ccc5;
  --border: #1e2d1f;
  --border-subtle: #192319;
  --card-bg: #131f14;
  --card-shadow: 0 1px 4px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
  --card-shadow-hover: 0 8px 32px rgba(24,97,51,0.25), 0 2px 8px rgba(0,0,0,0.3);
  --header-bg-solid: rgba(12,18,13,0.97);
  --header-border: rgba(255,255,255,0.06);
  --logo-pos: none;
  --logo-neg: block;
  --verde-soft: rgba(252,173,10,0.12);
}

[data-theme="dark"] .section-title em,
[data-theme="dark"] .hero__title em,
[data-theme="dark"] .hero__title strong,
[data-theme="dark"] .policy-card__value,
[data-theme="dark"] .policy-aside__nav a:hover,
[data-theme="dark"] .policy-aside__nav a.is-active {
  color: var(--amarelo);
}

[data-theme="dark"] .btn--outline {
  color: var(--amarelo);
  border-color: var(--amarelo);
}

[data-theme="dark"] .btn--outline:hover {
  background: var(--amarelo);
  color: var(--bg-dark-alt);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.72;
  overflow-x: hidden;
  transition: background .45s ease, color .35s ease;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 88px 0; }
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amarelo);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--text-1);
  letter-spacing: -.028em;
  margin-bottom: 16px;
}
.section-title--light { color: var(--text-inv); }
.section-sub {
  font-size: 1rem;
  color: var(--text-2);
  max-width: 700px;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 6px;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--verde); color: #fff; border-color: var(--verde); }
.btn--primary:hover { background: var(--verde-claro); border-color: var(--verde-claro); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,97,51,.3); }
.btn--secondary { background: var(--amarelo); color: var(--verde-escuro); border-color: var(--amarelo); }
.btn--secondary:hover { background: var(--amarelo-dark); border-color: var(--amarelo-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(252,173,10,.35); }
.btn--outline { background: transparent; color: var(--verde); border-color: var(--verde); }
.btn--outline:hover { background: var(--verde); color: #fff; transform: translateY(-2px); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.4,0,.2,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg-transparent);
  transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.header.is-scrolled {
  background: var(--header-bg-solid);
  box-shadow: 0 2px 24px rgba(0,0,0,.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--header-border);
}
.header.is-scrolled .header__top { border-bottom-color: var(--border-subtle); }
.header.is-scrolled .header__top a,
.header.is-scrolled .header__top-right a { color: var(--text-2); }
.header.is-scrolled .header__nav > a,
.header.is-scrolled .header__nav > .nav-dropdown > .nav-dropdown__trigger { color: var(--text-2); }
.header.is-scrolled .header__nav > a:hover,
.header.is-scrolled .header__nav > .nav-dropdown > .nav-dropdown__trigger:hover,
.header.is-scrolled .header__top-pill--outline:hover,
.header.is-scrolled .theme-toggle:hover {
  color: var(--verde);
}
.header.is-scrolled .logo-neg { display: none; }
.header.is-scrolled .logo-pos { display: block; }
[data-theme="dark"] .header.is-scrolled .logo-neg { display: block; }
[data-theme="dark"] .header.is-scrolled .logo-pos { display: none; }

.header__top {
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: border-color .4s ease;
}
.header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 44px;
  padding: 10px 0;
}
.header__logo img { height: 40px; width: auto; object-fit: contain; flex-shrink: 0; }
.logo-pos { display: var(--logo-pos); }
.logo-neg { display: var(--logo-neg); }
.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: rgba(255,255,255,.85); border: 1.5px solid rgba(255,255,255,.25); }
.header__top-pill--outline:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }
.header.is-scrolled .header__top-pill--outline { color: var(--verde); border-color: var(--verde); }
.header.is-scrolled .header__top-pill--outline:hover { background: var(--verde); color: #fff; }
.header__top-pill--solid { background: var(--amarelo); color: var(--verde-escuro); border: 1.5px solid var(--amarelo); }
.header__top-pill--solid:hover { background: var(--amarelo-dark); 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: rgba(255,255,255,.75);
  transition: all .3s ease;
}
.header__social a:hover { color: #fff; background: rgba(255,255,255,.1); }
.header.is-scrolled .header__social a { color: var(--text-3); }
.header.is-scrolled .header__social a:hover { color: var(--verde); background: var(--verde-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: rgba(255,255,255,.75);
  transition: all .3s ease;
  border: 1.5px solid rgba(255,255,255,.2);
}
.theme-toggle:hover { color: #fff; border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.header.is-scrolled .theme-toggle { color: var(--text-3); border-color: var(--border); }
.header.is-scrolled .theme-toggle:hover { border-color: var(--verde); background: var(--verde-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; justify-content: center; height: 50px; gap: 4px; }
.header__nav { display: flex; align-items: center; gap: 2px; }
.header__nav > a,
.header__nav > .nav-dropdown > .nav-dropdown__trigger {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 13px;
  border-radius: 5px;
  white-space: nowrap;
  color: rgba(255,255,255,.85);
  transition: all .3s ease;
}
.header__nav > a:hover,
.header__nav > .nav-dropdown > .nav-dropdown__trigger:hover { color: #fff; background: rgba(255,255,255,.1); box-shadow: 0 0 0 1.5px rgba(255,255,255,.45); }
.header__nav > a.is-current { background: rgba(255,255,255,.14); color: #fff; }
.header.is-scrolled .header__nav > a.is-current { background: var(--verde-soft); color: var(--verde); }
.nav-dropdown { position: relative; }
.nav-dropdown__trigger { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.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%;
  transform: translateX(-50%);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1), 0 2px 8px rgba(0,0,0,.06);
  opacity: 0;
  visibility: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.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;
  letter-spacing: .03em;
  color: var(--text-2);
  transition: all .25s ease;
}
.nav-dropdown__menu a:hover { background: var(--verde-soft); color: var(--verde); }

.header__hamburger {
  display: none;
  margin-left: auto;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.85);
  transition: all .3s ease;
}
.header.is-scrolled .header__hamburger { border-color: var(--border); color: var(--text-2); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: none; }
.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 30px;
}
.mobile-nav__brand img {
  height: 42px;
  width: auto;
  display: block;
}
.mobile-nav__close {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  color: var(--text-2);
}
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-nav__links a {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-1);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__links a svg { width: 18px; height: 18px; color: var(--text-3); }
.mobile-nav__btns { display: flex; flex-direction: column; gap: 10px; }

.hero--policy {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(15,61,32,.94) 0%, rgba(15,61,32,.82) 38%, rgba(15,61,32,.42) 70%, rgba(15,61,32,.2) 100%),
    url("/site/assets/optimized/bg-banner-1-1920.webp") center/cover no-repeat;
}

@media (max-width: 768px) {
  .hero--policy {
    background-image:
      linear-gradient(105deg, rgba(15,61,32,.94) 0%, rgba(15,61,32,.82) 38%, rgba(15,61,32,.42) 70%, rgba(15,61,32,.2) 100%),
      url("/site/assets/optimized/bg-banner-1-960.webp");
  }
}
.hero--policy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(252,173,10,.18) 0%, transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(255,255,255,.08) 0%, transparent 22%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 110px 0 104px;
}
.hero__content {
  display: block;
  max-width: 820px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
}
.hero__eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amarelo);
}
.hero__title {
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
  max-width: 820px;
  margin-bottom: 20px;
}
.hero__title em { font-style: normal; color: var(--amarelo); }
.hero__summary {
  font-size: 1.02rem;
  max-width: 720px;
  color: rgba(255,255,255,.82);
}
.hero__panel {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 26px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.hero__panel-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.58);
  margin-bottom: 14px;
}
.hero__panel-list { display: grid; gap: 14px; }
.hero__panel-item {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.hero__panel-item:last-child { padding-bottom: 0; border-bottom: none; }
.hero__panel-kicker {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero__panel-value { font-size: .95rem; color: #fff; }

.policy-overview {
  position: relative;
  margin-top: -54px;
  z-index: 2;
}
.policy-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.policy-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--card-shadow);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.policy-card:hover {
  transform: translateY(-4px);
  border-color: var(--verde);
  box-shadow: var(--card-shadow-hover);
}
.policy-card__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--verde);
  background: var(--verde-soft);
}
.policy-card__icon svg {
  width: 22px;
  height: 22px;
}
.policy-card__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.policy-card__value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--verde);
  line-height: 1.35;
}
.policy-card__text {
  font-size: .88rem;
  color: var(--text-2);
  margin-top: 10px;
}

.policy-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}
.policy-aside {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
}
.policy-aside__panel {
  background: linear-gradient(180deg, var(--card-bg) 0%, color-mix(in srgb, var(--card-bg) 88%, var(--bg-2)) 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--card-shadow);
}
.policy-aside__title {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  margin-bottom: 16px;
}
.policy-aside__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.policy-aside__nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-2);
  font-size: .9rem;
  font-weight: 600;
  transition: all .25s ease;
}
.policy-aside__nav a:hover,
.policy-aside__nav a.is-active {
  color: var(--verde);
  background: var(--verde-soft);
}
.policy-aside__meta {
  display: grid;
  gap: 10px;
  color: var(--text-2);
  font-size: .88rem;
}
.policy-aside__meta strong {
  display: block;
  color: var(--text-1);
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.policy-content { display: grid; gap: 26px; }
.policy-section {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 34px;
  box-shadow: var(--card-shadow);
}
.policy-section--accent {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-3) 74%, var(--card-bg)) 0%, var(--card-bg) 100%);
}
.policy-section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.policy-section__heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.policy-section__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 16px;
  color: var(--verde);
  background: var(--verde-soft);
}
.policy-section--accent .policy-section__icon {
  color: var(--verde-escuro);
  background: rgba(252,173,10,.16);
}
.policy-section__icon svg {
  width: 23px;
  height: 23px;
}
.policy-section__kicker {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--amarelo-dark);
  margin-bottom: 10px;
}
.policy-section__title {
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--text-1);
}
.policy-section__body { display: grid; gap: 16px; }
.policy-section__body p { color: var(--text-2); }

.principles-grid,
.concepts-grid,
.cookies-grid,
.actions-grid {
  display: grid;
  gap: 16px;
}
.principles-grid { grid-template-columns: repeat(2, 1fr); }
.concepts-grid { grid-template-columns: repeat(2, 1fr); }
.cookies-grid { grid-template-columns: repeat(2, 1fr); }
.actions-grid { grid-template-columns: repeat(3, 1fr); }

.mini-card {
  background: color-mix(in srgb, var(--card-bg) 92%, var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}
.mini-card__eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.mini-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 10px;
  line-height: 1.35;
}
.mini-card__text {
  color: var(--text-2);
  font-size: .9rem;
}

.rights-list {
  display: grid;
  gap: 12px;
  counter-reset: rights;
}
.rights-list li {
  position: relative;
  padding: 18px 20px 18px 64px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card-bg) 92%, var(--bg-2));
  color: var(--text-2);
}
.rights-list li::before {
  counter-increment: rights;
  content: counter(rights, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 18px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--verde-soft);
  color: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 800;
}
.rights-list strong { color: var(--text-1); display: block; margin-bottom: 4px; }

.split-note {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
}
.quote-panel {
  background: var(--verde-escuro);
  color: rgba(255,255,255,.82);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(15,61,32,.16);
}
.quote-panel strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.cta-band {
  background:
    radial-gradient(circle at 12% 16%, rgba(252,173,10,.18) 0%, transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255,255,255,.1) 0%, transparent 26%),
    linear-gradient(135deg, #12381f 0%, var(--verde-escuro) 42%, #1e6237 100%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 36px;
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
  box-shadow: 0 18px 44px rgba(15,61,32,.18);
}
.cta-band__copy { max-width: 520px; }
.cta-band__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--amarelo);
}
.cta-band__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.cta-band__title {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  max-width: 460px;
  margin-bottom: 14px;
}
.cta-band__text {
  color: rgba(255,255,255,.76);
  max-width: 500px;
  font-size: .96rem;
}
.cta-band__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.cta-action {
  min-height: 150px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  background: rgba(255,255,255,.08);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.cta-action:hover {
  transform: translateY(-3px);
  border-color: rgba(252,173,10,.65);
  background: rgba(255,255,255,.12);
  box-shadow: 0 14px 32px rgba(0,0,0,.16);
}
.cta-action--primary {
  color: var(--verde-escuro);
  border-color: var(--amarelo);
  background: var(--amarelo);
}
.cta-action--primary:hover {
  background: color-mix(in srgb, var(--amarelo) 92%, #fff);
  border-color: color-mix(in srgb, var(--amarelo) 72%, #fff);
}
.cta-action__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cta-action__icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--amarelo);
  background: rgba(252,173,10,.12);
}
.cta-action--primary .cta-action__icon {
  color: var(--verde-escuro);
  background: rgba(15,61,32,.12);
}
.cta-action__icon svg,
.cta-action__arrow svg {
  width: 18px;
  height: 18px;
}
.cta-action__arrow {
  color: currentColor;
  opacity: .72;
  transition: transform .25s ease, opacity .25s ease;
}
.cta-action:hover .cta-action__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}
.cta-action__label {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.cta-action__hint {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  line-height: 1.55;
}
.cta-action--primary .cta-action__hint {
  color: rgba(15,61,32,.72);
}

.footer { background: var(--verde-escuro); color: rgba(255,255,255,.75); }
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer__logo { margin-bottom: 20px; }
.footer__logo img { height: 80px; width: auto; filter: brightness(0) invert(1); }
.footer__tagline { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-bottom: 24px; max-width: 280px; }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: all .3s ease;
}
.footer__social a:hover { background: var(--amarelo); border-color: var(--amarelo); color: var(--verde-escuro); }
.footer__social svg { width: 15px; height: 15px; }
.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: color .3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer__links a::before {
  content: "";
  width: 6px;
  height: 1px;
  background: var(--amarelo);
  border-radius: 1px;
  flex-shrink: 0;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.4); }
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { font-size: .78rem; color: rgba(255,255,255,.4); transition: color .3s ease; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.8); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .hero__content,
  .policy-layout,
  .split-note,
  .cta-band { grid-template-columns: 1fr; }
  .policy-overview__grid,
  .actions-grid { grid-template-columns: repeat(2, 1fr); }
  .policy-aside { position: relative; top: 0; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__top-pill { display: none; }
  .header__social { display: none; }
  .header__bottom { display: none; }
  .hero__inner { padding: 132px 32px 128px; }
  .hero--policy { min-height: auto; }
  .hero__content { max-width: 100%; }
  .hero__title,
  .hero__summary { max-width: 100%; }
  .policy-overview {
    margin-top: -18px;
    padding-bottom: 30px;
  }
  .policy-overview .container { padding: 0 32px; }
  .policy-card { padding: 26px 24px; }
  .policy-overview__grid,
  .principles-grid,
  .concepts-grid,
  .cookies-grid,
  .actions-grid { grid-template-columns: 1fr; }
  .policy-layout { display: block; }
  .policy-aside { display: none; }
  .policy-content {
    gap: 0;
    overflow: hidden;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
  }
  .policy-section {
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .policy-section + .policy-section { border-top: 1px solid var(--border-subtle); }
  .policy-section__head {
    display: block;
    position: relative;
    margin: 0;
    padding: 20px 66px 20px 20px;
    border-bottom: 0;
    cursor: pointer;
    color: var(--text-1);
  }
  .policy-section__head::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--verde);
    background: color-mix(in srgb, var(--card-bg) 82%, var(--verde-soft));
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform .25s ease, background .25s ease, color .25s ease;
  }
  .policy-section.is-open .policy-section__head::after { content: "-"; }
  .policy-section.is-open .policy-section__head { color: var(--verde); }
  .policy-section.is-open .policy-section__head::after {
    color: #fff;
    background: var(--verde);
  }
  .policy-section__heading {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
  }
  .policy-section__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    color: var(--verde);
    background: var(--verde-soft);
  }
  .policy-section__icon svg {
    width: 24px;
    height: 24px;
  }
  .policy-section.is-open .policy-section__icon {
    color: var(--verde-escuro);
    background: var(--amarelo);
  }
  .policy-section__kicker { display: none; }
  .policy-section__title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .02em;
    text-transform: uppercase;
  }
  .policy-section > :not(.policy-section__head) { display: none; }
  .policy-section.is-open > .policy-section__body,
  .policy-section.is-open > .principles-grid,
  .policy-section.is-open > .concepts-grid,
  .policy-section.is-open > .cookies-grid,
  .policy-section.is-open > .actions-grid,
  .policy-section.is-open > .rights-list {
    display: grid;
    padding: 0 20px 24px;
  }
  .cta-band { padding: 28px 22px; }
  .cta-band__actions { grid-template-columns: 1fr; }
  .cta-action { min-height: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
