/* =====================================================================
   Agência Pilaris - Site Institucional v2
   Pilaris Design System v1.1 (maio 2026) aplicado.
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Paleta canônica DS v1.1 (não muda entre temas) */
  --bone: #FAFAF7;
  --stone: #E5E3DC;
  --slate: #888780;
  --ink: #1F1F1C;
  --carbon: #0A0A0A;
  --pilaris: #FB8500;
  --pilaris-dim: #C26800;
  --pilaris-soft: #FFA53D;
  --pilaris-tint: rgba(251, 133, 0, 0.10);
  --pilaris-tint-soft: rgba(251, 133, 0, 0.04);
  --pilaris-shadow: rgba(251, 133, 0, 0.30);

  /* Semânticos */
  --success: #0F6E56;
  --success-fg: #6FD9B0;
  --success-tint: rgba(15, 110, 86, 0.15);
  --danger: #A32D2D;
  --danger-fg: #F0A8A0;
  --danger-tint: rgba(163, 45, 45, 0.15);
  --warning: #BA7517;

  /* WhatsApp (exceção autorizada - cor universal de mensageria) */
  --whatsapp: #25D366;
  --whatsapp-shadow: rgba(37, 211, 102, 0.25);

  /* Aliases - DARK como default */
  --bg: var(--carbon);
  --bg-elevated: var(--ink);
  --bg-elevated-hover: #26261F;
  --fg: var(--bone);
  --fg-muted: #B5B4AC;
  --fg-subtle: var(--slate);
  --border: rgba(250, 250, 247, 0.10);
  --border-strong: rgba(250, 250, 247, 0.20);
  --border-hairline: rgba(250, 250, 247, 0.06);
  --header-scrim: rgba(10, 10, 10, 0.78);
  --ghost-hover: rgba(250, 250, 247, 0.03);
  --trust-strip-bg: rgba(31, 31, 28, 0.4);
  --diag-input-bg: var(--carbon);

  /* Tokens semânticos (apontam pros aliases acima, mudam por tema) */
  --surface-base: var(--bg);
  --surface-elevated: var(--bg-elevated);
  --surface-section: var(--bg-elevated);
  --text-primary: var(--fg);
  --text-secondary: var(--fg-muted);
  --text-muted: var(--fg-subtle);
  --border-subtle: var(--border);

  /* Tipografia */
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Raios */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Espaçamento */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* Motion */
  --ease-default: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 120ms;
  --dur: 240ms;
  --dur-slow: 480ms;

  /* Container */
  --container: 1240px;
  --container-narrow: 880px;
  --container-prose: 640px;
}

/* ---------- Tema claro ---------- */
[data-theme="light"] {
  /* Surfaces */
  --bg: var(--bone);                    /* base de página */
  --bg-elevated: #FFFFFF;               /* cards: branco puro pra elevação real */
  --bg-elevated-hover: #F4F2EB;
  --surface-section: #F3F2EC;           /* fundo de seção alternada (mais sutil que cards) */

  /* Texto */
  --fg: var(--carbon);
  --fg-muted: #5F5E5A;                  /* texto secundário: tom quente, menos saturado */
  --fg-subtle: var(--slate);            /* texto auxiliar (microcopy) */
  --text-secondary: #5F5E5A;
  --text-muted: var(--slate);

  /* Borders mais sutis */
  --border: rgba(10, 10, 10, 0.08);
  --border-subtle: rgba(10, 10, 10, 0.08);
  --border-strong: rgba(10, 10, 10, 0.18);
  --border-hairline: rgba(10, 10, 10, 0.05);

  /* Scrims */
  --header-scrim: rgba(250, 250, 247, 0.82);
  --ghost-hover: rgba(10, 10, 10, 0.04);
  --trust-strip-bg: rgba(243, 242, 236, 0.6);
  --diag-input-bg: #FFFFFF;
}

/* ---------- Reset minimalista ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv11', 'ss01';
  text-rendering: optimizeLegibility;
  transition: background-color 200ms var(--ease-default), color 200ms var(--ease-default);
}

/* Smooth transição entre temas em componentes-chave */
.site-header, .site-footer, .icp-card, .service-card, .diff-item, .svc-block,
.step-card, .faq-item, .diag-form, .diag-input, .trust-strip, .btn,
.section-alt, .ty-cross-card, .ty-badge, .founder-photo {
  transition:
    background-color 200ms var(--ease-default),
    color 200ms var(--ease-default),
    border-color 200ms var(--ease-default);
}
@media (prefers-reduced-motion: reduce) {
  body, .site-header, .site-footer, .icp-card, .service-card, .diff-item,
  .svc-block, .step-card, .faq-item, .diag-form, .diag-input,
  .trust-strip, .btn, .section-alt, .ty-cross-card, .ty-badge,
  .founder-photo {
    transition: none;
  }
}

img, svg, video, picture {
  display: block;
  max-width: 100%;
  height: auto;
}

button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
em { font-style: normal; color: var(--pilaris); }

/* Tabular nums onde importa */
.tabular, time, .price, .stat-num { font-variant-numeric: tabular-nums; }

/* Focus ring acessível */
:focus-visible {
  outline: 2px solid var(--pilaris);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: var(--s-4);
  background: var(--pilaris);
  color: var(--carbon);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 600;
  z-index: 100;
  transition: top var(--dur) var(--ease-default);
}
.skip-link:focus { top: var(--s-4); }

/* Selection */
::selection {
  background: var(--pilaris);
  color: var(--carbon);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--s-6); } }
@media (min-width: 1024px) { .container { padding: 0 var(--s-7); } }

.container-narrow { max-width: var(--container-narrow); }
.container-prose  { max-width: var(--container-prose); }

/* ---------- Tipografia ---------- */
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  line-height: 1;
}

.kicker--accent, .eyebrow--accent {
  color: var(--pilaris);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pilaris);
  animation: pulse-opacity 2.4s infinite;
  display: inline-block;
}
@keyframes pulse-opacity {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
@media (prefers-reduced-motion: reduce) {
  .pulse-dot { animation: none; }
}

.display, h1.display {
  font-size: clamp(36px, 5.6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--fg);
  text-wrap: balance;
}

h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h2, .h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3, .h3 {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.lead {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 60ch;
}

.body-sm { font-size: 13px; line-height: 1.55; }

p { color: var(--fg-muted); }
p strong { color: var(--fg); font-weight: 600; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition: all var(--dur) var(--ease-default);
}
.site-header.is-scrolled {
  background: var(--header-scrim);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-hairline);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  height: 72px;
  transition: height var(--dur) var(--ease-default);
}
.site-header.is-scrolled .header-inner { height: 60px; }

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-logo {
  height: 32px;
  width: auto;
}
/* Dark é default */
.brand-logo--dark { display: block; }
.brand-logo--light { display: none; }
[data-theme="light"] .brand-logo--dark { display: none; }
[data-theme="light"] .brand-logo--light { display: block; }

.brand-monogram {
  height: 36px;
  width: 36px;
  display: none;
}

@media (max-width: 480px) {
  .brand-logo--dark, .brand-logo--light { display: none; }
  [data-theme="light"] .brand-logo--dark,
  [data-theme="light"] .brand-logo--light { display: none; }
  .brand-monogram { display: block; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: var(--s-6);
  flex: 1;
  justify-content: center;
}
.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  transition: color var(--dur) var(--ease-default);
  position: relative;
}
.nav-desktop a:hover { color: var(--fg); }
.nav-desktop a.is-current { color: var(--fg); }
.nav-desktop a.is-current::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1.5px;
  background: var(--pilaris);
}

@media (min-width: 900px) {
  .nav-desktop { display: flex; }
}

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .header-cta .btn-ghost { display: none; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.005em;
  text-decoration: none;
  border: 0.5px solid transparent;
  border-radius: var(--r-md);
  padding: 10px 18px;
  cursor: pointer;
  transition: all var(--dur) var(--ease-default);
  white-space: nowrap;
  min-height: 40px;
}
.btn:focus-visible {
  outline: 2px solid var(--pilaris);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--pilaris);
  color: var(--carbon);
  border-color: var(--pilaris);
}
.btn-primary:hover {
  background: var(--pilaris-soft);
  border-color: var(--pilaris-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--pilaris-shadow);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--fg-subtle);
  background: var(--ghost-hover);
}

.btn-dark {
  background: var(--surface-elevated);
  color: var(--text-primary);
  border-color: var(--border-subtle);
}
.btn-dark:hover {
  background: var(--bg-elevated-hover);
  border-color: var(--border-strong);
  transform: translateY(-1px);
}

.btn-lg {
  font-size: 14px;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: var(--r-md);
}
.btn-sm {
  font-size: 12px;
  padding: 6px 14px;
  min-height: 32px;
  border-radius: var(--r-sm);
}

.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform var(--dur) var(--ease-default);
  font-weight: 500;
}
.btn-arrow:hover::after { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .btn { transition: background var(--dur) ease, border-color var(--dur) ease; }
  .btn:hover { transform: none; }
  .btn-arrow:hover::after { transform: none; }
}

/* ---------- Sections ---------- */
section {
  padding: clamp(64px, 9vw, 96px) 0;
}
section.section-tight { padding: clamp(48px, 6vw, 72px) 0; }
section.section-alt { background: var(--surface-section); border-top: 0.5px solid var(--border-subtle); border-bottom: 0.5px solid var(--border-subtle); }

.section-heading {
  display: grid;
  gap: var(--s-5);
  margin-bottom: var(--s-8);
  max-width: 1100px;
}
@media (min-width: 900px) {
  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: var(--s-7);
    align-items: end;
  }
}
.section-heading > div:first-child .kicker { margin-bottom: var(--s-4); }
.section-heading > div:first-child h2 { margin-bottom: 0; }
.section-heading > p { font-size: 16px; color: var(--fg-muted); max-width: 56ch; }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(64px, 9vw, 96px) 0 var(--s-7);
}
.hero .container {
  max-width: var(--container-narrow);
  text-align: center;
}
.hero-eyebrow {
  justify-content: center;
  margin-bottom: var(--s-5);
}

.hero .display {
  margin: 0 auto var(--s-5);
}

/* Hero headline: 3 linhas semânticas via <br>, breakpoints específicos */
.hero h1.display {
  font-size: clamp(32px, 8vw, 40px);
  max-width: 920px;
  text-wrap: balance;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .hero h1.display { font-size: 44px; line-height: 1.06; }
}
@media (min-width: 1024px) {
  .hero h1.display { font-size: 56px; line-height: 1.05; }
}
@media (max-width: 767px) {
  .hero h1.display br { display: none; }
}
.hero .lead {
  margin: 0 auto var(--s-7);
  max-width: 60ch;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  font-size: 12px;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
}
.hero-meta span { display: inline-block; }
.hero-meta .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-subtle);
  opacity: 0.6;
}

/* ---------- Reveal stagger ---------- */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: var(--s-6) 0;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  background: var(--trust-strip-bg);
}
.trust-strip-claim {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-3) var(--s-4);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--fg-muted);
  text-align: center;
  margin: 0;
}
.trust-strip-claim span:not(.sep) { display: inline-block; }
.trust-strip-claim .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-subtle);
  opacity: 0.5;
  display: inline-block;
}

/* ---------- Manifesto ---------- */
.manifesto-section {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0;
}
.manifesto {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 28ch;
  text-wrap: balance;
}
.manifesto em { color: var(--pilaris); }

.manifesto-section .kicker { margin-bottom: var(--s-5); }

/* ---------- ICP grid 2x2 ---------- */
.icp-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .icp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-5);
  }
}

.icp-card {
  position: relative;
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: all var(--dur) var(--ease-default);
}
.icp-card:hover {
  background: var(--bg-elevated-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.icp-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--pilaris);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-4);
}
.icp-card h3 { margin-bottom: var(--s-3); }
.icp-card p { font-size: 14px; line-height: 1.6; }

/* ---------- Services grid ---------- */
.services {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  transition: all var(--dur) var(--ease-default);
}
.service-card:hover {
  background: var(--bg-elevated-hover);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.service-card.featured {
  border-color: var(--pilaris);
  background:
    linear-gradient(180deg, var(--pilaris-tint-soft), transparent 40%),
    var(--bg-elevated);
}
.service-card.featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: -10px;
  left: var(--s-5);
  background: var(--pilaris);
  color: var(--carbon);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

.service-tagline {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg-subtle);
  margin-bottom: var(--s-4);
}

.service-card h3 {
  margin-bottom: var(--s-3);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}

.service-price {
  font-size: clamp(26px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-4);
}
.service-price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-subtle);
  margin-top: var(--s-2);
  letter-spacing: 0;
}

.service-card > p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: var(--s-5);
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-6);
  flex: 1;
}
.service-card ul li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 1.5px;
  background: var(--fg-subtle);
  border-radius: 1px;
}
.service-card ul li strong { color: var(--fg); }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  padding: 10px 0;
  border-top: 0.5px solid var(--border);
  margin-top: auto;
  transition: color var(--dur) var(--ease-default);
}
.service-cta::after {
  content: "→";
  margin-left: auto;
  transition: transform var(--dur) var(--ease-default);
}
.service-cta:hover { color: var(--pilaris); }
.service-cta:hover::after { transform: translateX(3px); }

/* ---------- Process ---------- */
.process {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-6) var(--s-7);
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 0.5px solid var(--border);
}
.process-step-num {
  display: block;
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--pilaris);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-2);
}
.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.process-step p {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Diferenciais ---------- */
.diffs {
  display: grid;
  gap: var(--s-5);
}
@media (min-width: 720px) {
  .diffs { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); }
}

.diff-item {
  padding: var(--s-5);
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
}
.diff-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-subtle);
  margin-bottom: var(--s-3);
}
.diff-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--s-3);
  color: var(--fg);
}
.diff-item p {
  font-size: 14px;
  line-height: 1.6;
}

/* ---------- Fundador ---------- */
.founder {
  display: grid;
  gap: var(--s-6);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .founder {
    grid-template-columns: 45fr 55fr;
    gap: var(--s-8);
    align-items: stretch;
  }
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--r-lg);
  border: 0.5px solid var(--border);
  max-height: 480px;
}
@media (min-width: 900px) {
  .founder-photo {
    max-height: none;
    height: 100%;
  }
}
.founder-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-content .kicker { margin-bottom: var(--s-3); }
.founder-content h2 {
  margin-bottom: var(--s-5);
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.02em;
}

.founder-quote {
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  border-left: 2px solid var(--pilaris);
  padding-left: var(--s-5);
  margin-bottom: var(--s-5);
  max-width: 60ch;
}
.founder-quote em { color: var(--pilaris); font-style: italic; }

.founder-bio {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  margin-bottom: var(--s-4);
  max-width: 60ch;
}

.founder-meta {
  font-size: 13px;
  color: var(--fg-subtle);
  padding-top: var(--s-4);
  border-top: 0.5px solid var(--border);
}
.founder-meta strong { color: var(--fg); font-weight: 600; }

/* ---------- CTA Final ---------- */
.cta-final {
  padding: clamp(72px, 9vw, 112px) 0;
  background: var(--bg);
  border-top: 0.5px solid var(--border);
}
.cta-final-inner {
  max-width: var(--container-prose);
  margin: 0 auto;
  text-align: left;
}
.cta-final h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: var(--s-4);
  max-width: 22ch;
}
.cta-final > .container > .cta-final-inner > p { font-size: 16px; color: var(--fg-muted); margin-bottom: var(--s-7); max-width: 60ch; }

/* Form */
.diag-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: var(--s-5);
}

.diag-row {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .diag-row { grid-template-columns: 1fr 1fr; }
}

.diag-group { display: flex; flex-direction: column; gap: var(--s-2); }

.diag-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.005em;
}
.diag-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--fg-subtle);
  letter-spacing: 0;
}

.diag-input {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  background: var(--diag-input-bg);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  transition: border-color var(--dur) var(--ease-default), box-shadow var(--dur) var(--ease-default), background var(--dur) var(--ease-default);
}
.diag-input::placeholder { color: var(--fg-subtle); }
.diag-input:focus {
  outline: none;
  border-color: var(--pilaris);
  box-shadow: 0 0 0 3px var(--pilaris-tint);
}
.diag-input:disabled { opacity: 0.5; cursor: not-allowed; }

.diag-lgpd {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 13px;
  line-height: 1.5;
  color: var(--fg-muted);
  cursor: pointer;
}
.diag-lgpd input { margin-top: 3px; accent-color: var(--pilaris); }
.diag-lgpd a { color: var(--pilaris); text-decoration: underline; text-underline-offset: 2px; }

.diag-submit { margin-top: var(--s-2); align-self: flex-start; }

.diag-success, .diag-error {
  display: none;
  padding: var(--s-4);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.55;
  margin-top: var(--s-2);
}
.diag-success {
  background: var(--success-tint);
  border: 0.5px solid var(--success);
  color: var(--success-fg);
}
.diag-success.is-visible { display: block; }
.diag-error {
  background: var(--danger-tint);
  border: 0.5px solid var(--danger);
  color: var(--danger-fg);
}
.diag-error.is-visible { display: block; }
.diag-error p { color: inherit; margin-bottom: var(--s-3); }
.diag-error-cta { margin-top: var(--s-2); }

.cta-final-fallback {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 0.5px solid var(--border);
}
.cta-final-fallback p {
  font-size: 13px;
  color: var(--fg-subtle);
  margin-bottom: var(--s-3);
}
.cta-final-fallback-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
}
.cta-final-fallback-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  transition: color var(--dur) var(--ease-default);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.cta-final-fallback-links a:hover { color: var(--pilaris); }

.cta-final-meta {
  margin-top: var(--s-6);
  font-size: 12px;
  color: var(--fg-subtle);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-3);
  align-items: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  border-top: 0.5px solid var(--border);
  padding: var(--s-8) 0 var(--s-6);
}

.footer-grid {
  display: grid;
  gap: var(--s-7);
  grid-template-columns: 1fr;
  margin-bottom: var(--s-7);
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-6); }
}

.footer-brand-logo { height: 28px; margin-bottom: var(--s-4); }
.footer-brand-logo--dark { display: block; }
.footer-brand-logo--light { display: none; }
[data-theme="light"] .footer-brand-logo--dark { display: none; }
[data-theme="light"] .footer-brand-logo--light { display: block; }
.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 360px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg);
  margin-bottom: var(--s-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color var(--dur) var(--ease-default);
}
.footer-col a:hover { color: var(--pilaris); }

.footer-bottom {
  padding-top: var(--s-5);
  border-top: 0.5px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-4);
  justify-content: space-between;
  font-size: 12px;
  color: var(--fg-subtle);
}
.footer-bottom strong { color: var(--fg-muted); font-weight: 600; }

/* ---------- Página de serviços ---------- */
.svc-hero {
  padding: clamp(64px, 9vw, 96px) 0 var(--s-7);
}
.svc-hero .container {
  max-width: var(--container-narrow);
  text-align: center;
}
.svc-hero .kicker, .svc-hero .eyebrow {
  justify-content: center;
  margin-bottom: var(--s-5);
}
.svc-hero h1.display {
  font-size: clamp(32px, 8vw, 40px);
  margin: 0 auto var(--s-5);
  max-width: 920px;
  text-wrap: balance;
  line-height: 1.08;
}
@media (min-width: 768px) {
  .svc-hero h1.display { font-size: 44px; line-height: 1.06; }
}
@media (min-width: 1024px) {
  .svc-hero h1.display { font-size: 56px; line-height: 1.05; }
}
.svc-hero .lead {
  margin: 0 auto var(--s-7);
  max-width: 60ch;
}
.svc-hero .hero-cta-group {
  justify-content: center;
}

.svc-grid {
  display: grid;
  gap: var(--s-6);
  margin-top: var(--s-7);
}

.svc-block {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 56px);
  display: grid;
  gap: var(--s-6);
}
@media (min-width: 900px) {
  .svc-block { grid-template-columns: 1fr 1.5fr; align-items: start; gap: var(--s-8); }
}

.svc-block.featured {
  border-color: var(--pilaris);
  position: relative;
}
.svc-block.featured::before {
  content: "RECOMENDADO";
  position: absolute;
  top: -12px;
  left: var(--s-6);
  background: var(--pilaris);
  color: var(--carbon);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.svc-block-left .kicker { margin-bottom: var(--s-3); display: block; }
.svc-block-left h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-4);
}
.svc-block-left .svc-price {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--s-3);
}
.svc-block-left .svc-price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--fg-subtle);
  margin-top: var(--s-2);
}

.svc-block-right p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: var(--s-5);
}
.svc-block-right ul {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}
.svc-block-right ul li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-muted);
  padding-left: 22px;
  position: relative;
}
.svc-block-right ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 1.5px;
  background: var(--pilaris);
  border-radius: 1px;
}
.svc-block-right ul li strong { color: var(--fg); }

.svc-cta { margin-top: var(--s-4); }

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.faq-item {
  border-bottom: 0.5px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  text-align: left;
  background: transparent;
  border: 0;
  padding: var(--s-5) 0;
  font-family: inherit;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
}
.faq-question::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--pilaris);
  transition: transform var(--dur) var(--ease-default);
}
.faq-item.is-open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-default);
}
.faq-item.is-open .faq-answer {
  max-height: 800px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  padding-bottom: var(--s-5);
  max-width: 60ch;
}

/* ---------- Página de obrigado ---------- */
.ty-hero {
  padding: clamp(80px, 11vw, 144px) 0 clamp(48px, 6vw, 64px);
  text-align: center;
}
.ty-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--success-tint);
  color: var(--success-fg);
  border: 0.5px solid var(--success);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: var(--s-6);
}
.ty-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--success-fg);
  border-radius: 50%;
}
.ty-hero h1.display { margin: 0 auto var(--s-5); max-width: 22ch; }
.ty-hero .lead { margin: 0 auto; max-width: 56ch; }

.step-cards {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .step-cards { grid-template-columns: repeat(3, 1fr); }
}
.step-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.step-card-num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pilaris);
  color: var(--carbon);
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.step-card h3 { font-size: 17px; font-weight: 700; }
.step-card p { font-size: 14px; line-height: 1.55; }

.ty-accelerator { text-align: center; }
.ty-accelerator h2 { margin-bottom: var(--s-3); }
.ty-accelerator > .container > p { margin: 0 auto var(--s-6); max-width: 48ch; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  background: var(--whatsapp);
  color: var(--carbon);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 24px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: transform var(--dur) var(--ease-default), box-shadow var(--dur) var(--ease-default);
}
.btn-whatsapp:hover { transform: translateY(-1px); box-shadow: 0 8px 24px var(--whatsapp-shadow); }
@media (prefers-reduced-motion: reduce) { .btn-whatsapp:hover { transform: none; } }

.ty-crosssell { text-align: left; }
.ty-cross-card {
  max-width: var(--container-narrow);
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 0.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.ty-cross-card .kicker--accent { margin-bottom: var(--s-3); }
.ty-cross-card h2 { margin-bottom: var(--s-4); }
.ty-cross-card p { font-size: 16px; line-height: 1.6; margin-bottom: var(--s-5); }

/* ---------- Página política privacidade ---------- */
.legal {
  padding: clamp(80px, 9vw, 120px) 0 clamp(64px, 7vw, 96px);
}
.legal-content {
  max-width: var(--container-prose);
  margin: 0 auto;
}
.legal-content h1 {
  margin-bottom: var(--s-5);
}
.legal-content .lead {
  margin-bottom: var(--s-7);
}
.legal-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
}
.legal-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
}
.legal-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: var(--s-4);
}
.legal-content ul {
  padding-left: var(--s-5);
  margin-bottom: var(--s-5);
}
.legal-content ul li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--fg-muted);
  list-style: disc;
  margin-bottom: var(--s-2);
}
.legal-content a {
  color: var(--pilaris);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content .legal-meta {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 0.5px solid var(--border);
  font-size: 13px;
  color: var(--fg-subtle);
}

/* ---------- Utilities ---------- */
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.gap-2 { gap: var(--s-2); }
.gap-4 { gap: var(--s-4); }


/* ---------- Theme toggle ---------- */
.theme-toggle {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--fg);
  border: 0.5px solid var(--border-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  transition: background var(--dur) var(--ease-default), border-color var(--dur) var(--ease-default), color var(--dur) var(--ease-default);
}
.theme-toggle:hover {
  background: var(--bg-elevated-hover);
  border-color: var(--fg-subtle);
}
.theme-toggle:focus-visible {
  outline: 2px solid var(--pilaris);
  outline-offset: 2px;
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer { display: none; }
  body { background: white; color: black; }
}
