/* ============================================================
   LÚMEN PERÍCIAS — COMPONENTES
   Depende de tokens.css. Tema dark premium, mobile-first.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark-text);
  background: var(--ink);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }

/* Acessibilidade */
.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;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--midnight); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: 6px; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  background: rgba(13, 10, 46, 0.82);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid var(--dark-border);
  padding: 0 var(--nav-pad-x); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; height: 40px; }
.nav-logo img { height: 100%; width: auto; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-back { color: var(--dark-muted); text-decoration: none; font-size: var(--fs-small); font-weight: 500; transition: color var(--t-base) var(--ease); }
.nav-back:hover { color: var(--white); }

/* ============ BOTÕES ============ */
.btn-glow {
  background: var(--wa-green); color: var(--white);
  padding: 15px 36px; border-radius: var(--radius-pill); border: none;
  font-family: var(--font); font-weight: 700; font-size: 0.9375rem; cursor: pointer;
  transition: all var(--t-base) var(--ease); text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-glow:hover { background: var(--wa-green-hover); transform: translateY(-2px); box-shadow: var(--shadow-glow); }
.btn-glow:active { transform: scale(0.97); }
.btn-glow:disabled { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-sm { padding: 12px 28px; font-size: var(--fs-small); }

.nav-cta { background: var(--wa-green); color: var(--white); padding: 10px 24px; border-radius: var(--radius-pill); border: none; font-weight: 700; font-size: 0.8125rem; cursor: pointer; transition: all var(--t-base) var(--ease); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.nav-cta:hover { background: var(--wa-green-hover); transform: scale(1.03); box-shadow: var(--shadow-glow-soft); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-pill);
  border: 1px solid var(--dark-border);
  font-family: var(--font); font-weight: 500; font-size: 0.9375rem; cursor: pointer;
  transition: all var(--t-base) var(--ease); text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-outline:hover { border-color: var(--dark-border-strong); background: rgba(255,255,255,0.05); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 100px;
  background:
    linear-gradient(135deg, rgba(13, 10, 46, 0.88) 0%, rgba(37, 26, 116, 0.72) 100%),
    var(--deep);
}
.hero.has-bg { background-image: linear-gradient(135deg, rgba(13, 10, 46, 0.9) 0%, rgba(37, 26, 116, 0.74) 100%), var(--hero-bg); background-size: cover; background-position: center; }
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px;
  background: linear-gradient(to top, var(--ink), transparent); pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; }
.hero-brand { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.hero-brand img { width: auto; }
.hero-brand img:first-child { height: 60px; }
.hero-brand img:last-child { height: 46px; }
.hero-eyebrow {
  font-size: var(--fs-eyebrow); font-weight: 600; letter-spacing: 0.12em;
  color: var(--white); margin-bottom: 20px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 32px; height: 1px; background: rgba(255,255,255,0.4); }
.hero h1 {
  font-family: var(--font-display); font-size: var(--fs-h1);
  font-weight: 800; line-height: 1.06; letter-spacing: -0.035em; color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: rgba(255, 255, 255, 0.65); }
.hero-sub {
  font-size: var(--fs-lead); color: var(--dark-muted); line-height: 1.65;
  max-width: 600px; margin: 0 auto 40px; text-align: justify; text-align-last: center;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-proof { display: flex; gap: 48px; margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--dark-border); justify-content: center; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.25rem; font-weight: 800; letter-spacing: -0.03em; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: var(--fs-xsmall); color: var(--dark-muted); margin-top: 4px; }

/* ============ SECTION HEADER ============ */
section { background: var(--ink); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header h2 { font-family: var(--font-display); font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 12px; color: var(--white); }
.section-header p { font-size: var(--fs-body); color: var(--dark-muted); }

/* ============ PROBLEMA ============ */
.problem { padding: var(--section-y) 0; background: var(--ink); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-card); padding: 32px 28px; transition: transform var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease), background var(--t-slow) var(--ease); }
.problem-card:hover { transform: translateY(-3px); border-color: var(--dark-border-strong); }
.problem-card { contain: layout paint; }
.problem-icon { width: 44px; height: 44px; border-radius: var(--radius-icon); background: rgba(197, 48, 48, 0.15); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 20px; }
.problem-card h3 { font-weight: 700; font-size: var(--fs-body); color: var(--white); margin-bottom: 8px; }
.problem-card p { font-size: var(--fs-small); color: var(--dark-muted); line-height: 1.55; text-align: justify; }

/* ============ SOLUÇÃO / SERVIÇOS (card featured no hub) ============ */
.services { padding: var(--section-y) 0; background: var(--dark-surface); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-card); padding: 36px 28px; contain: layout paint; transition: transform var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease), background var(--t-slow) var(--ease); }
.service-card:hover { transform: translateY(-2px); border-color: var(--dark-border-strong); }
/* complementos da oferta: botão ao rodapé + cursor */
.service-card:not(.featured) { display: flex; flex-direction: column; justify-content: space-between; }
/* REALCE na cor do serviço mais solicitado.
   Desktop: ao passar o mouse (só em dispositivos com hover real).
   Mobile: classe .is-active dirigida pelo scroll (IntersectionObserver, ver ui.js). */
@media (hover: hover) {
  .service-card:not(.featured):hover, .niche-card:hover, .problem-card:hover {
    background: linear-gradient(135deg, var(--midnight) 0%, var(--deep) 100%);
    border-color: var(--dark-border-strong);
  }
  .service-card:not(.featured):hover p, .niche-card:hover p, .problem-card:hover p { color: var(--dark-text); }
}
.service-card:not(.featured).is-active, .niche-card.is-active, .problem-card.is-active {
  background: linear-gradient(135deg, var(--midnight) 0%, var(--deep) 100%);
  border-color: var(--dark-border-strong);
}
.service-card:not(.featured).is-active p, .niche-card.is-active p, .problem-card.is-active p { color: var(--dark-text); }
/* layout da oferta: featured alto à esquerda + 3 complementos empilhados à direita */
.oferta-grid { grid-template-columns: 1.3fr 1fr; }
.oferta-grid .featured { grid-row: span 3; }
.service-card.featured { background: linear-gradient(135deg, var(--midnight) 0%, var(--deep) 100%); border: 1px solid var(--dark-border-strong); padding: 48px 32px; display: flex; flex-direction: column; justify-content: space-between; }
.service-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; margin-bottom: 20px; }
.service-card h3 { font-weight: 700; font-size: var(--fs-h3); color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: var(--fs-small); color: var(--dark-muted); line-height: 1.55; text-align: justify; }
.service-tag { display: inline-flex; padding: 5px 14px; border-radius: var(--radius-pill); font-size: var(--fs-eyebrow); font-weight: 600; margin-top: 16px; background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.8); }

/* ============ GRID DE NICHOS (hub) ============ */
.niches { padding: var(--section-y) 0; background: var(--dark-surface); }
.niche-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.niche-card {
  background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-card);
  padding: 32px 28px; display: flex; flex-direction: column; contain: layout paint;
  transition: transform var(--t-slow) var(--ease), border-color var(--t-slow) var(--ease), background var(--t-slow) var(--ease);
}
.niche-card:hover { transform: translateY(-3px); border-color: var(--dark-border-strong); }
.niche-card .service-icon { margin-bottom: 18px; }
.niche-card h3 { font-weight: 700; font-size: var(--fs-h3); color: var(--white); margin-bottom: 8px; }
.niche-card p { font-size: var(--fs-small); color: var(--dark-muted); line-height: 1.55; flex-grow: 1; }
.niche-card .niche-link {
  margin-top: 18px; align-self: flex-start; text-decoration: none;
  color: var(--white); font-weight: 600; font-size: var(--fs-small);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--t-base) var(--ease);
}
.niche-card .niche-link:hover { gap: 12px; }
.niche-card .niche-link.is-form { color: var(--wa-green); }
.niche-tag { display: inline-flex; padding: 4px 12px; border-radius: var(--radius-pill); font-size: var(--fs-eyebrow); font-weight: 600; margin-bottom: 16px; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); align-self: flex-start; }
.niche-card.is-outros { background: linear-gradient(135deg, rgba(37,26,116,0.4) 0%, rgba(26,19,83,0.4) 100%); }

/* ============ PARA QUEM ============ */
.para-quem { padding: var(--section-y) 0; background: var(--ink); }
.para-quem-list { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.para-quem-item { display: flex; align-items: flex-start; gap: 12px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-icon); padding: 18px 20px; font-size: var(--fs-small); color: var(--dark-text); line-height: 1.5; }
.para-quem-item::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--wa-green); flex-shrink: 0; margin-top: 7px; }

/* ============ CTA STRIP ============ */
.cta-strip { padding: 80px 0; text-align: center; background: linear-gradient(135deg, var(--midnight) 0%, var(--deep) 100%); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.cta-strip h2 { font-family: var(--font-display); font-size: var(--fs-h2-cta); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px; }
.cta-strip p { color: var(--dark-muted); font-size: var(--fs-body); margin-bottom: 32px; }

/* ============ PROCESSO ============ */
.process { padding: var(--section-y) 0; background: var(--ink); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.step { text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: var(--radius-field); background: var(--dark-card); border: 1px solid var(--dark-border); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 1.125rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step h3 { font-weight: 700; font-size: 0.9375rem; color: var(--white); margin-bottom: 8px; }
.step p { font-size: 0.8125rem; color: var(--dark-muted); line-height: 1.5; text-align: justify; }

/* ============ DEPOIMENTOS ============ */
.social-proof { padding: var(--section-y) 0; background: var(--dark-surface); }
.testimonials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 64px; }
.testimonial { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-card); padding: 36px 32px; }
.testimonial-text { font-size: var(--fs-lead); line-height: 1.6; color: var(--dark-text); margin-bottom: 24px; font-style: italic; text-align: justify; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--midnight); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: var(--fs-small); }
.testimonial-name { font-weight: 600; font-size: var(--fs-small); color: var(--white); }
.testimonial-role { font-size: var(--fs-xsmall); color: var(--dark-muted); }

/* ============ SOBRE ============ */
.about { padding: var(--section-y) 0; background: var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.about-photo { width: 100%; aspect-ratio: 3/4; border-radius: var(--radius-card); overflow: hidden; position: relative; border: 1px solid var(--dark-border); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--white); margin-bottom: 8px; }
.about-crm { color: var(--white); font-weight: 600; font-size: var(--fs-small); margin-bottom: 20px; }
.about-bio { color: var(--dark-muted); line-height: 1.7; margin-bottom: 24px; text-align: justify; }
.about-credentials { display: flex; flex-direction: column; gap: 10px; }
.credential { display: flex; align-items: flex-start; gap: 10px; font-size: 0.8125rem; color: var(--dark-text); }
.credential::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--white); flex-shrink: 0; margin-top: 7px; }

/* ============ FAQ ============ */
.faq { padding: var(--section-y) 0; background: var(--dark-surface); }
.faq-list { max-width: 720px; margin: 64px auto 0; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--dark-border); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 22px 0; text-align: left; font-family: var(--font); font-weight: 600; font-size: var(--fs-body); color: var(--white); display: flex; justify-content: space-between; align-items: center; gap: 16px; letter-spacing: -0.01em; }
.faq-q::after { content: '+'; font-size: 1.25rem; color: var(--dark-muted); transition: transform var(--t-fast); flex-shrink: 0; }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--t-slow) var(--ease); font-size: 0.9375rem; color: var(--dark-muted); line-height: 1.6; }
.faq-a > div { overflow: hidden; }
.faq-a.open { grid-template-rows: 1fr; padding-bottom: 20px; }

/* ============ FORMULÁRIO DE TRIAGEM ============ */
.triagem { padding: var(--section-y) 0; background: var(--ink); }
.triagem-wrap { max-width: 640px; margin: 0 auto; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-card); padding: clamp(28px, 5vw, 48px); }
.triagem-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: var(--fs-small); font-weight: 600; color: var(--dark-text); }
.field label .req { color: var(--wa-green); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: var(--fs-small); color: var(--white);
  background: rgba(255,255,255,0.04); border: 1px solid var(--dark-border);
  border-radius: var(--radius-field); padding: 13px 15px; width: 100%;
  transition: border-color var(--t-base) var(--ease), background var(--t-base) var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--dark-subtle); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wa-green); background: rgba(255,255,255,0.06); }
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff80' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.field textarea { resize: vertical; min-height: 96px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--field-error); }
.field-error-msg { font-size: var(--fs-xsmall); color: var(--field-error); display: none; }
.field.invalid .field-error-msg { display: block; }
.char-count { font-size: var(--fs-xsmall); color: var(--dark-subtle); text-align: right; }
.consent { flex-direction: row; align-items: flex-start; gap: 10px; }
.consent input { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--wa-green); }
.consent label { font-size: var(--fs-xsmall); color: var(--dark-muted); font-weight: 400; line-height: 1.5; }
.consent a { color: var(--white); text-decoration: underline; }
/* honeypot escondido de humanos */
.hp-field { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }
.triagem-submit { margin-top: 6px; width: 100%; }
.triagem-note { font-size: var(--fs-xsmall); color: var(--dark-subtle); text-align: center; margin-top: 4px; line-height: 1.5; }
.form-status { font-size: var(--fs-small); text-align: center; padding: 12px; border-radius: var(--radius-icon); display: none; }
.form-status.error { display: block; background: rgba(197,48,48,0.15); color: var(--field-error); }

/* ============ FINAL CTA ============ */
.final-cta { padding: 140px 0; text-align: center; position: relative; overflow: hidden; background: radial-gradient(ellipse at 50% 30%, rgba(37,26,116,0.6) 0%, transparent 60%), var(--ink); }
.final-cta h2 { font-family: var(--font-display); font-size: var(--fs-h2-final); font-weight: 800; color: var(--white); letter-spacing: -0.035em; line-height: 1.1; margin-bottom: 16px; }
.final-cta p { color: var(--dark-muted); font-size: var(--fs-lead); max-width: 520px; margin: 0 auto 40px; }
.final-cta-trust { margin-top: 40px; display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.final-cta-trust span { font-size: var(--fs-xsmall); color: var(--dark-subtle); display: flex; align-items: center; gap: 6px; }

/* ============ FOOTER ============ */
.footer { padding: 48px 0; text-align: center; border-top: 1px solid var(--dark-border); background: var(--ink); }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 14px; }
.footer-logo img { height: 26px; opacity: 0.7; width: auto; }
.footer p { font-size: var(--fs-xsmall); color: var(--dark-muted); line-height: 1.7; }
.footer a { color: var(--dark-muted); text-decoration: none; }
.footer a:hover { color: var(--white); }
.footer-links { margin-top: 10px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.footer-disclaimer { margin-top: 16px; max-width: 720px; margin-left: auto; margin-right: auto; font-size: 0.6875rem; color: var(--dark-subtle); }

/* ============ WHATSAPP FLOAT ============ */
.wa-float { position: fixed; bottom: 24px; right: 24px; z-index: var(--z-float); width: 56px; height: 56px; border-radius: 50%; background: var(--wa-green); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: var(--shadow-float); transition: transform var(--t-base) var(--ease); }
.wa-float:hover { transform: scale(1.08); }

/* ============ PÁGINAS LEGAIS (prose) ============ */
.legal { padding: 120px 0 80px; background: var(--ink); }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 8px; }
.legal .legal-meta { color: var(--dark-subtle); font-size: var(--fs-small); margin-bottom: 40px; }
.legal h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin: 36px 0 12px; }
.legal p, .legal li { color: var(--dark-muted); line-height: 1.7; font-size: 0.9375rem; }
.legal ul { padding-left: 22px; margin: 8px 0; display: flex; flex-direction: column; gap: 6px; }
.legal a { color: var(--white); text-decoration: underline; }

/* ============ MOVIMENTO REDUZIDO ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============ RESPONSIVO (mobile-first fixes) ============ */
@media (max-width: 768px) {
  .nav { padding: 0 16px; height: 56px; }
  .nav-logo img:last-child { display: none; }
  .nav-logo img:first-child { height: 32px; }
  .nav-cta { padding: 8px 16px; font-size: 0.75rem; }

  .hero { padding: 96px 0 64px; min-height: auto; }
  .hero-brand { gap: 12px; margin-bottom: 28px; }
  .hero-brand img:first-child { height: 46px; }
  .hero-brand img:last-child { height: 36px; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 0.9375rem; margin-bottom: 28px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-glow, .btn-outline { width: 100%; }
  .hero-proof { gap: 0; margin-top: 40px; padding-top: 24px; justify-content: space-around; }
  .hero-stat-num { font-size: 1.75rem; }

  .problem, .services, .niches, .process, .social-proof, .faq, .about, .para-quem, .triagem { padding: var(--section-y-mobile) 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 1.5rem; }

  .problem-grid, .services-grid, .niche-grid, .para-quem-list, .oferta-grid { grid-template-columns: 1fr; }
  .service-card.featured, .oferta-grid .featured { grid-row: auto; padding: 32px 24px; }

  .process-steps { grid-template-columns: 1fr; gap: 32px; margin-top: 40px; }
  .testimonials { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-height: 380px; aspect-ratio: 4/3; }
  .about h2 { font-size: 1.5rem; }

  .cta-strip { padding: 56px 0; }
  .cta-strip h2 { font-size: 1.25rem; }

  .final-cta { padding: 80px 0; }
  .final-cta h2 { font-size: 1.75rem; }
  .final-cta-trust { flex-direction: column; gap: 10px; align-items: center; }

  .faq-q { font-size: 0.9375rem; padding: 18px 0; }

  .field-row { grid-template-columns: 1fr; gap: 18px; }
  .triagem-wrap { padding: 28px 22px; }

  .wa-float { width: 60px; height: 60px; bottom: 20px; right: 16px; }
}
