/* ==========================================================================
   GF Digital - Folha de estilos institucional
   Marca operada por 56.202.441 FELIPE BOTTI GALENDE - CNPJ 56.202.441/0001-20
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --ink: #111827;
  --ink-soft: #1f2937;
  --ink-mid: #374151;
  --text: #232b39;
  --muted: #5a6473;
  --muted-light: #66707f;

  --bg: #fbfbfc;
  --surface: #ffffff;
  --surface-alt: #f3f5f7;
  --line: #e3e7ec;
  --line-strong: #d2d8e0;

  --accent: #0e8674;
  --accent-strong: #0a6b5c;
  --accent-soft: #e7f3f0;
  --accent-bright: #35d6b7;

  --dark: #111827;
  --dark-2: #161f31;
  --dark-line: rgba(255, 255, 255, 0.12);
  --dark-text: #e9edf3;
  --dark-muted: #9ba6b6;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1160px;
  --header-h: 74px;

  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.05);
  --shadow: 0 12px 32px -18px rgba(17, 24, 39, 0.28);
  --shadow-lg: 0 28px 60px -32px rgba(17, 24, 39, 0.35);

  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. Reset e base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.15rem, 1.35rem + 3.4vw, 3.75rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.5rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.15rem, 1.02rem + 0.6vw, 1.4rem); }
h4 { font-size: 1.0625rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-strong); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

ul, ol { margin: 0 0 1.1em; padding-left: 1.25em; }
li { margin-bottom: 0.45em; }
li::marker { color: var(--accent); }

img, svg { max-width: 100%; }
strong { font-weight: 700; color: var(--ink-soft); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--accent-soft); color: var(--ink); }

/* --------------------------------------------------------------------------
   3. Utilitarios de layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 36px);
}

.container--narrow { max-width: 860px; }

.section { padding-block: clamp(60px, 8vw, 108px); }
.section--tight { padding-block: clamp(48px, 6vw, 76px); }
.section--alt { background: var(--surface-alt); }
.section--line { border-top: 1px solid var(--line); }

.section-head { max-width: 660px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.075rem; }
.section-head h2 { margin-bottom: 0.45em; }

.eyebrow {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.735rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 22px;
  height: 2px;
  margin-top: 0.6em;
  background: var(--accent);
  border-radius: 2px;
}
.section-head--center .eyebrow { justify-content: center; }

.lead { font-size: clamp(1.075rem, 1rem + 0.35vw, 1.2rem); color: var(--muted); }

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 14px; color: #fff; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   4. Botoes
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.2s var(--ease);
}
.btn svg { width: 17px; height: 17px; flex: none; }

.btn--primary { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn--primary:hover { background: var(--accent-strong); color: #fff; transform: translateY(-2px); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent-bright); color: var(--ink); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.32); }
.btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; transform: translateY(-2px); }

.btn--sm { min-height: 42px; padding: 10px 20px; font-size: 0.9rem; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--accent-strong);
  text-decoration: none;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.link-arrow:hover { color: var(--ink); }
.link-arrow:hover svg { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* --------------------------------------------------------------------------
   5. Cabecalho
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 251, 252, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 26px -24px rgba(17, 24, 39, 0.5);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Wordmark tipografica temporaria.
   Para usar uma logo em imagem, troque .brand__mark por
   <img src="assets/logo.svg" alt="GF Digital" class="brand__logo"> */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand__mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--ink);
  display: grid;
  place-items: center;
  flex: none;
}
.brand__mark svg { width: 18px; height: 18px; display: block; }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand__text span { font-weight: 400; color: var(--muted); }
.brand__logo { height: 34px; width: auto; display: block; }
.brand:hover .brand__text { color: var(--accent-strong); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.18s var(--ease), background-color 0.18s var(--ease);
}
.nav a:hover { color: var(--ink); background: var(--surface-alt); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 600; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.header-actions { display: flex; align-items: center; gap: 12px; flex: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle:hover { background: var(--surface-alt); }
.nav-toggle__bars { position: relative; width: 18px; height: 12px; }
.nav-toggle__bars span {
  position: absolute;
  left: 0; right: 0;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 5px; }
.nav-toggle__bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: inline-flex; }
  .header-actions .btn { display: none; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    display: block;
    padding: 12px clamp(20px, 4vw, 36px) 26px;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a {
    display: block;
    padding: 14px 4px;
    font-size: 1.02rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a:hover { background: transparent; color: var(--accent-strong); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn {
    display: inline-flex;
    margin-top: 18px;
    width: 100%;
    border-bottom: 0;
    color: #fff;
  }
}

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  background: var(--dark);
  color: var(--dark-text);
  overflow: hidden;
  isolation: isolate;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 30% 20%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 30% 20%, #000 20%, transparent 78%);
}
.hero__glow {
  position: absolute;
  z-index: -1;
  width: 620px; height: 620px;
  right: -180px; top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 214, 183, 0.2), transparent 62%);
  filter: blur(10px);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(64px, 9vw, 118px);
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  color: var(--accent-bright);
}
.hero__sub {
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.22rem);
  color: var(--dark-muted);
  max-width: 54ch;
  margin-bottom: 32px;
}
.hero .eyebrow { color: var(--accent-bright); }
.hero .eyebrow::before { background: var(--accent-bright); }

.hero__note {
  margin-top: 30px;
  font-size: 0.88rem;
  color: var(--dark-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__note svg { width: 16px; height: 16px; flex: none; color: var(--accent-bright); }

.hero__visual { position: relative; display: flex; justify-content: center; }
.hero__visual svg { width: 100%; max-width: 460px; height: auto; }

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
}
.facts__item { padding: 26px 8px 34px; }
.facts__item + .facts__item { border-left: 1px solid var(--dark-line); padding-left: 26px; }
.facts__value {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #fff;
  display: block;
}
.facts__label { font-size: 0.9rem; color: var(--dark-muted); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 380px; margin-inline: auto; }
}
@media (max-width: 640px) {
  .facts { grid-template-columns: 1fr; }
  .facts__item { padding: 20px 0; border-top: 1px solid var(--dark-line); }
  .facts__item:first-child { border-top: 0; }
  .facts__item + .facts__item { border-left: 0; padding-left: 0; }
}

/* --------------------------------------------------------------------------
   7. Cards e grades
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: clamp(18px, 2.2vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 32px);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              border-color 0.25s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}
.card h3 { margin-bottom: 0.5em; }
.card p { color: var(--muted); font-size: 1rem; margin-bottom: 0; }

.card__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  margin-bottom: 20px;
}
.card__icon svg { width: 23px; height: 23px; }

.card--wide { grid-column: span 2; }

.card--value {
  background: transparent;
  border: 0;
  border-top: 2px solid var(--ink);
  border-radius: 0;
  padding: 22px 0 0;
}
.card--value:hover { transform: none; box-shadow: none; }
.card--value h3 { font-size: 1.08rem; }

.feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.feature__icon {
  width: 42px; height: 42px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--accent-strong);
}
.feature__icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.05rem; margin-bottom: 0.35em; }
.feature p { color: var(--muted); font-size: 0.99rem; margin: 0; }

/* Passos "Como funciona" */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  counter-reset: step;
}
.step { position: relative; padding-top: 26px; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line-strong);
}
.step::after {
  content: "";
  position: absolute;
  top: -3px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.step__num {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--accent-strong);
  display: block;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.06rem; margin-bottom: 0.4em; }
.step p { color: var(--muted); font-size: 0.99rem; margin: 0; }

/* Bloco "Sobre" em duas colunas */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.split__aside {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.split__aside h3 { font-size: 1.05rem; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1rem;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(14, 134, 116, 0.35);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 12px;
  width: 5px; height: 8px;
  border: solid var(--accent-strong);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-2px);
}
.check-list strong { display: block; color: var(--ink); font-weight: 600; }

/* Historia */
.story {
  border-left: 2px solid var(--accent);
  padding-left: clamp(20px, 3vw, 34px);
  max-width: 760px;
}
.story__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 12px;
  display: block;
}
.story p { font-size: clamp(1.02rem, 0.97rem + 0.3vw, 1.14rem); color: var(--muted); }

/* --------------------------------------------------------------------------
   8. FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 820px; }
.faq__item {
  border-bottom: 1px solid var(--line);
  background: transparent;
}
.faq__item:first-of-type { border-top: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.1rem);
  font-weight: 600;
  color: var(--ink);
  transition: color 0.18s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--accent-strong); }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 12px; height: 12px;
  margin-top: 6px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(-135deg); }
.faq__answer { padding: 0 4px 24px; max-width: 68ch; }
.faq__answer p { color: var(--muted); margin-bottom: 0.9em; }
.faq__answer p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   9. Faixa de CTA
   -------------------------------------------------------------------------- */
.cta-panel {
  position: relative;
  background: var(--dark);
  color: var(--dark-text);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 64px);
  overflow: hidden;
  isolation: isolate;
}
.cta-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto -120px -160px auto;
  right: -120px; bottom: -160px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 214, 183, 0.18), transparent 65%);
}
.cta-panel h2 { color: #fff; max-width: 20ch; }
.cta-panel p { color: var(--dark-muted); max-width: 56ch; font-size: 1.06rem; }
.cta-panel .btn-row { margin-top: 30px; }

/* --------------------------------------------------------------------------
   10. Paginas internas
   -------------------------------------------------------------------------- */
.page-hero {
  margin-top: var(--header-h);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(44px, 6vw, 78px);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17, 24, 39, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 90% at 88% 10%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 88% 10%, #000, transparent 70%);
  pointer-events: none;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem); margin-bottom: 0.35em; }
.page-hero p { color: var(--muted); max-width: 62ch; font-size: 1.08rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--muted-light);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-strong); text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: var(--line-strong); }

.updated {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-size: 0.86rem;
  color: var(--muted);
}
.updated svg { width: 15px; height: 15px; color: var(--accent-strong); }

/* Layout dos documentos legais */
.legal-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.toc {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 22px 20px;
}
.toc h2 {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  font-weight: 700;
}
.toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; }
.toc li { margin: 0; counter-increment: toc; }
.toc a {
  display: block;
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.18s var(--ease);
}
.toc a::before {
  content: counter(toc, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--line-strong);
  top: 9px;
}
.toc a:hover { color: var(--ink); }
.toc a:hover::before { color: var(--accent); }

.legal-content { max-width: 74ch; }
.legal-content section { scroll-margin-top: calc(var(--header-h) + 24px); }
.legal-content section + section { margin-top: clamp(34px, 4vw, 52px); }
.legal-content h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.55rem);
  padding-top: 4px;
  margin-bottom: 0.6em;
}
.legal-content h3 { font-size: 1.05rem; margin-top: 1.6em; }
.legal-content p, .legal-content li { color: var(--text); }
.legal-content ul { padding-left: 1.15em; }
.legal-content li { margin-bottom: 0.6em; }

.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  margin: 26px 0;
}
.callout p { margin-bottom: 0.7em; font-size: 0.99rem; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { display: block; font-family: var(--font-display); margin-bottom: 4px; }

.data-list { margin: 0; }
.data-list dt {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 4px;
}
.data-list dd {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}
.data-list dd:last-child { margin-bottom: 0; }
.data-list dd a { color: var(--accent-strong); }

@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
  .toc { position: static; }
}

/* Pagina de contato */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
}
.contact-card--dark {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--dark-text);
}
.contact-card--dark h2, .contact-card--dark h3 { color: #fff; }
.contact-card--dark p { color: var(--dark-muted); }
.contact-card--dark .data-list dt { color: var(--dark-muted); }
.contact-card--dark .data-list dd { color: #fff; }
.contact-card--dark .data-list dd a { color: var(--accent-bright); }
.contact-card--dark hr { border-top-color: var(--dark-line); }

.email-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-alt);
  margin: 22px 0;
}
.email-box__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted-light);
  font-family: var(--font-display);
}
.email-box__value {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.2rem);
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  word-break: break-word;
}
.email-box__value:hover { color: var(--accent-strong); text-decoration: underline; }

.support-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 2px; }
.support-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
  color: var(--muted);
}
.support-list li:last-child { border-bottom: 0; }
.support-list svg { width: 18px; height: 18px; flex: none; margin-top: 4px; color: var(--accent-strong); }
.support-list strong { color: var(--ink); font-weight: 600; }

.address-block { font-style: normal; line-height: 1.65; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   11. Rodape
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--dark);
  color: var(--dark-muted);
  padding-top: clamp(48px, 6vw, 76px);
  font-size: 0.96rem;
}
.site-footer a { color: var(--dark-muted); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 4px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.1fr 1.25fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 52px);
}
.footer-brand .brand { color: #fff; margin-bottom: 18px; }
.footer-brand .brand__mark { background: #fff; }
.footer-brand .brand__mark svg { color: var(--ink); }
.footer-brand .brand__text span { color: var(--dark-muted); }
.footer-brand p { max-width: 40ch; line-height: 1.65; }

.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.footer-col h2 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 10px; }

.footer-info dt {
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 3px;
}
.footer-info dd { margin: 0 0 14px; color: #d5dbe4; line-height: 1.6; }
.footer-info dd a { color: #d5dbe4; }

.footer-note {
  border-top: 1px solid var(--dark-line);
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--dark-muted);
}
.footer-bottom {
  border-top: 1px solid var(--dark-line);
  padding: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-info { grid-column: span 2; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-info { grid-column: auto; }
  .footer-links { gap: 24px; }
}

/* --------------------------------------------------------------------------
   12. Grades responsivas
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card--wide { grid-column: auto; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  :root { --header-h: 66px; }
  .grid--3, .grid--2, .grid--4, .steps { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .header-actions .btn { width: auto; }
  .nav > .btn { width: 100%; }
  .brand__text { font-size: 1.05rem; }
}

/* --------------------------------------------------------------------------
   13. Animacoes de entrada
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

.no-js .reveal { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   14. Impressao
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .cta-panel, .toc, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; }
  .page-hero, .hero { margin-top: 0; }
  .legal-layout { grid-template-columns: 1fr; }
  a { text-decoration: underline; }
}

/* --------------------------------------------------------------------------
   15. Ajustes finais
   -------------------------------------------------------------------------- */
@media (min-width: 941px) {
  .nav > .btn { display: none; }
}

.hero__visual .spin {
  transform-origin: 230px 205px;
  animation: gf-spin 48s linear infinite;
}
.hero__visual .spin--reverse {
  transform-origin: 230px 205px;
  animation: gf-spin 68s linear infinite reverse;
}
@keyframes gf-spin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__visual .spin, .hero__visual .spin--reverse { animation: none; }
}

.steps { list-style: none; padding: 0; margin: 0; }
.brand-note { margin-bottom: 0; font-size: 0.95rem; color: var(--muted); }
.cta-panel .eyebrow { color: var(--accent-bright); }
.cta-panel .eyebrow::before { background: var(--accent-bright); }

.contact-links { margin-top: 22px; }
.section-head--flush { margin-bottom: 0; }
.section-head__action { margin-top: 24px; margin-bottom: 0; }

.contact-card--dark .eyebrow { color: var(--accent-bright); }
.contact-card--dark .eyebrow::before { background: var(--accent-bright); }

/* --------------------------------------------------------------------------
   16. Valores e missao
   -------------------------------------------------------------------------- */
.values-block { margin-top: clamp(40px, 5vw, 66px); }
.values-title { margin-bottom: 22px; }
.card--value h4 { font-size: 1.08rem; margin-bottom: 0.5em; }

.mission-panel { text-align: center; }
.mission-panel .eyebrow { justify-content: center; }
.mission-panel h2 { max-width: 22ch; margin-inline: auto; }
.mission-panel p { margin-inline: auto; }
