/* ==========================================================================
   GS BRASIL · Bookkeeping & Business Support
   Identidade institucional: navy, dourado e Manrope
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Base */
  --navy:        #0B2447;
  --navy-ink:    #04182E;
  --navy-soft:   #16345C;

  /* Acento */
  --gold:        #DC8A34;
  --gold-light:  #F3BD67;
  --gold-deep:   #A55424;   /* texto dourado sobre fundo claro */
  --gold-wash:   rgba(220, 138, 52, 0.12);
  /* Degrades metalicos do logotipo: um para fundo claro, outro para fundo escuro */
  --metal-claro-fundo:  linear-gradient(96deg, #A55424 0%, #BE6D2A 16%, #DC8A34 40%, #C87A2E 64%, #8E481D 100%);
  --metal-fundo-escuro: linear-gradient(96deg, #C77A2F 0%, #E79E45 24%, #F3BD67 46%, #DE9640 70%, #C87A2E 100%);

  /* Apoio */
  --green:       #1B5E3F;
  --brick:       #8B2635;
  --whatsapp:    #25D366;   /* verde oficial da marca WhatsApp */

  /* Neutros */
  --paper:       #FFFFFF;
  --paper-warm:  #F4F6F9;
  --ink:         #17202E;
  --ink-soft:    #566072;
  --ink-muted:   #8A93A3;
  --line:        #E2E6EC;
  --line-dark:   rgba(255, 255, 255, 0.14);

  /* Tipografia */
  --serif: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;  /* títulos */
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;  /* corpo */

  /* Espaçamento */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 22px;  --s-6: 28px;  --s-7: 38px;  --s-8: 52px;
  --s-9: 72px;  --s-10: 96px;

  /* Raio, discreto */
  --r-xs: 3px;
  --r-sm: 4px;
  --r-md: 6px;
  --r-lg: 10px;
  --r-xl: 16px;
  --r-full: 999px;

  --shadow-sm: 0 8px 22px rgba(11, 36, 71, 0.10);
  --shadow-md: 0 18px 40px rgba(11, 36, 71, 0.16);
  --shadow-lg: 0 24px 50px rgba(11, 36, 71, 0.22);

  --maxw: 1180px;
  --gutter: 28px;
  --nav-h: 74px;
  --ease: cubic-bezier(.2,.7,.3,1);
  --dur: 180ms;
}

/* --------------------------------------------------------------------------
   02. RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold-light); color: var(--navy-ink); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   03. IDIOMA PT / EN / ES
   -------------------------------------------------------------------------- */
html[data-lang="pt"] .en, html[data-lang="pt"] .es { display: none !important; }
html[data-lang="en"] .pt, html[data-lang="en"] .es { display: none !important; }
html[data-lang="es"] .pt, html[data-lang="es"] .en { display: none !important; }

/* --------------------------------------------------------------------------
   04. TIPOGRAFIA
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--s-4);
  text-wrap: balance;
}

.display, h1 { font-size: clamp(2.15rem, 1.5rem + 2.6vw, 3.25rem); }   /* 34 → 52 */
h2 { font-size: clamp(1.85rem, 1.4rem + 1.9vw, 2.65rem); }             /* 30 → 42 */
h3 { font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem); font-weight: 700; letter-spacing: -0.025em; }             /* 22 → 28 */
h4 { font-size: 1rem; font-weight: 700; line-height: 1.35; letter-spacing: -0.015em; }
h5 { font-size: .9375rem; font-weight: 700; letter-spacing: -0.015em; }

/* Tamanho visual independente do nivel semantico do cabecalho.
   Permite manter a hierarquia h1 > h2 > h3 sem saltos e ainda assim
   desenhar um h3 com o corpo de um h4, por exemplo. */
.as-h2 { font-size: clamp(1.85rem, 1.4rem + 1.9vw, 2.65rem); letter-spacing: -0.03em; line-height: 1.1; }
.as-h3 { font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem); letter-spacing: -0.025em; line-height: 1.1; }
.as-h4 { font-size: 1rem; font-weight: 700; line-height: 1.35; letter-spacing: -0.015em; }
.as-h5 { font-size: .9375rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.35; }

h1 em, h2 em { color: var(--gold); font-style: normal; }

.body-lg {
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-soft);
}
.small { font-size: .875rem; line-height: 1.6; }

.eyebrow {
  display: block;
  font-weight: 700;
  font-size: .78125rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 var(--s-3);
}

.text-muted { color: var(--ink-soft); }
.text-accent { color: var(--gold-deep); font-style: normal; }

/* Fundos escuros */
.is-dark { color: rgba(255,255,255,.76); }
.is-dark h1, .is-dark h2, .is-dark h3 { color: var(--paper); }
.is-dark h4, .is-dark h5 { color: var(--paper); }
.is-dark .body-lg { color: rgba(255,255,255,.72); }
.is-dark .eyebrow { color: var(--gold); }
.is-dark .text-accent { color: var(--gold-light); }
.is-dark .text-muted { color: rgba(255,255,255,.6); }
.is-dark h1 em, .is-dark h2 em { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   05. LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(52px, 4rem + 2vw, 96px); }
.section--lg { padding-block: clamp(60px, 5rem + 2vw, 112px); }
.section--sm { padding-block: clamp(40px, 3rem + 1vw, 64px); }

.bg-offwhite { background: var(--paper-warm); }
.bg-white    { background: var(--paper); }
.bg-soft     { background: var(--paper-warm); }
.bg-navy     { background: var(--navy); }
.bg-ink      { background: var(--navy-ink); }

.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.grid--editorial { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); align-items: stretch; }

.section-head { max-width: 46rem; margin-bottom: var(--s-8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { max-width: 20ch; }
.section-head--center h2 { max-width: 24ch; margin-inline: auto; }
.section-head .body-lg { margin-top: var(--s-4); max-width: 46ch; }
.section-head--center .body-lg { margin-inline: auto; }
.section-head--full { max-width: none; }
.section-head--full h2 { max-width: none; }
.section-head--full .body-lg { max-width: none; }

/* Subtitulo logo abaixo do H1 nas paginas internas */
.hero-sub {
  margin-top: var(--s-4);
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  font-weight: 600; color: var(--gold-light); max-width: 40ch;
}
.page-hero .hero-sub + .body-lg { margin-top: var(--s-3); }

/* Frase de abertura colada nos cards que ela apresenta */
.lead-cards {
  display: flex; align-items: center; gap: var(--s-4);
  margin: 0 0 var(--s-5);
  font-size: 1.0625rem; font-weight: 700; color: var(--navy);
}
.lead-cards::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.is-dark .lead-cards { color: var(--paper); }

.skip-link {
  position: absolute; left: -9999px;
  background: var(--navy-ink); color: var(--paper);
  padding: var(--s-3) var(--s-5); z-index: 999;
}
.skip-link:focus { left: 0; top: 0; }

/* --------------------------------------------------------------------------
   06. TEXTURA
   -------------------------------------------------------------------------- */
.tex { position: relative; overflow: hidden; }
.tex > * { position: relative; z-index: 1; }
.tex::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(220,138,52,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,138,52,.05) 1px, transparent 1px);
  background-size: 72px 72px;
}
.tex--light::before {
  background-image:
    linear-gradient(rgba(11,36,71,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,36,71,.035) 1px, transparent 1px);
}
.tex--glow::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 820px; height: 540px; left: 50%; bottom: -340px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(220,138,52,.16), transparent 68%);
}

/* --------------------------------------------------------------------------
   07. BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.005em;
  font-size: .90625rem;
  letter-spacing: .02em;
  padding: 15px 30px;
  border: 1.5px solid transparent;
  border-radius: var(--r-xs);
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--lime {                                   /* botão dourado, principal */
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-ink);
}
.btn--lime:hover { box-shadow: 0 10px 26px rgba(220,138,52,.38); }

.btn--dark { background: var(--navy); color: var(--paper); }
.btn--dark:hover { box-shadow: 0 8px 22px rgba(11,36,71,.28); }

.btn--green { background: var(--green); color: var(--paper); }
.btn--green:hover { box-shadow: 0 8px 22px rgba(27,94,63,.28); }

.btn--outline { background: transparent; color: var(--navy); border-color: rgba(11,36,71,.28); }
.btn--outline:hover { border-color: var(--navy); background: rgba(11,36,71,.04); }
.is-dark .btn--outline { color: var(--paper); border-color: rgba(243,189,103,.5); }
.is-dark .btn--outline:hover { background: rgba(220,138,52,.12); border-color: var(--gold-light); }

.btn--ghost { background: transparent; color: var(--navy); padding: 0 2px; }
.is-dark .btn--ghost { color: var(--gold-light); }

.btn--sm { padding: 11px 20px; font-size: .84375rem; }
.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.btn-row--center { justify-content: center; }

.btn-note {
  display: block;
  margin-top: 10px;
  font-size: .8125rem;
  color: var(--ink-soft);
}
.is-dark .btn-note { color: rgba(255,255,255,.6); }

/* --------------------------------------------------------------------------
   08. SETA
   -------------------------------------------------------------------------- */
.arrow {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-ink);
  flex-shrink: 0;
  transition: transform var(--dur) var(--ease);
}
.arrow svg { width: 13px; height: 13px; }
.arrow--24 { width: 22px; height: 22px; } .arrow--24 svg { width: 10px; height: 10px; }
.arrow--32 { width: 30px; height: 30px; }
.arrow--48 { width: 40px; height: 40px; } .arrow--48 svg { width: 17px; height: 17px; }
.arrow--green { background: var(--green); color: var(--paper); }
.arrow--dark  { background: var(--navy); color: var(--gold-light); }
.arrow--outline { background: transparent; color: var(--navy); border: 1px solid rgba(11,36,71,.25); }
.is-dark .arrow--outline { color: var(--gold-light); border-color: rgba(243,189,103,.4); }
.btn:hover .arrow, .card-link:hover .arrow, .svc:hover .arrow { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   09. AVATAR
   -------------------------------------------------------------------------- */
.avatar { display: block; border-radius: 50%; background: var(--navy-soft); object-fit: cover; flex-shrink: 0; }
.avatar--ring { box-shadow: 0 0 0 1px rgba(220,138,52,.55), 0 0 0 7px rgba(220,138,52,.14); }
.avatar--48 { width: 48px; height: 48px; }
.avatar--56 { width: 56px; height: 56px; }
.avatar--72 { width: 72px; height: 72px; }
.avatar--lg { width: clamp(150px, 22vw, 200px); height: clamp(150px, 22vw, 200px); }

.portrait {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s-3);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line-dark);
  margin-bottom: var(--s-5);
}
.portrait__name {
  font-size: 1.3rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--paper); margin: var(--s-2) 0 2px;
}
.portrait__role { font-size: .8125rem; font-weight: 600; color: var(--gold); margin: 0; letter-spacing: .01em; }

/* Cartao de apresentacao com o retrato em destaque */
.profile-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: var(--s-5);
  padding: clamp(28px, 3vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.profile-card__photo {
  /* largura e altura amarradas ao mesmo valor: o circulo nunca vira elipse */
  width: clamp(180px, 17vw, 230px);
  height: clamp(180px, 17vw, 230px);
  min-height: clamp(180px, 17vw, 230px);
  flex: 0 0 auto;
  border-radius: 50%; object-fit: cover; object-position: center top;
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--gold), 0 16px 38px rgba(11,36,71,.18);
}
.profile-card__info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.profile-card__name { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); }
.profile-card__role { font-size: 1rem; font-weight: 600; color: var(--gold-deep); }
.profile-card__meta { font-size: .8125rem; color: var(--ink-soft); }
.profile-card__cta { margin-top: auto; align-self: stretch; justify-content: center; }
.is-dark .profile-card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); box-shadow: none; }
.is-dark .profile-card__photo { box-shadow: 0 0 0 4px var(--navy-ink), 0 0 0 6px var(--gold), 0 16px 38px rgba(0,0,0,.4); }
.is-dark .profile-card__name { color: var(--paper); }
.is-dark .profile-card__role { color: var(--gold-light); }
.is-dark .profile-card__meta { color: rgba(255,255,255,.66); }

/* Credenciais dentro do cartao, com filete separando do nome */
.creds {
  list-style: none; margin: 0; padding: var(--s-5) 0 0;
  width: 100%; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: var(--s-3);
  text-align: left;
}
.creds li {
  display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px;
  font-size: .875rem; line-height: 1.45; color: var(--ink-soft);
}
.creds svg { width: 15px; height: 15px; margin-top: 3px; color: var(--gold-deep); }
.creds li:last-child { font-weight: 700; color: var(--navy); }
.creds li:last-child svg { color: var(--gold); }
.is-dark .creds { border-top-color: rgba(255,255,255,.16); }
.is-dark .creds li { color: rgba(255,255,255,.72); }
.is-dark .creds svg { color: var(--gold-light); }
.is-dark .creds li:last-child { color: var(--paper); }

.byline { display: flex; align-items: center; gap: var(--s-3); }
.byline__name { font-size: 1rem; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); }
.is-dark .byline__name { color: var(--paper); }
.byline__role { font-size: .8125rem; color: var(--ink-soft); }
.is-dark .byline__role { color: var(--gold); }

/* --------------------------------------------------------------------------
   10. PILLS
   -------------------------------------------------------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .71875rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-xs);
  background: var(--gold-wash);
  color: var(--gold-deep);
}
.pill--lime { background: var(--gold); color: var(--navy-ink); }
.pill--dark { background: var(--navy); color: var(--gold-light); }
.pill--outline { background: transparent; border: 1px solid var(--line); color: var(--ink-soft); }
.is-dark .pill { background: rgba(220,138,52,.16); color: var(--gold-light); }
.is-dark .pill--lime { background: var(--gold); color: var(--navy-ink); }
.is-dark .pill--outline { background: transparent; border-color: var(--line-dark); color: rgba(255,255,255,.7); }
.pill-row { display: flex; flex-wrap: wrap; gap: var(--s-2); }
/* Credenciais em duas linhas de dois, com o rotulo centralizado no chip */
.pill-row--2col {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--s-2);
}
.pill-row--2col .pill { justify-content: center; text-align: center; letter-spacing: .06em; }

/* --------------------------------------------------------------------------
   11. NAVBAR
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav.is-onhero {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
}
.nav.is-onhero .nav__link { color: rgba(255,255,255,.78); }
.nav.is-onhero .nav__link:hover, .nav.is-onhero .nav__link.is-active { color: var(--gold-light); }
.nav.is-onhero .lang { border-color: rgba(243,189,103,.35); background: rgba(255,255,255,.06); }
.nav.is-onhero .lang button, .nav.is-onhero .lang a { color: rgba(255,255,255,.7); }
.nav.is-onhero .lang button[aria-pressed="true"], .nav.is-onhero .lang a[aria-current="true"] { background: var(--gold); color: var(--navy-ink); }
.nav.is-onhero .nav-toggle { border-color: rgba(243,189,103,.4); background: transparent; }
.nav.is-onhero .nav-toggle span,
.nav.is-onhero .nav-toggle span::before,
.nav.is-onhero .nav-toggle span::after { background: var(--paper); }

.nav__inner { min-height: var(--nav-h); display: flex; align-items: center; gap: var(--s-6); }

/* Logotipo original do cliente. Duas versoes do mesmo arquivo: uma com o GS
   em navy para fundo claro, outra com o GS em branco para fundo escuro. */
.brand { position: relative; display: block; flex-shrink: 0; line-height: 0; }
.brand__logo { display: block; width: auto; height: 42px; transition: opacity var(--dur) var(--ease); }
.brand__logo[data-on="dark"] { position: absolute; top: 0; left: 0; opacity: 0; }
.nav.is-onhero .brand__logo[data-on="dark"],
.footer .brand__logo[data-on="dark"] { opacity: 1; }
.nav.is-onhero .brand__logo[data-on="light"],
.footer .brand__logo[data-on="light"] { opacity: 0; }
.footer .brand__logo { height: 52px; }

.nav__menu { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: var(--s-6); }
.nav__link {
  font-size: .875rem; font-weight: 600;
  letter-spacing: -0.01em; color: var(--ink-soft);
  transition: color var(--dur) var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--navy); }
.nav__link.is-active { color: var(--gold-deep); }

.nav__actions { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }

.lang {
  display: inline-flex; gap: 2px; padding: 3px;
  border: 1px solid var(--line); border-radius: var(--r-xs); background: var(--paper);
}
.lang button, .lang a {
  display: inline-flex; align-items: center; text-decoration: none;
  border: 0; background: transparent; height: 26px; padding: 0 9px;
  border-radius: 2px; font-size: .6875rem; font-weight: 800; letter-spacing: .06em;
  color: var(--ink-muted); transition: all var(--dur) var(--ease);
}
.lang button[aria-pressed="true"], .lang a[aria-current="true"] { background: var(--navy); color: var(--gold-light); }

.nav-toggle {
  display: none; width: 42px; height: 42px;
  border: 1px solid var(--line); border-radius: var(--r-xs); background: var(--paper);
  align-items: center; justify-content: center;
}
.nav-toggle span { display: block; width: 17px; height: 1.5px; background: var(--navy); position: relative; }
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 1.5px;
  background: var(--navy); transition: transform var(--dur) var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   12. HERO
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 520px at 15% -10%, rgba(220,138,52,.14), transparent 62%),
    linear-gradient(160deg, var(--navy-ink) 0%, var(--navy) 62%, #0E2C55 100%);
  color: rgba(255,255,255,.76);
  padding-top: calc(var(--nav-h) + clamp(44px, 5vw, 84px));
  padding-bottom: clamp(56px, 6vw, 100px);
  overflow: hidden;
}

/* Fotografia de fundo alternando em crossfade */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1800ms var(--ease), transform 9000ms linear;
  will-change: opacity, transform;
}
.hero__bg img.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Véu navy: garante contraste do texto sobre qualquer foto */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(4,24,46,.74) 0%,
      rgba(4,24,46,.60) 38%,
      rgba(11,36,71,.38) 66%,
      rgba(11,36,71,.24) 100%),
    linear-gradient(to top, rgba(4,24,46,.55) 0%, transparent 38%);
}

/* Indicadores de qual imagem está ativa */
.hero__bg-dots {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 40px);
  bottom: clamp(20px, 3vw, 34px);
  display: flex;
  gap: 8px;
}
.hero__bg-dots button {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255,255,255,.28);
  transition: background-color var(--dur) var(--ease), width var(--dur) var(--ease);
}
.hero__bg-dots button[aria-current="true"] { background: var(--gold); width: 40px; }
.hero__bg-dots button:hover { background: rgba(243,189,103,.7); }

@media (max-width: 900px) {
  .hero__bg::after {
    background:
      linear-gradient(180deg, rgba(4,24,46,.72) 0%, rgba(4,24,46,.66) 42%, rgba(4,24,46,.88) 100%);
  }
  .hero__bg-dots { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg img { transition: opacity 300ms linear; transform: none; }
  .hero__bg img.is-active { transform: none; }
}
.hero h1 { color: var(--paper); max-width: 16ch; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero .body-lg { max-width: 44ch; margin-top: var(--s-5); }
.hero .btn-row { margin-top: var(--s-6); }

.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.hero__proof {
  display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-6);
  margin-top: var(--s-6); padding-top: var(--s-5);
  border-top: 1px solid var(--line-dark);
}
.hero__proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; color: rgba(255,255,255,.72);
}
.hero__proof-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

.watermark {
  position: absolute; z-index: 0; pointer-events: none; user-select: none;
  opacity: .05; width: clamp(320px, 44vw, 620px); height: auto;
  left: -8%; bottom: -22%; transform: rotate(-8deg);
}
.watermark--right { left: auto; right: -6%; bottom: auto; top: -18%; transform: rotate(6deg); }

/* Painel escuro do hero */
.panel {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
}
.panel__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  padding-bottom: var(--s-5); border-bottom: 1px solid var(--line-dark); margin-bottom: var(--s-5);
}
.panel__title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.03em; color: var(--paper); margin: 0; }
.panel__sub { font-size: .8125rem; color: var(--gold); margin: 2px 0 0; font-weight: 600; }
.panel__list { display: grid; gap: var(--s-4); }
.panel__row { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); font-size: .9375rem; }
.panel__row span:first-child { color: rgba(255,255,255,.76); }
.panel__row b { color: var(--gold-light); font-weight: 700; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.panel__row--sep { padding-top: var(--s-4); border-top: 1px solid var(--line-dark); }

/* --------------------------------------------------------------------------
   13. FORMULÁRIO DO HERO
   -------------------------------------------------------------------------- */
.hero-form {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: clamp(22px, 2.4vw, 32px);
  box-shadow: 0 24px 50px rgba(4,24,46,.4);
  color: var(--ink);
  border-top: 3px solid var(--gold);
}
.hero-form h2, .hero-form h3, .hero-form h4 { color: var(--navy); }
.hero-form__head { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-4); }
.hero-form__title { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; color: var(--navy); margin: 0; }
.hero-form__sub { font-size: .8125rem; color: var(--ink-soft); margin: 0 0 var(--s-5); line-height: 1.5; }
.hero-form .field { margin-bottom: 10px; }
.hero-form .field label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 5px;
}
.hero-form .field input, .hero-form .field select { height: 44px; font-size: .9375rem; }
.hero-form .btn { margin-top: var(--s-3); }
.hero-form__trust {
  display: flex; flex-wrap: wrap; gap: 6px var(--s-4);
  margin-top: var(--s-4); padding-top: var(--s-4); border-top: 1px solid var(--line);
}
.hero-form__trust span { display: inline-flex; align-items: center; gap: 5px; font-size: .75rem; font-weight: 600; color: var(--ink-soft); }
.hero-form__trust svg { width: 13px; height: 13px; color: var(--gold-deep); flex-shrink: 0; }
.hero-form__alt {
  display: block; margin-top: var(--s-3); text-align: center;
  font-size: .8125rem; font-weight: 700; color: var(--navy);
}
.hero-form__alt:hover { color: var(--gold-deep); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* --------------------------------------------------------------------------
   13b. FAIXA DE CREDENCIAIS EM CARROSSEL
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding-block: 22px;
  /* apaga as pontas, para o loop não parecer cortado */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }

.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(38px, 5vw, 76px);
  padding-right: clamp(38px, 5vw, 76px);
  flex-shrink: 0;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
  font-size: .9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.marquee__item svg {
  width: 21px; height: 21px;
  flex-shrink: 0;
  color: var(--gold);
  stroke-width: 1.7;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* Sobre fundo escuro */
.marquee.is-dark { background: var(--navy); border-block-color: var(--line-dark); }
.marquee.is-dark .marquee__item { color: var(--paper); }
.marquee.is-dark .marquee__item svg { color: var(--gold-light); }

@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee__track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
  .marquee__group:nth-child(2) { display: none; }
  .marquee__group { flex-wrap: wrap; justify-content: center; gap: 20px 38px; padding-right: 0; }
}

/* --------------------------------------------------------------------------
   13c. ESTADO VAZIO E CARTÃO DE ARTIGO
   -------------------------------------------------------------------------- */
.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  padding: clamp(44px, 6vw, 76px) clamp(24px, 4vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
}
.empty__icon {
  display: grid; place-items: center;
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--gold-wash); color: var(--gold-deep);
  margin-bottom: var(--s-5);
}
.empty__icon svg { width: 30px; height: 30px; stroke-width: 1.5; }
.empty h2 { margin-bottom: var(--s-4); }
.empty .body-lg { max-width: 46ch; }
.empty .btn-row { margin-top: var(--s-6); justify-content: center; }

/* Cartão de artigo, pronto para quando houver conteúdo */
.posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--s-6); }
.post {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.post__media { aspect-ratio: 16 / 10; background: var(--navy); overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; }
.post__body { padding: var(--s-5) var(--s-5) var(--s-6); display: flex; flex-direction: column; flex: 1; }
.post__meta {
  display: flex; align-items: center; gap: var(--s-3); flex-wrap: wrap;
  font-size: .71875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: var(--s-3);
}
.post__meta .pill { letter-spacing: .1em; }
.post h3 { font-size: 1.2rem; margin-bottom: var(--s-3); }
.post p { font-size: .9375rem; color: var(--ink-soft); margin-bottom: var(--s-5); }
.post__more { margin-top: auto; font-size: .875rem; font-weight: 700; color: var(--navy); display: inline-flex; align-items: center; gap: 8px; }
.post:hover .post__more { color: var(--gold-deep); }

/* --------------------------------------------------------------------------
   14. NÚMEROS
   -------------------------------------------------------------------------- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-5); }
.metric { text-align: center; padding: 0 12px; position: relative; }
.metric:not(:first-child)::before {
  content: ""; position: absolute; left: -12px; top: 6px; bottom: 6px; width: 1px; background: var(--line);
}
.is-dark .metric:not(:first-child)::before { background: var(--line-dark); }
.metric__num {
  display: block;
  font-weight: 800; letter-spacing: -0.045em;
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem);
  line-height: 1; color: var(--navy); margin-bottom: 8px;
}
.is-dark .metric__num { color: var(--gold-light); }
.metric__num em { font-style: normal; color: var(--gold); }
.metric__label {
  display: block; font-size: .875rem; font-weight: 700;
  color: var(--navy); letter-spacing: -0.01em;
}
.is-dark .metric__label { color: var(--paper); }
.metric__desc { display: block; font-size: .78125rem; color: var(--ink-soft); margin-top: 3px; }
.is-dark .metric__desc { color: rgba(255,255,255,.55); }

/* --------------------------------------------------------------------------
   15. CARDS
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: clamp(26px, 2.4vw, 34px);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card--soft { background: var(--paper-warm); }
.card--navy { background: var(--navy); border-color: var(--navy); }
.card--ink  { background: var(--navy-ink); border-color: var(--navy-ink); }
.card--lime { background: var(--gold); border-color: var(--gold); }
.card--lime h3, .card--lime h4 { color: var(--navy-ink); }
.card--lime p { color: rgba(4,24,46,.75); }

/* Card sobre fundo navy: precisa de borda e superficie proprias para nao ficar solto */
.card--onnavy {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.card--onnavy h3, .card--onnavy h4 { color: var(--paper); }
.card--onnavy p { color: rgba(255,255,255,.72); }
.card--onnavy .icon-circle {
  background: rgba(220,138,52,.18);
  color: var(--gold-light);
  box-shadow: inset 0 0 0 1px rgba(220,138,52,.34);
}
.card--onnavy:hover {
  background: rgba(255,255,255,.085);
  border-color: rgba(220,138,52,.5);
}
.card-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: rgba(220,138,52,.5); }

.icon-circle {
  display: grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-wash); color: var(--gold-deep);
  margin-bottom: var(--s-4); flex-shrink: 0;
}
.icon-circle svg { width: 22px; height: 22px; stroke-width: 1.6; }
.icon-circle--lime { background: var(--gold); color: var(--navy-ink); }
.is-dark .icon-circle { background: rgba(220,138,52,.16); color: var(--gold-light); }

/* Card de plano */
.svc {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 38px 30px;
  min-height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.svc:hover { box-shadow: var(--shadow-sm); }
.svc--featured {
  background: var(--navy); border-color: var(--navy); color: rgba(255,255,255,.78);
  transform: translateY(-14px); box-shadow: var(--shadow-lg);
}
.svc--featured:hover { transform: translateY(-17px); }

.svc__top { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4); margin-bottom: var(--s-5); }
.svc__index { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; color: var(--gold); line-height: 1; }
.svc h3 { margin-bottom: var(--s-3); }
.svc--featured h3 { color: var(--paper); }
.svc__desc { font-size: .9375rem; line-height: 1.65; color: var(--ink-soft); margin-bottom: var(--s-5); }
.svc--featured .svc__desc { color: rgba(255,255,255,.72); }

.svc__price {
  font-size: 1.5rem; font-weight: 800; letter-spacing: -0.035em; color: var(--navy);
  padding-bottom: var(--s-5); margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
  display: block;
}
.svc__price span {
  display: block; font-size: .71875rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-top: 6px;
}
.svc--featured .svc__price { color: var(--gold-light); border-bottom-color: var(--line-dark); }
.svc--featured .svc__price span { color: #9AA6B5; }

.svc__list { display: grid; gap: 12px; margin-bottom: var(--s-6); }
.svc__list li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: .875rem; line-height: 1.55; color: var(--ink-soft);
}
.svc__list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 8px;
}
.svc--featured .svc__list li { color: rgba(255,255,255,.75); }
.svc--featured .svc__list li::before { background: var(--gold-light); }
.svc__list strong { color: var(--navy); font-weight: 700; }
.svc--featured .svc__list strong { color: var(--paper); }
.svc__foot { margin-top: auto; }

/* --------------------------------------------------------------------------
   16. PASSOS
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-6); }
.step { border-left: 1px solid rgba(220,138,52,.35); padding-left: 22px; }
.step__num {
  display: block; font-size: 2.25rem; font-weight: 800; letter-spacing: -0.045em;
  color: var(--gold); line-height: 1; margin-bottom: var(--s-3);
}
.step h3 { font-size: 1rem; font-weight: 700; letter-spacing: -0.015em; color: var(--navy); margin-bottom: var(--s-2); }
.is-dark .step h3 { color: var(--paper); }
.step p { font-size: .875rem; line-height: 1.6; color: var(--ink-soft); }
.is-dark .step p { color: rgba(255,255,255,.66); }
.step__tag { margin-top: var(--s-3); font-size: .71875rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); }
.is-dark .step__tag { color: var(--gold); }

/* --------------------------------------------------------------------------
   17. CRONOGRAMA
   -------------------------------------------------------------------------- */
.timeline { display: grid; gap: var(--s-4); }
.tl {
  display: grid; grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(20px, 3vw, 44px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: clamp(26px, 2.4vw, 36px);
}
.tl__side { display: flex; flex-direction: column; gap: var(--s-3); }
.tl__num { font-size: 2.5rem; font-weight: 800; letter-spacing: -0.045em; line-height: .9; color: var(--gold); }
.tl h3 { margin-bottom: var(--s-3); }
.tl__list { display: grid; gap: 10px; margin-top: var(--s-5); }
.tl__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .9375rem; color: var(--ink-soft); }
.tl__list li svg { width: 16px; height: 16px; color: var(--gold-deep); flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------------------
   18. LISTA COM CHECK
   -------------------------------------------------------------------------- */
.checks { display: grid; gap: var(--s-3); }
.checks li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: .9375rem; line-height: 1.6; color: var(--ink-soft); }
.checks li svg { width: 17px; height: 17px; color: var(--gold-deep); flex-shrink: 0; margin-top: 4px; }
.checks strong { color: var(--navy); font-weight: 700; }
.is-dark .checks li { color: rgba(255,255,255,.74); }
.is-dark .checks li svg { color: var(--gold); }
.is-dark .checks strong { color: var(--paper); }

/* --------------------------------------------------------------------------
   19. ABAS
   -------------------------------------------------------------------------- */
.tabs { display: grid; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
.tabs__list { display: grid; }
.tabs__btn {
  display: block; width: 100%; text-align: left; border: 0; background: transparent;
  padding: var(--s-5) 0 var(--s-5) var(--s-5);
  border-left: 2px solid var(--line);
  transition: border-color var(--dur) var(--ease);
}
.tabs__btn h4 { color: var(--ink-muted); margin-bottom: 0; transition: color var(--dur) var(--ease); }
.tabs__btn p { font-size: .9375rem; color: var(--ink-soft); margin: 8px 0 0; display: none; }
.tabs__btn[aria-selected="true"] { border-left-color: var(--gold); }
.tabs__btn[aria-selected="true"] h4 { color: var(--navy); }
.tabs__btn[aria-selected="true"] p { display: block; }

.tabs__panel {
  background: var(--navy); border-radius: var(--r-md);
  padding: clamp(28px, 3vw, 44px); min-height: 340px;
}
.tabs__panel[hidden] { display: none; }
.tabs__panel .pill { margin-bottom: var(--s-5); }
.tabs__panel ul { display: grid; gap: var(--s-3); margin-top: var(--s-5); }
.tabs__panel li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: .9375rem; color: rgba(255,255,255,.74); }
.tabs__panel li svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------------------
   20. CABEÇALHO INTERNO
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(700px 380px at 12% -20%, rgba(220,138,52,.12), transparent 60%),
    linear-gradient(150deg, var(--navy-ink), var(--navy));
  color: rgba(255,255,255,.76);
  padding-top: calc(var(--nav-h) + clamp(32px, 4vw, 60px));
  padding-bottom: clamp(44px, 5vw, 80px);
}
.page-hero h1 { color: var(--paper); max-width: 18ch; }
.page-hero .body-lg { max-width: 52ch; margin-top: var(--s-5); }

.crumb {
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--s-2);
  font-size: .78125rem; color: rgba(255,255,255,.5); margin-bottom: var(--s-5);
}
.crumb a:hover { color: var(--gold-light); }

/* --------------------------------------------------------------------------
   21. CONTEÚDO + SIDEBAR
   -------------------------------------------------------------------------- */
.with-aside { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(0,.95fr); gap: clamp(28px, 4vw, 64px); align-items: start; }

.prose { max-width: 62ch; }
.prose h2 { margin-top: var(--s-8); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: var(--s-6); }
.prose ul { display: grid; gap: var(--s-3); margin-bottom: var(--s-5); }
.prose ul li { position: relative; padding-left: 22px; font-size: .9375rem; line-height: 1.7; color: var(--ink-soft); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.prose a:hover { text-decoration-color: var(--navy); }
.prose strong { color: var(--navy); font-weight: 700; }
.prose p { color: var(--ink-soft); line-height: 1.75; }

.aside-card {
  position: sticky; top: calc(var(--nav-h) + 20px);
  background: var(--navy); border-radius: var(--r-md);
  padding: clamp(26px, 2.4vw, 34px);
  border-top: 3px solid var(--gold);
}
.aside-card .btn { width: 100%; margin-top: var(--s-3); }
.aside-card .checks { margin: var(--s-5) 0 var(--s-6); }

/* --------------------------------------------------------------------------
   22. FORMULÁRIO
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: clamp(26px, 3vw, 42px);
  border-top: 3px solid var(--gold);
}
.field { margin-bottom: var(--s-4); }
.field label { display: block; font-size: .78125rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; height: 48px; padding: 0 14px;
  font-family: inherit; font-size: .9375rem; color: var(--ink);
  background: var(--paper-warm); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { height: auto; min-height: 130px; padding: 13px 14px; resize: vertical; line-height: 1.6; }
.field select {
  appearance: none; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566072' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 17px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.form-note { font-size: .75rem; color: var(--ink-muted); margin-top: var(--s-3); }

.form-status { display: none; margin-top: var(--s-4); padding: 12px 16px; border-radius: var(--r-sm); font-size: .875rem; font-weight: 600; }
.form-status.is-visible { display: block; }
.form-status--ok { background: rgba(27,94,63,.10); color: var(--green); }
.form-status--error { background: rgba(139,38,53,.10); color: var(--brick); }

/* --------------------------------------------------------------------------
   23. CONTATO
   -------------------------------------------------------------------------- */
.contacts { display: grid; gap: var(--s-3); }
.contact {
  display: flex; align-items: center; gap: var(--s-4);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
a.contact:hover { transform: translateY(-2px); border-color: rgba(220,138,52,.55); }
.contact__icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-wash); color: var(--gold-deep); flex-shrink: 0;
}
.contact__icon svg { width: 19px; height: 19px; }
.contact__label { font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.contact__value {
  font-size: .9375rem; font-weight: 700; color: var(--navy);
  letter-spacing: -0.02em;
  white-space: nowrap;          /* números de telefone nunca quebram no meio */
}
.contact__value--wrap { white-space: normal; }
.contact > span:not(.contact__icon) { min-width: 0; }
.contact .arrow { margin-left: auto; }

/* --------------------------------------------------------------------------
   24. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--s-3); max-width: 52rem; margin-inline: auto; }
.faq details {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: var(--s-5);
  transition: border-color var(--dur) var(--ease);
}
.faq details[open] { border-color: rgba(220,138,52,.5); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-4);
  cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 700; letter-spacing: -0.02em; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--gold-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A55424' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 13px no-repeat;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(135deg); background-color: var(--gold); }
.faq details p { margin-top: var(--s-3); font-size: .9375rem; color: var(--ink-soft); line-height: 1.75; }

/* --------------------------------------------------------------------------
   25. CTA
   -------------------------------------------------------------------------- */
.cta-split {
  display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.cta-split__dark {
  background: linear-gradient(150deg, var(--navy-ink), var(--navy));
  color: rgba(255,255,255,.76);
  padding: clamp(32px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center;
}
.cta-split__dark h2 { max-width: 17ch; }
.cta-split__dark .btn-row { margin-top: var(--s-6); }
.cta-split__light {
  background: var(--paper); padding: clamp(32px, 4vw, 60px);
  display: flex; flex-direction: column; justify-content: center; gap: var(--s-4);
  position: relative;
}
.cta-split__light::before {
  content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 52px;
  background: var(--navy); clip-path: polygon(0 0, 100% 0, 0 100%);
}
.cta-contact {
  display: flex; align-items: center; gap: var(--s-4);
  padding: var(--s-4) 0; border-bottom: 1px solid var(--line);
}
.cta-contact:last-child { border-bottom: 0; }
.cta-contact__label { font-size: .6875rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); }
.cta-contact__value { font-size: 1.0625rem; font-weight: 700; letter-spacing: -0.025em; color: var(--navy); }

/* --------------------------------------------------------------------------
   26. SETORES
   -------------------------------------------------------------------------- */
.sector {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: var(--s-6); text-align: center;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.sector:hover { border-color: rgba(220,138,52,.5); transform: translateY(-3px); }
.sector svg { width: 30px; height: 30px; color: var(--gold-deep); margin: 0 auto var(--s-4); }
.sector h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: var(--s-2); }
.sector p { font-size: .875rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   27. RODAPÉ
   -------------------------------------------------------------------------- */
.footer {
  background: var(--navy-ink); color: rgba(255,255,255,.6);
  padding-block: clamp(52px, 5vw, 80px) var(--s-6); font-size: .875rem;
}
.footer__grid {
  display: grid; grid-template-columns: minmax(0,1.6fr) repeat(3, minmax(0,1fr));
  gap: var(--s-7); padding-bottom: var(--s-7); border-bottom: 1px solid var(--line-dark);
}
.footer__about { margin-top: var(--s-4); max-width: 34ch; line-height: 1.7; }
.footer h4 {
  color: var(--gold);
  font-size: .6875rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: var(--s-4);
}
.footer ul { display: grid; gap: 10px; }
.footer a { transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--gold-light); }
.footer__bottom {
  padding-top: var(--s-5); display: flex; flex-wrap: wrap;
  gap: var(--s-3) var(--s-6); justify-content: space-between;
  font-size: .75rem; color: rgba(255,255,255,.4);
}

/* --------------------------------------------------------------------------
   28. WHATSAPP FLUTUANTE
   -------------------------------------------------------------------------- */
.wa-dock {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa {
  position: relative;
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 8px 24px rgba(37,211,102,.42), 0 2px 6px rgba(0,0,0,.18);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  flex-shrink: 0;
}
.wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37,211,102,.5), 0 2px 6px rgba(0,0,0,.2);
}
.wa svg { width: 34px; height: 34px; }

/* Anel pulsante, chama atenção sem piscar */
.wa::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: wa-pulse 2.6s var(--ease) infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: .7; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* Balão de aviso */
.wa-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 11px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 10px 30px rgba(4,24,46,.16);
  opacity: 0;
  transform: translateX(14px) scale(.96);
  transform-origin: right center;
  pointer-events: none;
  transition: opacity 320ms var(--ease), transform 320ms var(--ease);
}
.wa-bubble.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-bubble[hidden] { display: none; }

/* Rabinho apontando para o botão */
.wa-bubble::after {
  content: "";
  position: absolute;
  right: -5px; top: 50%;
  width: 10px; height: 10px;
  margin-top: -5px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: rotate(45deg);
}

.wa-bubble__dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--whatsapp);
  flex-shrink: 0;
}
.wa-bubble__dot::after {
  content: "";
  position: absolute; inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: wa-pulse 2.2s var(--ease) infinite;
}

.wa-bubble__text { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.wa-bubble__title { font-size: .8125rem; font-weight: 800; color: var(--navy); letter-spacing: -0.015em; }
.wa-bubble__sub { font-size: .75rem; color: var(--ink-soft); }

.wa-bubble__close {
  border: 0; background: transparent; padding: 0;
  width: 20px; height: 20px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--ink-muted);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.wa-bubble__close:hover { background: var(--paper-warm); color: var(--navy); }
.wa-bubble__close svg { width: 11px; height: 11px; stroke-width: 2.6; }

@media (max-width: 560px) {
  .wa-dock { right: 16px; bottom: 16px; gap: 9px; }
  .wa-bubble { max-width: min(214px, calc(100vw - 110px)); padding: 9px 12px; }
  .wa-bubble__sub { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .wa::before, .wa-bubble__dot::after { animation: none; opacity: 0; }
}

/* --------------------------------------------------------------------------
   28b. MODAL DE AGENDAMENTO
   -------------------------------------------------------------------------- */
.modal {
  width: min(460px, calc(100vw - 32px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  border: 0;
  border-radius: var(--r-md);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(4,24,46,.34);
  overflow: visible;
}
.modal::backdrop {
  background: rgba(4,24,46,.62);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal[open] { animation: modal-in 320ms var(--ease); }
.modal[open]::backdrop { animation: fade-in 320ms var(--ease); }
@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal__inner {
  border-top: 3px solid var(--gold);
  border-radius: var(--r-md);
  padding: clamp(26px, 4vw, 34px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: -14px; right: -14px;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink-soft);
  box-shadow: 0 4px 14px rgba(4,24,46,.18);
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.modal__close:hover { background: var(--navy); color: var(--paper); border-color: var(--navy); }
.modal__close svg { width: 13px; height: 13px; stroke-width: 2.4; }

.modal__badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .6875rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); background: var(--gold-wash);
  padding: 6px 12px; border-radius: var(--r-xs);
  margin-bottom: var(--s-4);
}
.modal__badge svg { width: 13px; height: 13px; stroke-width: 2.2; }

.modal h2 {
  font-size: clamp(1.4rem, 1.2rem + .8vw, 1.7rem);
  margin-bottom: var(--s-3);
}
.modal__lead { font-size: .9375rem; color: var(--ink-soft); margin-bottom: var(--s-2); }
.modal__hint { font-size: .8125rem; color: var(--ink-muted); margin-bottom: var(--s-5); line-height: 1.55; }

.modal .field { margin-bottom: 10px; }
.modal .field label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 5px;
}
.modal .field input { height: 44px; font-size: .9375rem; }
.modal .btn { margin-top: var(--s-4); }

.modal__foot {
  display: flex; align-items: flex-start; gap: 8px;
  margin-top: var(--s-4);
  font-size: .75rem; color: var(--ink-muted); line-height: 1.5;
}
.modal__foot svg { width: 14px; height: 14px; color: var(--gold-deep); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 480px) {
  .modal__close { top: 10px; right: 10px; box-shadow: none; }
  .modal__inner { padding-top: var(--s-6); }
}

@media (prefers-reduced-motion: reduce) {
  .modal[open], .modal[open]::backdrop { animation: none; }
}

/* --------------------------------------------------------------------------
   29. REVEAL E UTILITÁRIOS
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.is-dark .divider { background: var(--line-dark); }
.mt-lg { margin-top: var(--s-5); }

/* Dentro dos cards o texto fica colado no titulo que ele explica */
.card h3 + p, .card h4 + p,
.card h3 + .mt-lg, .card h4 + .mt-lg { margin-top: var(--s-2); }
.card h3 + ul, .card h4 + ul,
.card h3 + .mt-lg.checks, .card h4 + .mt-lg.checks { margin-top: var(--s-4); }
.mt-xl { margin-top: var(--s-6); }
.mt-2xl { margin-top: var(--s-8); }
.center { text-align: center; }
.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; }

/* --------------------------------------------------------------------------
   30. RESPONSIVO
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .grid--editorial { grid-template-columns: 1fr; }
  .svc--featured { transform: none; }
  .svc--featured:hover { transform: translateY(-3px); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 20ch; }
  .tabs { grid-template-columns: 1fr; }
  .with-aside { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split__light::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-6); }
}

/* Com seis itens o menu horizontal fica apertado antes dos 1024px */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm); padding: var(--s-5) var(--gutter) var(--s-6); display: none;
  }
  .nav.is-onhero .nav__menu { background: var(--navy); border-bottom-color: var(--line-dark); }
  .nav__menu.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: var(--s-4) 0; font-size: 1.0625rem; border-bottom: 1px solid var(--line); }
  .nav.is-onhero .nav__link { border-bottom-color: var(--line-dark); }
  .nav__actions { margin-left: auto; }
}

@media (max-width: 900px) {
  .nav__menu {
    position: fixed; inset: var(--nav-h) 0 auto 0; margin: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-sm); padding: var(--s-5) var(--gutter) var(--s-6); display: none;
  }
  .nav.is-onhero .nav__menu { background: var(--navy); border-bottom-color: var(--line-dark); }
  .nav__menu.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { display: block; padding: var(--s-4) 0; font-size: 1.0625rem; border-bottom: 1px solid var(--line); }
  .nav.is-onhero .nav__link { border-bottom-color: var(--line-dark); }
  .nav__actions { margin-left: auto; }
  .nav__actions .btn--nav { display: none; }
  .brand__logo { height: 34px; }
  .metrics { grid-template-columns: 1fr 1fr; gap: var(--s-7) var(--s-5); }
  .profile-card__photo { width: 180px; height: 180px; min-height: 180px; }
  .metric:nth-child(3)::before { display: none; }
  .tl { grid-template-columns: 1fr; gap: var(--s-4); }
  .tl__side { flex-direction: row; align-items: baseline; gap: var(--s-4); }
  .tabs__btn { padding-block: var(--s-4); }
  .tabs__btn p { display: block; }
  .tabs__panel { min-height: 0; }
}

@media (max-width: 620px) {
  .field-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .btn-row .btn { width: 100%; }
  .metric:not(:first-child)::before { display: none; }
}

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

@media print {
  .nav, .wa, .cta-split, .footer { display: none; }
  body { background: #fff; color: #000; }
}
