/* ==========================================================================
   PRIMEMARC ACCOUNTING — style.css  ·  v1.5 (redesign premium / design system)
   --------------------------------------------------------------------------
   ÍNDICE
   1. Tokens (cores, tipografia, espaçamento, raios, sombras)  ← edite cores aqui
   2. Base e utilitários
   3. Botões e elementos de marca
   4. Topbar + Navegação
   5. Hero (gradiente + mockup)
   6. Seções: prova, bento, serviços, timeline, sobre, depoimentos, FAQ, CTA
   7. Contato e formulário
   8. Rodapé, WhatsApp, barra mobile
   9. Responsivo
   ========================================================================== */

/* ============================ 1. TOKENS ============================ */
:root {
  /* —— Cores da marca (edite aqui) —— */
  --gold:        #dbc160;
  --gold-bright: #ecd98e;
  --gold-deep:   #b8973a;   /* dourado para TEXTO (contraste melhor) */

  /* Escala de tinta (azul-marinho da marca → neutros) */
  --ink-950: #00132a;
  --ink-900: #001b36;
  --ink-800: #002d57;       /* azul-marinho principal */
  --ink-700: #0b3d6b;
  --ink-600: #1d527f;
  --ink-500: #4a6a86;
  --ink-400: #7e93a8;
  --ink-300: #aab9c8;

  --text:    #0c1a2b;       /* texto principal */
  --muted:   #56697c;       /* texto secundário */
  --bg:      #ffffff;
  --surface: #f6f8fc;       /* seção alternada */
  --paper:   #fbfcfe;
  --line:    rgba(12, 32, 58, 0.10);
  --line-2:  rgba(12, 32, 58, 0.06);
  --whatsapp:#25d366;
  --error:   #c0392b;
  --ok:      #1e8a4c;

  /* —— Tipografia —— */
  --font-display: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-1: clamp(0.78rem, 0.74rem + 0.2vw, 0.84rem);
  --fs-2: clamp(0.88rem, 0.84rem + 0.2vw, 0.95rem);
  --fs-3: clamp(1rem, 0.96rem + 0.3vw, 1.08rem);
  --fs-4: clamp(1.18rem, 1.08rem + 0.5vw, 1.35rem);
  --fs-5: clamp(1.45rem, 1.25rem + 1vw, 1.85rem);
  --fs-6: clamp(1.85rem, 1.5rem + 1.7vw, 2.6rem);
  --fs-7: clamp(2.3rem, 1.7rem + 3vw, 3.9rem);

  /* —— Espaçamento (base 4pt) —— */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;
  --section: clamp(64px, 5vw + 40px, 120px);

  /* —— Raios e sombras —— */
  --r-xs: 8px; --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(12,32,58,.06), 0 2px 6px rgba(12,32,58,.05);
  --sh-2: 0 4px 14px rgba(12,32,58,.07), 0 10px 30px rgba(12,32,58,.07);
  --sh-3: 0 10px 30px rgba(12,32,58,.10), 0 30px 70px rgba(12,32,58,.14);
  --ring: 0 0 0 4px rgba(219,193,96,.28);

  --maxw: 1200px;
  --t: .28s cubic-bezier(.4,0,.2,1);
}

/* ============================ 2. BASE ============================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  font-size: var(--fs-3);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink-900); line-height: 1.12; letter-spacing: -0.02em; font-weight: 800; }
strong { font-weight: 700; }
::selection { background: var(--gold); color: var(--ink-900); }

/* scrollbar discreta */
* { scrollbar-color: var(--ink-300) transparent; }

/* foco de teclado visível e consistente */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: none; box-shadow: var(--ring); border-radius: var(--r-xs);
}

.container { width: min(92%, var(--maxw)); margin-inline: auto; }
.container--narrow { max-width: 820px; }
.container--wide { max-width: 1320px; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--ink-800); color: #fff; padding: 10px 16px; z-index: 3000; }
.skip-link:focus { left: 10px; top: 10px; border-radius: var(--r-xs); }

/* idioma (PT padrão · EN · ES) */
[data-en], [data-es] { display: none; }
body.lang-en [data-pt], body.lang-en [data-es] { display: none; }
body.lang-en [data-en] { display: inline; }
body.lang-es [data-pt], body.lang-es [data-en] { display: none; }
body.lang-es [data-es] { display: inline; }

/* reveal só com JS (à prova de falha) */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--t), transform .7s var(--t); }
.js [data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .whatsapp-float { animation: none !important; }
}

/* títulos de seção */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-1); letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: var(--s-4); }
/* traço simétrico (dos dois lados) nos títulos centralizados */
.eyebrow::before, .eyebrow::after { content: ""; width: 22px; height: 1px; background: var(--gold-deep); opacity: .6; }
/* títulos alinhados à esquerda: sem traço */
.section__head.left .eyebrow::before, .section__head.left .eyebrow::after,
.contact__info .eyebrow::before, .contact__info .eyebrow::after { display: none; }
.section { padding: var(--section) 0; }
.section--surface { background: var(--surface); }
.section__head { max-width: 720px; margin: 0 auto var(--s-16); text-align: center; }
.section__head.left { text-align: left; margin-inline: 0; }
.section__head h2 { font-size: var(--fs-6); margin-bottom: var(--s-4); }
.lead { color: var(--muted); font-size: var(--fs-4); line-height: 1.5; max-width: 62ch; }
.section__head .lead { margin-inline: auto; }
.section__head.left .lead { margin-inline: 0; }

/* ============================ 3. BOTÕES ============================ */
.btn { --pad: 14px 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: var(--fs-2); line-height: 1; padding: var(--pad);
  border-radius: var(--r-sm); border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t); }
.btn .ico { width: 18px; height: 18px; }
.btn--lg { --pad: 17px 30px; font-size: var(--fs-3); }
.btn--sm { --pad: 10px 18px; font-size: var(--fs-1); }
.btn--block { width: 100%; }
.btn--primary { background: var(--ink-800); color: #fff; box-shadow: var(--sh-1); }
.btn--primary:hover { background: var(--ink-900); transform: translateY(-2px); box-shadow: var(--sh-2); }
.btn--gold { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: var(--ink-900); box-shadow: 0 6px 18px rgba(219,193,96,.4); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(219,193,96,.5); }
.btn--wa { background: var(--whatsapp); color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,.34); }
.btn--wa:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,211,102,.42); filter: brightness(1.03); }
.btn--ghost { background: transparent; color: var(--ink-800); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--ink-800); background: var(--paper); }
.btn--ghost-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost-light:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.6); }

.pill { display: inline-flex; align-items: center; gap: 9px; padding: 7px 14px 7px 12px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-1); }
.pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(219,193,96,.25); }

/* ============================ 4. TOPBAR + NAV ============================ */
.topbar { background: var(--ink-950); color: #d7e2f0; font-size: var(--fs-1); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 0; }
.topbar__msg { margin: 0; }
.topbar a { color: var(--gold-bright); font-weight: 600; }
.topbar a:hover { text-decoration: underline; }

/* Bandeiras de idioma */
.lang-flags { display: flex; align-items: center; gap: 7px; flex: none; }
.flag { width: 32px; height: 23px; padding: 0; border: 1px solid rgba(255,255,255,.28); border-radius: 5px; overflow: hidden; cursor: pointer; background: none; line-height: 0; opacity: .5; transition: opacity var(--t), transform var(--t), border-color var(--t), box-shadow var(--t); }
.flag svg { width: 100%; height: 100%; display: block; object-fit: cover; }
.flag:hover { opacity: .85; transform: translateY(-1px); }
.flag.active { opacity: 1; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(219,193,96,.4); }
@media (max-width: 640px) { .topbar__msg { display: none; } .topbar__inner { justify-content: center; } }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color var(--t), background var(--t); }
.site-header.scrolled { background: rgba(255,255,255,.9); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 104px; transition: height var(--t); }
.site-header.scrolled .nav { height: 84px; }
.nav__logo img { height: 78px; width: auto; }
.site-header.scrolled .nav__logo img { height: 64px; }
.nav__menu { display: flex; align-items: center; gap: var(--s-8); }
.nav__links { display: flex; align-items: center; gap: var(--s-6); }
.nav__link { font-family: var(--font-display); position: relative; font-weight: 600; font-size: var(--fs-2); color: var(--ink-700); padding: 6px 0; transition: color var(--t); }
.nav__link::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold); transition: right var(--t); }
.nav__link:hover { color: var(--ink-900); }
.nav__link:hover::after, .nav__link.active::after { right: 0; }
.nav__actions { display: flex; align-items: center; gap: var(--s-4); }
.lang-toggle { font-family: var(--font-display); border: 1px solid var(--line); background: var(--paper); color: var(--ink-800);
  font-weight: 700; font-size: var(--fs-1); padding: 8px 13px; border-radius: var(--r-pill); cursor: pointer; transition: all var(--t); }
.lang-toggle:hover { border-color: var(--ink-800); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink-900); border-radius: 2px; transition: var(--t); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ 5. HERO ============================ */
.hero { position: relative; overflow: hidden; background: var(--ink-900); color: #fff; isolation: isolate; }
.hero::before { /* aurora sutil */
  content: ""; position: absolute; inset: -20% -10% auto -10%; height: 80%;
  background:
    radial-gradient(46% 60% at 78% 18%, rgba(219,193,96,.20), transparent 60%),
    radial-gradient(50% 70% at 18% 0%, rgba(29,82,127,.55), transparent 60%);
  filter: blur(10px); z-index: -1;
}
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1px); background-size: 22px 22px; mask-image: linear-gradient(180deg, #000, transparent 70%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-16); align-items: center;
  padding: clamp(70px, 8vw, 120px) 0 clamp(64px, 7vw, 110px); }
.hero .pill { background: rgba(219,193,96,.12); border: 1px solid rgba(219,193,96,.4); color: var(--gold-bright); margin-bottom: var(--s-6); }
.hero h1 { color: #fff; font-size: var(--fs-7); letter-spacing: -0.03em; margin-bottom: var(--s-5); }
.hero h1 .accent { background: linear-gradient(120deg, var(--gold-bright), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { color: #c8d6e6; font-size: var(--fs-4); line-height: 1.55; max-width: 56ch; margin-bottom: var(--s-8); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-8); }
.hero__rating { display: flex; align-items: center; gap: var(--s-4); }
.hero__stars { color: var(--gold-bright); letter-spacing: 2px; font-size: var(--fs-3); }
.hero__rating-txt { color: #aebfd2; font-size: var(--fs-2); }
.hero__rating-txt strong { color: #fff; }

/* mockup "glass" de resumo fiscal */
.mock { position: relative; }
.mock__card { background: rgba(255,255,255,.9); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-lg); box-shadow: var(--sh-3); padding: var(--s-6); color: var(--text); }
.mock__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--s-5); }
.mock__title { font-family: var(--font-display); font-weight: 800; color: var(--ink-800); font-size: var(--fs-3); letter-spacing: -.01em; }
.mock__brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; color: var(--ink-800); font-size: var(--fs-2); }
.mock__logo { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, var(--ink-700), var(--ink-800)); display: grid; place-items: center; color: var(--gold-bright); font-size: 13px; }
.mock__status { font-size: var(--fs-1); font-weight: 700; color: var(--ok); background: rgba(30,138,76,.1); padding: 5px 11px; border-radius: var(--r-pill); }
.mock__checks { list-style: none; margin: 0; }
.mock__check { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line-2); font-size: var(--fs-2); }
.mock__check:first-child { border-top: none; }
.mock__check .chk { flex: none; width: 22px; height: 22px; border-radius: 50%; background: rgba(30,138,76,.12); color: var(--ok); display: grid; place-items: center; }
.mock__check .chk svg { width: 12px; height: 12px; }
.mock__check .lbl { flex: 1; color: var(--ink-900); font-weight: 600; }
.mock__check .st { color: var(--ok); font-weight: 700; font-size: var(--fs-1); }
.mock__hl { background: linear-gradient(120deg, rgba(219,193,96,.16), rgba(219,193,96,.04)); margin: var(--s-4) calc(var(--s-6) * -1) 0; padding: var(--s-4) var(--s-6); border-radius: 0 0 var(--r-lg) var(--r-lg); }
.mock__hl-row { display: flex; align-items: center; justify-content: space-between; }
.mock__hl .big { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-5); color: var(--ink-900); font-variant-numeric: tabular-nums; }
.mock__bar { height: 7px; border-radius: var(--r-pill); background: rgba(12,32,58,.08); overflow: hidden; margin-top: 10px; }
.mock__bar i { display: block; height: 100%; width: 100%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--gold), var(--gold-deep)); }
.mock__badge { position: absolute; right: -14px; bottom: -16px; background: var(--ink-800); color: #fff; border-radius: var(--r); padding: 14px 16px;
  box-shadow: var(--sh-3); display: flex; align-items: center; gap: 10px; font-family: var(--font-display); }
.mock__badge .n { font-weight: 800; font-size: var(--fs-4); color: var(--gold-bright); }
.mock__badge small { display: block; color: #aebfd2; font-size: 11px; font-weight: 600; }

/* ============================ 6. PROVA / STATS ============================ */
.proof { border-bottom: 1px solid var(--line); background: var(--bg); }
.proof__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); padding: var(--s-12) 0; }
.proof__item { text-align: center; position: relative; }
.proof__item + .proof__item::before { content: ""; position: absolute; left: 0; top: 14%; height: 72%; width: 1px; background: var(--line); }
.proof__n { font-family: var(--font-display); font-weight: 800; font-size: var(--fs-6); color: var(--ink-800); line-height: 1; font-variant-numeric: tabular-nums; letter-spacing: -.02em; }
.proof__n span { color: inherit; }
.proof__l { color: var(--muted); font-size: var(--fs-2); margin-top: 6px; }

/* —— Bento (Para quem é) —— */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: var(--s-5); }
.bento__item { position: relative; overflow: hidden; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-8);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.bento__item:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.bento__item--wide { grid-column: span 2; }
.bento__item--dark { background: linear-gradient(150deg, var(--ink-800), var(--ink-900)); color: #fff; border-color: transparent; }
.bento__item--dark h3, .bento__item--dark p { color: #fff; }
.bento__item--dark p { color: #c8d6e6; }
.b-ico { width: 50px; height: 50px; border-radius: var(--r-sm); background: rgba(12,32,58,.05); color: var(--ink-800); display: grid; place-items: center; margin-bottom: var(--s-5); }
.bento__item--dark .b-ico { background: rgba(219,193,96,.16); color: var(--gold-bright); }
.b-ico svg { width: 25px; height: 25px; }
.bento__item h3 { font-size: var(--fs-4); margin-bottom: var(--s-2); }
.bento__item p { color: var(--muted); font-size: var(--fs-2); }

/* —— Serviços —— */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
.svc { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: var(--s-6);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t); }
.svc:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: transparent; }
.svc__ico { width: 44px; height: 44px; border-radius: var(--r-xs); background: var(--ink-800); color: var(--gold-bright); display: grid; place-items: center; margin-bottom: var(--s-4); transition: background var(--t); }
.svc:hover .svc__ico { background: var(--ink-700); }
.svc__ico svg { width: 22px; height: 22px; }
.svc h3 { font-size: var(--fs-3); margin-bottom: 5px; letter-spacing: -.01em; }
.svc p { color: var(--muted); font-size: var(--fs-2); }
.svc--feature { grid-column: span 2; background: linear-gradient(160deg, var(--paper), var(--surface)); }
.svc-cta { text-align: center; margin-top: var(--s-10); }
/* Serviços: abas + carrossel (Para você / Para negócio) */
.svc-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: var(--s-10); flex-wrap: wrap; }
.svc-tab { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-2); padding: 12px 26px; border-radius: var(--r-pill); border: 1px solid var(--line); background: var(--bg); color: var(--ink-700); cursor: pointer; transition: background var(--t), color var(--t), border-color var(--t); }
.svc-tab:hover { border-color: var(--ink-800); }
.svc-tab.active { background: var(--ink-800); color: #fff; border-color: transparent; box-shadow: var(--sh-1); }
.svc-carousel { position: relative; }
.svc-carousel:not(.active) { display: none; }
.svc-track { display: grid; grid-auto-flow: column; grid-auto-columns: 300px; grid-template-rows: repeat(2, auto); gap: var(--s-4); overflow-x: auto; scroll-snap-type: x proximity; scroll-behavior: smooth; padding: 6px 2px var(--s-3); scrollbar-width: none; -ms-overflow-style: none; }
.svc-track::-webkit-scrollbar { display: none; }
.svc-track > .svc { scroll-snap-align: start; }
.svc-arrow { position: absolute; top: calc(50% - 8px); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255,255,255,.96); color: var(--ink-800); display: grid; place-items: center; cursor: pointer; box-shadow: var(--sh-2); font-size: 1.6rem; line-height: 1; transition: background var(--t), color var(--t); }
.svc-arrow:hover { background: var(--ink-800); color: #fff; }
.svc-arrow--prev { left: -12px; }
.svc-arrow--next { right: -12px; }
/* carrossel sem rolagem (ex.: Para você): centraliza e esconde setas */
.svc-carousel--static .svc-track { justify-content: center; }
.svc-carousel--static .svc-arrow { display: none; }
@media (max-width: 760px) { .svc-arrow { display: none; } .svc-track { grid-auto-columns: 84%; } }

/* —— Timeline (Como funciona) —— */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); position: relative; }
.timeline::before { content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px); }
.tl { position: relative; text-align: center; padding-top: 0; cursor: default; }
.tl__n { position: relative; z-index: 1; width: 54px; height: 54px; margin: 0 auto var(--s-5); border-radius: 50%;
  display: grid; place-items: center; background: var(--bg); border: 1px solid var(--line); color: var(--ink-800);
  font-family: var(--font-display); font-weight: 800; font-size: var(--fs-4); box-shadow: var(--sh-1); transition: background var(--t), color var(--t), border-color var(--t), box-shadow var(--t); }
.tl--active .tl__n { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); border-color: transparent; color: var(--ink-900); box-shadow: 0 8px 22px rgba(219,193,96,.4); }
.tl h3 { font-size: var(--fs-4); margin-bottom: var(--s-2); }
.tl p { color: var(--muted); font-size: var(--fs-2); max-width: 34ch; margin-inline: auto; }

/* —— Sobre —— */
.about { display: grid; grid-template-columns: .72fr 1.28fr; gap: var(--s-16); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); box-shadow: var(--sh-2); width: 100%; object-fit: cover; }
.about__chip { position: absolute; left: -18px; bottom: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 14px 18px; box-shadow: var(--sh-2); }
.about__chip strong { font-family: var(--font-display); font-size: var(--fs-5); color: var(--ink-800); display: block; line-height: 1; }
.about__chip span { color: var(--muted); font-size: var(--fs-1); }
.check-list { display: grid; gap: var(--s-3); margin: var(--s-6) 0 var(--s-8); }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: var(--fs-3); }
.check-list svg { flex: none; width: 22px; height: 22px; color: #fff; background: var(--gold-deep); border-radius: 50%; padding: 4px; margin-top: 2px; }

/* —— Depoimentos —— */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.quote { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: var(--s-8); box-shadow: var(--sh-1); display: flex; flex-direction: column; }
.quote__stars { color: var(--gold-deep); letter-spacing: 2px; margin-bottom: var(--s-4); }
.quote blockquote { font-size: var(--fs-3); color: var(--text); line-height: 1.6; margin-bottom: var(--s-6); flex: 1; }
.quote__author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 800; color: var(--ink-900); background: linear-gradient(135deg, var(--gold-bright), var(--gold)); flex: none; }
.quote__author strong { display: block; font-family: var(--font-display); color: var(--ink-900); font-size: var(--fs-2); }
.quote__author span { color: var(--muted); font-size: var(--fs-1); }

/* —— FAQ —— */
.faq { display: grid; gap: var(--s-3); max-width: 820px; margin-inline: auto; }
.faq__item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); padding: 2px var(--s-6); transition: border-color var(--t), box-shadow var(--t); }
.faq__item[open] { border-color: rgba(219,193,96,.5); box-shadow: var(--sh-1); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: var(--s-5) 0; font-family: var(--font-display); font-weight: 700; color: var(--ink-900); font-size: var(--fs-3); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; inset: 50% 4px auto 4px; height: 2px; background: var(--gold-deep); transform: translateY(-50%); transition: transform var(--t); }
.faq__plus::after { transform: translateY(-50%) rotate(90deg); }
.faq__item[open] .faq__plus::after { transform: translateY(-50%) rotate(0); }
.faq__a { color: var(--muted); padding: 0 0 var(--s-5); font-size: var(--fs-3); max-width: 64ch; }

/* —— Painel CTA —— */
.cta-panel { position: relative; overflow: hidden; border-radius: var(--r-lg); background: linear-gradient(135deg, var(--ink-800), var(--ink-950)); color: #fff; text-align: center; padding: clamp(48px, 6vw, 88px) var(--s-6); isolation: isolate; }
.cta-panel::before { content: ""; position: absolute; inset: -40% 30% auto auto; width: 520px; height: 520px; z-index: -1;
  background: radial-gradient(circle, rgba(219,193,96,.22), transparent 62%); }
.cta-panel h2 { color: #fff; font-size: var(--fs-6); max-width: 18ch; margin: 0 auto var(--s-4); }
.cta-panel p { color: #c8d6e6; max-width: 56ch; margin: 0 auto var(--s-8); font-size: var(--fs-4); }
.cta-panel .hero__actions { justify-content: center; margin-bottom: var(--s-4); }
.cta-panel__micro { color: #93a8c0; font-size: var(--fs-1); }

/* ============================ 7. CONTATO ============================ */
.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: var(--s-12); align-items: start; }
.contact__item { display: flex; gap: 14px; align-items: center; padding: var(--s-4); border: 1px solid var(--line); border-radius: var(--r); margin-bottom: var(--s-3); background: var(--bg); color: var(--text); transition: border-color var(--t), transform var(--t), box-shadow var(--t); }
.contact__item:hover { border-color: rgba(219,193,96,.5); transform: translateX(3px); box-shadow: var(--sh-1); }
.contact__item strong { font-family: var(--font-display); color: var(--ink-900); }
.contact__item small { color: var(--muted); font-size: var(--fs-1); }
.contact__item--wa { border-color: rgba(37,211,102,.4); background: rgba(37,211,102,.05); }
.contact__item--wa .contact__ico { background: var(--whatsapp); color: #fff; }
.contact__ico { flex: none; width: 46px; height: 46px; border-radius: var(--r-xs); background: rgba(12,32,58,.05); color: var(--ink-800); display: grid; place-items: center; }
.contact__ico svg { width: 22px; height: 22px; }

.contact__form { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: clamp(24px, 3vw, 40px); }
.contact__form-title { font-family: var(--font-display); font-weight: 800; color: var(--ink-900); font-size: var(--fs-4); margin-bottom: var(--s-2); }
.contact__form-sub { color: var(--muted); font-size: var(--fs-2); margin-bottom: var(--s-6); }
.field { margin-bottom: var(--s-5); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.field label { display: block; font-family: var(--font-display); font-weight: 600; color: var(--ink-800); margin-bottom: 7px; font-size: var(--fs-1); }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--r-xs);
  font-family: var(--font-body); font-size: var(--fs-2); color: var(--text); background: var(--paper); transition: border-color var(--t), box-shadow var(--t), background var(--t); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--gold); box-shadow: var(--ring); }
.field textarea { resize: vertical; min-height: 110px; }
.field__error { display: none; color: var(--error); font-size: var(--fs-1); margin-top: 5px; }
.field.invalid input, .field.invalid textarea { border-color: var(--error); }
.field.invalid .field__error { display: block; }
.form-feedback { display: none; margin-top: var(--s-4); padding: 14px 16px; border-radius: var(--r-xs); font-weight: 600; background: rgba(30,138,76,.1); color: var(--ok); border: 1px solid rgba(30,138,76,.35); }
.form-feedback.show { display: block; }

/* ============================ 8. RODAPÉ / FLOAT ============================ */
.site-footer { background: var(--ink-950); color: #aebfd2; padding: var(--s-20) 0 0; }
.footer { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: var(--s-10); padding-bottom: var(--s-16); }
/* logo do rodapé com fundo branco (contorno) e ~20% maior */
/* logo do rodapé: versão navy com texto branco (imagem 4), sem caixa */
.footer__logo { display: block; width: auto; max-width: 210px; height: auto; margin-bottom: var(--s-5); }
.footer__col p { font-size: var(--fs-2); max-width: 38ch; }
/* contatos do rodapé com ícone */
.footer__contact a { display: inline-flex; align-items: center; gap: 10px; }
.footer__ci { flex: none; width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background var(--t); }
.footer__ci svg { width: 15px; height: 15px; color: var(--gold-bright); }
.footer__contact a:hover .footer__ci { background: rgba(219,193,96,.18); }
.footer__col h4 { color: #fff; font-size: var(--fs-2); letter-spacing: .04em; text-transform: uppercase; margin-bottom: var(--s-5); }
.footer__col li { margin-bottom: var(--s-3); }
.footer__col a { font-size: var(--fs-2); transition: color var(--t); }
.footer__col a:hover { color: var(--gold-bright); }
.footer__social { display: flex; gap: 10px; margin-top: var(--s-5); }
.footer__social a { width: 40px; height: 40px; border-radius: var(--r-xs); border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; }
.footer__social a:hover { background: rgba(255,255,255,.08); border-color: var(--gold); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: var(--s-6) 0; text-align: center; font-size: var(--fs-1); color: #6f859c; }
.footer__disclaimer { margin-top: 8px; font-size: 11px; line-height: 1.5; color: #5b6f86; max-width: 100%; margin-inline: auto; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; background: var(--whatsapp);
  border-radius: 50%; display: grid; place-items: center; z-index: 990; box-shadow: 0 8px 24px rgba(37,211,102,.5); animation: pulse 2.6s infinite; transition: transform var(--t); }
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes pulse { 0%{box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,.4)} 70%{box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 16px rgba(37,211,102,0)} 100%{box-shadow:0 8px 24px rgba(37,211,102,.5),0 0 0 0 rgba(37,211,102,0)} }

.mobile-cta { display: none; }

/* ============================ 9. RESPONSIVO ============================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-12); }
  .hero__visual { max-width: 460px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc--feature { grid-column: span 1; }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento__item--wide { grid-column: span 2; }
  .about { grid-template-columns: 1fr; gap: var(--s-10); }
  .contact { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

@media (max-width: 720px) {
  .nav__menu { position: fixed; inset: 0 0 0 auto; width: min(84%, 360px); height: 100dvh; flex-direction: column;
    align-items: stretch; justify-content: flex-start; gap: var(--s-6); padding: 92px var(--s-6) var(--s-6);
    background: #fff; box-shadow: -10px 0 40px rgba(12,32,58,.18); transform: translateX(105%); transition: transform var(--t); overflow-y: auto; }
  .nav__menu.open { transform: none; }
  .nav__links { flex-direction: column; align-items: flex-start; gap: var(--s-5); }
  .nav__actions { flex-direction: column; align-items: stretch; }
  .nav__actions .btn { width: 100%; }
  .nav__toggle { display: flex; z-index: 1; }
  .timeline { grid-template-columns: 1fr; gap: var(--s-8); }
  .timeline::before { display: none; }
  .quotes { grid-template-columns: 1fr; }
  .bento, .svc-grid { grid-template-columns: 1fr; }
  .bento__item--wide { grid-column: auto; }
  .field-row { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
  .about__chip { left: 12px; }
  .mock__badge { right: 8px; }

  body { padding-bottom: 66px; }
  .whatsapp-float { bottom: 78px; right: 14px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  .mobile-cta { display: grid; grid-template-columns: 1fr 1.35fr; position: fixed; inset: auto 0 0 0; z-index: 1000; background: #fff; box-shadow: 0 -8px 28px rgba(12,32,58,.16); }
  .mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 10px; font-family: var(--font-display); font-weight: 700; font-size: var(--fs-2); }
  .mobile-cta svg { width: 18px; height: 18px; }
  .mobile-cta__call { background: var(--ink-800); color: #fff; }
  .mobile-cta__wa { background: var(--whatsapp); color: #fff; }
}

@media (max-width: 560px) {
  .proof__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .proof__item + .proof__item::before { display: none; }
}
