/* ============================================
   ALBUINI ADVOGADOS — Estilos base
   ============================================ */

:root {
  --paper: #f4f1ea;
  --paper-2: #ecE7da;
  --ink: #0a1024;
  --ink-2: #181f3a;
  --blue: #2e3f7e;
  --blue-deep: #1c2858;
  --blue-soft: #3d5099;
  --muted: #6b6960;
  --muted-2: #948f80;
  --line: rgba(10, 16, 36, 0.14);
  --line-2: rgba(10, 16, 36, 0.08);
  --line-on-dark: rgba(244, 241, 234, 0.18);
  --warn: #b8421d;
  --ok: #2d5a3d;

  --serif: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --container: 1240px;
  --container-narrow: 920px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.eyebrow-blue { color: var(--blue); }
.eyebrow-on-dark { color: rgba(244, 241, 234, 0.6); }

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.body-lead {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 60ch;
}

.body-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 62ch;
}

.text-muted { color: var(--muted); }

/* ---------- layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

section.tight { padding: 80px 0; }

.section-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  margin-bottom: 72px;
  align-items: start;
}

.section-head .label-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-head .label-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

/* dark section */
section.dark {
  background: var(--ink);
  color: var(--paper);
}

section.dark .section-head h2 { color: var(--paper); }
section.dark .body-lead,
section.dark .body-text { color: rgba(244, 241, 234, 0.78); }
section.dark .text-muted { color: rgba(244, 241, 234, 0.55); }
section.dark hr.hairline { border-color: var(--line-on-dark); }

hr.hairline {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 2px;
  transition: transform 120ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.btn-ink {
  background: var(--ink);
  color: var(--paper);
}

.btn-ink:hover {
  background: var(--ink-2);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink);
}

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line-on-dark);
}

.btn-ghost-light:hover {
  border-color: var(--paper);
}

.btn-lg {
  padding: 22px 36px;
  font-size: 16px;
}

.btn .arrow {
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: width 200ms ease;
}

.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.btn:hover .arrow { width: 24px; }

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  background: rgba(244, 241, 234, 0);
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(244, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line-2);
  padding: 14px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
}

.brand-sub {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  transition: color 160ms ease;
}

.nav-links a:hover { color: var(--blue); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--blue);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  border-radius: 2px;
  transition: background 200ms ease;
}

.header-cta:hover { background: var(--blue-deep); }

.header-oab {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ---------- hero ---------- */
.hero {
  padding: 180px 0 100px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: end;
  width: 100%;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
    font-size: clamp(44px, 6vw, 88px);  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 32px 0 40px;
  text-wrap: balance;
}

.hero-headline .accent {
  color: var(--blue);
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 21px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.hero-microcopy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-side {
  border-left: 1px solid var(--line);
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-side-item .eyebrow { margin-bottom: 8px; }
.hero-side-item .val {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-side-item .sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* hero background decoration */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-bg::before {
  content: "AA";
  position: absolute;
  right: -80px;
  bottom: -120px;
  font-family: var(--serif);
  font-size: 720px;
  font-weight: 400;
  color: var(--blue);
  opacity: 0.025;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero > .container { position: relative; z-index: 1; }

/* ---------- proposition (opening) ---------- */
.proposition {
  padding: 100px 0;
  background: var(--paper);
}

.prop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.prop-numbers {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.prop-numbers .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.prop-numbers .row:first-child { padding-top: 0; }

.prop-numbers .label-mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.prop-numbers .value strong {
  font-weight: 400;
}

.prop-numbers .grow {
  color: var(--warn);
  font-style: italic;
}

.prop-body p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 22px;
  text-wrap: pretty;
}

.prop-body p strong {
  color: var(--ink);
  font-weight: 600;
}

.prop-body .pull {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
  border-left: 2px solid var(--blue);
  padding-left: 24px;
  margin: 32px 0;
}

/* ---------- pain list ---------- */
.pain-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line-on-dark);
}

.pain-list li {
  padding: 28px 32px 28px 0;
  border-bottom: 1px solid var(--line-on-dark);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(244, 241, 234, 0.86);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-wrap: pretty;
}

.pain-list li:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--line-on-dark);
}

.pain-list li:nth-child(even) {
  padding-left: 48px;
}

.pain-list .pain-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.4);
  min-width: 24px;
  padding-top: 4px;
}

.pain-close {
  margin-top: 64px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.35;
  font-style: italic;
  color: var(--paper);
  text-wrap: balance;
  max-width: 60ch;
}

.pain-close strong { font-weight: 600; font-style: normal; }

/* ---------- solution steps ---------- */
.solution-intro {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 80px;
  max-width: 24ch;
  text-wrap: balance;
}

.solution-intro em { color: var(--blue); font-style: italic; }

.steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 48px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.step:last-child { border-bottom: 1px solid var(--line); }

.step-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--blue);
  padding-top: 6px;
}

.step-title {
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 400;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 50ch;
}

.step-meta {
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.step-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
}

/* ---------- benefits ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.benefit {
  padding: 32px 32px 32px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 48px; }
.benefit:nth-child(even) { padding-left: 48px; }

.benefit-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--blue);
  padding-top: 4px;
  min-width: 28px;
}

.benefit p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.benefit p strong { color: var(--ink); font-weight: 600; }

/* ---------- proof numbers ---------- */
.proof-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line-on-dark);
  border-bottom: 1px solid var(--line-on-dark);
}

.proof-num {
  padding: 64px 24px;
  border-right: 1px solid var(--line-on-dark);
  text-align: left;
}

.proof-num:last-child { border-right: none; }

.proof-num .big {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--paper);
  font-weight: 400;
}

.proof-num .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  margin-top: 16px;
}

/* testimonials */
.reviews-header {
  margin-top: 88px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-on-dark);
}

.reviews-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.reviews-header-text {
  font-size: 14px;
  color: rgba(244, 241, 234, 0.65);
  font-style: italic;
}

.reviews-header-link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--paper);
  border-bottom: 1px solid var(--paper);
  padding-bottom: 2px;
  transition: opacity 200ms ease;
}

.reviews-header-link:hover { opacity: 0.7; }

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.google-badge.on-dark {
  background: rgba(244, 241, 234, 0.08);
  color: var(--paper);
  border: 1px solid rgba(244, 241, 234, 0.18);
}

.stars {
  display: inline-flex;
  gap: 2px;
}

.testi-featured-wrap {
  margin-bottom: 24px;
}

.testi-card {
  background: rgba(244, 241, 234, 0.04);
  border: 1px solid var(--line-on-dark);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  transition: background 200ms ease, border-color 200ms ease;
}

.testi-card:hover {
  background: rgba(244, 241, 234, 0.06);
  border-color: rgba(244, 241, 234, 0.3);
}

.testi-card.featured {
  background: rgba(46, 63, 126, 0.18);
  border: 1px solid rgba(46, 63, 126, 0.5);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.testi-card.featured::before {
  content: "“";
  position: absolute;
  top: -40px;
  right: 32px;
  font-family: var(--serif);
  font-size: 280px;
  line-height: 1;
  color: rgba(46, 63, 126, 0.25);
  font-weight: 400;
  pointer-events: none;
}

.testi-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testi-card.featured .avatar {
  width: 56px;
  height: 56px;
  font-size: 18px;
}

.testi-id {
  flex: 1;
  min-width: 0;
}

.testi-name {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: 0.01em;
}

.testi-card.featured .testi-name { font-size: 17px; }

.testi-meta-line {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(244, 241, 234, 0.5);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.testi-stars-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-time {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.5);
  text-transform: lowercase;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--paper);
  text-wrap: pretty;
  font-weight: 400;
  position: relative;
}

.testi-card.featured .testi-quote {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 32ch;
}

.testi-tag-row {
  margin-top: 8px;
}

.testi-tag-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  font-weight: 500;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.proof-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(244, 241, 234, 0.6);
}

.proof-footer a {
  color: var(--paper);
  border-bottom: 1px solid var(--paper);
  padding-bottom: 2px;
}

/* ---------- simulator ---------- */
.simulator {
  background: var(--paper-2);
  padding: 100px 0;
}

.sim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.sim-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.sim-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-wrap: balance;
}

.sim-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
  max-width: 44ch;
}

.sim-disclaimer {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
  font-style: italic;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  max-width: 44ch;
}

.sim-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 40px;
}

.sim-input-wrap {
  margin-bottom: 32px;
}

.sim-input-wrap label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.sim-input {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 12px;
}

.sim-input .prefix {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--muted);
}

.sim-input input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  outline: none;
  width: 100%;
  -moz-appearance: textfield;
}

.sim-input input::-webkit-outer-spin-button,
.sim-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sim-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 2px;
  background: var(--line);
  margin-top: 16px;
  outline: none;
}
.sim-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
}
.sim-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--blue);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.sim-result {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.sim-result-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
}

.sim-result-row .l {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.sim-result-row .v {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.sim-result-row.hero {
  border-top: 1px solid var(--ink);
  margin-top: 12px;
  padding-top: 20px;
  padding-bottom: 8px;
}

.sim-result-row.hero .v {
  font-size: 38px;
  color: var(--blue);
  font-weight: 500;
}

/* ---------- offer ---------- */
.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.offer-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 24px;
  align-items: start;
}

.offer-item:first-child { border-top: 1px solid var(--line); }

.offer-check {
  width: 24px;
  height: 24px;
  border: 1px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}
.offer-check::before {
  content: "";
  width: 10px;
  height: 5px;
  border-left: 1.5px solid var(--blue);
  border-bottom: 1.5px solid var(--blue);
  transform: rotate(-45deg) translate(1px, -1px);
}

.offer-item p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-2);
  text-wrap: pretty;
}

.offer-item p strong { color: var(--ink); font-weight: 600; }

.offer-note {
  margin-top: 48px;
  padding: 32px;
  background: var(--paper-2);
  border-left: 3px solid var(--blue);
  font-size: 17px;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-2);
  max-width: 70ch;
}

/* ---------- objections accordion ---------- */
.obj-list {
  display: flex;
  flex-direction: column;
}

.obj-item {
  border-top: 1px solid var(--line);
  padding: 0;
}

.obj-list .obj-item:last-child { border-bottom: 1px solid var(--line); }

.obj-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
  transition: color 200ms ease;
}

.obj-q:hover { color: var(--blue); }

.obj-q .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 200ms ease, border-color 200ms ease;
}

.obj-q .icon::before,
.obj-q .icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: background 200ms ease, transform 240ms ease;
}

.obj-q .icon::before { width: 10px; height: 1px; }
.obj-q .icon::after { width: 1px; height: 10px; }

.obj-item.open .obj-q .icon { background: var(--blue); border-color: var(--blue); }
.obj-item.open .obj-q .icon::before,
.obj-item.open .obj-q .icon::after { background: var(--paper); }
.obj-item.open .obj-q .icon::after { transform: scaleY(0); }

.obj-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.obj-a-inner {
  padding: 0 64px 36px 0;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 80ch;
}

.obj-a-inner strong { color: var(--ink); }

/* ---------- commitments ---------- */
.commit-note {
  margin-bottom: 56px;
  padding: 20px 24px;
  border-left: 2px solid var(--muted);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  max-width: 72ch;
}

.commit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.commit {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.commit:nth-child(odd) { border-right: 1px solid var(--line); padding-right: 48px; }
.commit:nth-child(even) { padding-left: 48px; }

.commit-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--blue);
  padding-top: 4px;
  min-width: 28px;
}

.commit-title {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.commit-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
}

/* ---------- urgency ---------- */
.urgency {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
}

.urg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.urg-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-wrap: balance;
}

.urg-title em { color: var(--blue-soft); font-style: italic; }

.urg-body p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.78);
  margin-bottom: 24px;
}

.urg-body p strong { color: var(--paper); font-weight: 600; }

.urg-stat {
  margin-top: 32px;
  padding: 32px;
  border: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.urg-stat .big {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue-soft);
}

.urg-stat .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.55);
}

.urg-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(244, 241, 234, 0.5);
  font-style: italic;
  line-height: 1.5;
}

/* ---------- faq ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
}

/* reuses obj styles */

/* ---------- final CTA ---------- */
.final-cta {
  background: var(--paper);
  padding: 140px 0;
  text-align: left;
}

.final-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 64px 0 72px;
}

.final-option {
  padding: 40px;
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 200ms ease, transform 200ms ease;
}

.final-option.is-good {
  border-color: var(--blue);
  background: var(--paper-2);
}

.final-option .tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.final-option.is-good .tag { color: var(--blue); }

.final-option .opt-title {
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.final-option .opt-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.final-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
  max-width: 20ch;
}

.final-headline em { color: var(--blue); font-style: italic; }

.final-microcopy {
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--muted);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- ps ---------- */
.ps-section {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
}

.ps-content {
  max-width: 70ch;
}

.ps-content .label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--blue-soft);
  margin-bottom: 20px;
}

.ps-content p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.4;
  font-style: italic;
  color: var(--paper);
  margin-bottom: 20px;
  text-wrap: pretty;
}

.ps-content p.outro {
  font-style: normal;
  font-family: var(--sans);
  font-size: 17px;
  color: rgba(244, 241, 234, 0.7);
  line-height: 1.6;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-on-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 64px;
}

.footer-brand-mark {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.footer-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  color: var(--paper);
}

.footer-addr {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.7);
  font-style: normal;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.5);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(244, 241, 234, 0.85);
  transition: color 160ms ease;
}

.footer-col a:hover { color: var(--blue-soft); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-legal {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(244, 241, 234, 0.5);
  font-style: italic;
  max-width: 80ch;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244, 241, 234, 0.5);
}

/* ---------- floating WhatsApp ---------- */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px 14px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(10, 16, 36, 0.18);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 200ms ease, background 200ms ease;
  border: 1px solid rgba(244, 241, 234, 0.1);
}

.fab-wa:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.fab-wa-icon {
  width: 22px;
  height: 22px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fab-wa-icon svg { width: 14px; height: 14px; }

/* ---------- modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 16, 36, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: var(--paper);
  width: 100%;
  max-width: 560px;
  padding: 48px;
  position: relative;
  transform: translateY(20px);
  transition: transform 320ms cubic-bezier(0.2, 0.9, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--muted);
  transition: color 160ms ease;
}

.modal-close:hover { color: var(--ink); }

.modal-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}

.modal-progress .dot {
  flex: 1;
  height: 2px;
  background: var(--line);
  transition: background 200ms ease;
}

.modal-progress .dot.active { background: var(--blue); }
.modal-progress .dot.done { background: var(--ink); }

.modal-step-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.modal-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  text-wrap: balance;
}

.modal-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 32px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--blue);
}

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 16px;
  color: var(--ink-2);
  transition: color 160ms ease;
}

.form-radio:hover { color: var(--ink); }

.form-radio input { display: none; }

.form-radio .circle {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 200ms ease;
}

.form-radio input:checked + .circle {
  border-color: var(--blue);
}

.form-radio input:checked + .circle::after {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
  padding: 16px;
  background: var(--paper-2);
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.form-consent input { margin-top: 3px; }

.form-consent a { color: var(--blue); border-bottom: 1px solid var(--blue); }

.modal-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 16px;
}

.modal-actions .back {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 160ms ease;
}

.modal-actions .back:hover { color: var(--ink); }

.modal-success {
  text-align: center;
  padding: 24px 0;
}

.modal-success .checkmark {
  width: 64px;
  height: 64px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-success .checkmark::after {
  content: "";
  width: 22px;
  height: 11px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg) translate(2px, -2px);
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms cubic-bezier(0.2, 0.9, 0.3, 1),
              transform 800ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 80ms; }
.reveal.delay-2 { transition-delay: 160ms; }
.reveal.delay-3 { transition-delay: 240ms; }
.reveal.delay-4 { transition-delay: 320ms; }

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  body { font-size: 16px; }
  section { padding: 80px 0; }

  .nav-links { display: none; }
  .header-oab { display: none; }

  .hero { padding: 140px 0 80px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-side {
    border-left: none;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 32px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
  }
  .hero-side-item { flex: 1 1 140px; }

  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }

  .prop-grid,
  .urg-grid,
  .sim-grid,
  .final-options { grid-template-columns: 1fr; gap: 48px; }

  .pain-list,
  .benefits-grid,
  .commit-list,
  .testimonials,
  .proof-numbers { grid-template-columns: 1fr; }

  .testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .testi-card.featured { padding: 32px; }
  .testi-card.featured::before { font-size: 200px; right: 16px; top: -30px; }

  .pain-list li:nth-child(odd),
  .benefit:nth-child(odd),
  .commit:nth-child(odd),
  .testi:nth-child(odd) { border-right: none; padding-right: 0; }

  .pain-list li:nth-child(even),
  .benefit:nth-child(even),
  .commit:nth-child(even),
  .testi:nth-child(even) { padding-left: 0; }

  .proof-numbers { border-top: 1px solid var(--line-on-dark); }
  .proof-num { border-right: none; border-bottom: 1px solid var(--line-on-dark); padding: 40px 0; }
  .proof-num:last-child { border-bottom: none; }

  .step { grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; }
  .step-meta { grid-column: 2; border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 16px; margin-top: 16px; }

  .modal { padding: 32px 24px; }
  .modal-title { font-size: 26px; }

  .fab-wa { padding: 12px 16px; font-size: 13px; }
  .fab-wa-text { display: none; }
  .fab-wa { padding: 14px; }
  .fab-wa-icon { margin: 0; }
}

@media (max-width: 600px) {
  .container, .container-narrow { padding: 0 20px; }
  .hero-headline { font-size: 48px; }
  .hero-sub { font-size: 18px; }
}

/* ============================================
   ACESSIBILIDADE MOBILE - Adicionado em 2026-05-20
   ============================================ */

/* Garantir que nada cause scroll horizontal */
html, body { overflow-x: hidden; max-width: 100%; }
img, video, iframe { max-width: 100%; height: auto; }

/* Botao hamburguer (oculto no desktop, exibido em mobile via media query) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 10px;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Tablet - abaixo de 960px */
@media (max-width: 960px) {
  .site-header .container,
  .site-header .container-narrow { padding: 12px 20px; }
  .hero-grid { grid-template-columns: 1fr !important; gap: 32px; }
  .hero-side { order: 2; }
  .hero-headline { font-size: clamp(36px, 6vw, 56px); line-height: 1.1; }
  .hero-sub { font-size: clamp(16px, 2.2vw, 20px); }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
  .container, .container-narrow { padding: 0 24px; }
  .hero-ctas { flex-wrap: wrap; gap: 12px; }
  .hero-ctas .btn { flex: 1 1 240px; }
  section h2 { font-size: clamp(28px, 4.5vw, 40px); }
  section h3 { font-size: clamp(20px, 3vw, 26px); }
}

/* Mobile - abaixo de 768px */
@media (max-width: 768px) {
  .site-header .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 320px);
    height: 100vh;
    background: var(--paper);
    box-shadow: -8px 0 24px rgba(0,0,0,0.12);
    padding: 80px 28px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    z-index: 1000;
    overflow-y: auto;
  }
  body.nav-open .site-header .nav-links { display: flex; }
  .site-header .nav-links a {
    display: block;
    width: 100%;
    padding: 14px 4px;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }
  .site-header .header-oab { display: none; }
  .nav-toggle { display: flex; }
  .site-header .header-cta { display: none; }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(10, 16, 36, 0.45);
    z-index: 999;
  }
  body.nav-open { overflow: hidden; }
  .hero { padding: 32px 0 48px; }
  .hero-headline { font-size: clamp(32px, 8vw, 44px) !important; line-height: 1.12; }
  .hero-sub, .hero-microcopy { font-size: 16px; }
  .hero-bg { opacity: 0.25; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn, .btn-lg { width: 100%; justify-content: center; }
  .final-options { grid-template-columns: 1fr !important; gap: 16px; }
  .final-headline { font-size: clamp(28px, 6vw, 36px); }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
  section { padding: 48px 0; }
  .container, .container-narrow { padding: 0 20px; }
  .proof-numbers { grid-template-columns: 1fr !important; }
  .modal { width: 92vw; max-width: 92vw; padding: 24px 20px; }
  .modal-title { font-size: 22px; }
  input, select, textarea {
    font-size: 16px !important;
    width: 100%;
    box-sizing: border-box;
  }
  a, button { min-height: 44px; }
  .fab-wa { right: 16px !important; bottom: 16px !important; }
}

/* Mobile pequeno - abaixo de 480px */
@media (max-width: 480px) {
  :root { --container: 100%; }
  .hero-headline { font-size: clamp(28px, 9vw, 36px) !important; }
  section h2 { font-size: clamp(24px, 7vw, 32px); }
  .container, .container-narrow { padding: 0 16px; }
  .commit-num, .pain-num, .benefit-num, .proof-num { font-size: 32px; }
  .testi-card.featured::before { font-size: 120px !important; }
  .modal-title { font-size: 20px; }
}

/* Acessibilidade - focus visivel */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Preferencia por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ===== MOBILE FIX - anti-overflow & responsividade refinada ===== */
@media (max-width: 960px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  img, svg, video, iframe { max-width: 100%; height: auto; }
  .container, .container-narrow { padding: 0 16px !important; max-width: 100%; }

  /* Garante que grids encolham e nao estourem por causa do conteudo dos filhos */
  .hero-grid,
  .urg-grid,
  .prop-grid,
  .sim-grid,
  .final-options,
  .section-head,
  .footer-grid,
  .pain-list,
  .benefits-grid,
  .commit-list,
  .testimonials,
  .proof-numbers,
  .testi-grid { grid-template-columns: minmax(0, 1fr) !important; }

  .hero-grid > *,
  .urg-grid > *,
  .prop-grid > *,
  .sim-grid > *,
  .final-options > *,
  .section-head > *,
  .footer-grid > *,
  .pain-list > *,
  .benefits-grid > *,
  .commit-list > *,
  .testimonials > *,
  .proof-numbers > *,
  .testi-grid > * { min-width: 0 !important; max-width: 100%; }

  /* Textos longos quebram sem estourar */
  h1, h2, h3, h4, p, a, button, span, li {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  /* Botoes grandes nao estouram a viewport */
  .btn, .btn-lg { white-space: normal; word-wrap: break-word; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Hero side empilhado em coluna em mobile */
  .hero-side { flex-direction: column !important; gap: 24px !important; }
  .hero-side-item { flex: 1 1 100% !important; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: clamp(30px, 8vw, 40px) !important; line-height: 1.1; }
  .hero-sub { font-size: 16px; }
  .btn-lg { font-size: 14px; padding: 14px 18px; }
  section h2, .urg-title, .sec-title { font-size: clamp(26px, 7vw, 34px) !important; line-height: 1.15; }
}


/* ===== MOBILE FIX 2 - alturas de botoes e header sobreposto ===== */
@media (max-width: 960px) {
  .hero-ctas { display: flex; flex-direction: column; align-items: stretch; gap: 12px; height: auto !important; }
  .hero-ctas > .btn, .hero-ctas > a.btn, .hero-ctas > button.btn {
    flex: 0 0 auto !important;
    height: auto !important;
    min-height: 48px !important;
    width: 100%;
  }
  .hero { padding: 120px 0 64px !important; min-height: auto !important; }
  .hero-grid { align-items: start !important; }
  .site-header { background: var(--paper); border-bottom: 1px solid var(--line); backdrop-filter: blur(8px); }
  .hero-side { align-self: stretch; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 0 56px !important; }
  .site-header .container, .site-header .container-narrow { padding: 12px 16px !important; }
}


/* ===== MOBILE FIX 3 - hero-side-item width ===== */
@media (max-width: 960px) {
  .hero-side { flex-direction: column !important; flex-wrap: nowrap !important; }
  .hero-side-item { width: 100% !important; flex: 0 0 auto !important; max-width: 100% !important; }
}


/* ===== MOBILE FIX 4 - header opaco para evitar sobreposicao visual ===== */
@media (max-width: 960px) {
  .site-header {
    background: var(--paper) !important;
    background-color: #f4f1ea !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 2px 8px rgba(10, 16, 36, 0.06);
    border-bottom: 1px solid var(--line);
  }
  .site-header .brand-mark { width: 32px !important; height: 32px !important; }
  .site-header .brand { gap: 8px !important; }
}
@media (max-width: 600px) {
  .hero { padding: 130px 0 56px !important; }
}
