/* ==========================================================================
   PRO-AMIC — Landing page de conversão
   Paleta derivada da marca atual: #AB4B48 (terracota), verdes do logotipo.
   Zero dependências externas (nenhuma fonte ou script de CDN).
   ========================================================================== */

:root {
  --brand: #ab4b48;
  --brand-dark: #8c3b39;
  --brand-soft: #f6eae8;
  --sage: #6f8f56;
  --sage-dark: #55703f;
  --sage-soft: #eef3e8;
  --ink: #241c1a;
  --ink-2: #574b47;
  --ink-3: #877a75;
  --bg: #fbf8f6;
  --surface: #ffffff;
  --line: #e9dfda;
  --line-strong: #d6c7c0;
  --gold: #b0b770;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(36, 28, 26, .06), 0 2px 8px rgba(36, 28, 26, .05);
  --shadow: 0 4px 12px rgba(36, 28, 26, .07), 0 18px 40px -18px rgba(36, 28, 26, .18);
  --shadow-lg: 0 8px 24px rgba(36, 28, 26, .09), 0 40px 80px -32px rgba(36, 28, 26, .28);
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --maxw: 1140px;
  --gut: clamp(20px, 5vw, 40px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.14; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5.4vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.9vw, 2.6rem); }
h3 { font-size: clamp(1.12rem, 2vw, 1.35rem); font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: var(--surface); border-block: 1px solid var(--line); }
.section--ink { background: var(--ink); color: #f4efec; }
.section--ink h2, .section--ink h3 { color: #fff; }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.section--ink .eyebrow { color: var(--gold); }
.lead { font-size: clamp(1.05rem, 1.9vw, 1.22rem); color: var(--ink-2); line-height: 1.62; }
.section--ink .lead { color: #d9cfca; }
.center { text-align: center; }
.measure { max-width: 62ch; }
.measure-narrow { max-width: 50ch; }
.center .measure, .center .measure-narrow { margin-inline: auto; }
.nowrap { white-space: nowrap; }

/* ---------- Botões ---------------------------------------------------- */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border: 1.5px solid var(--btn-bd); border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  cursor: pointer; text-align: center; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease;
  box-shadow: 0 2px 4px rgba(140, 59, 57, .18), 0 10px 22px -10px rgba(140, 59, 57, .5);
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-2px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink-3); color: var(--ink); }
.btn--light {
  --btn-bg: #fff; --btn-fg: var(--ink); --btn-bd: #fff;
  box-shadow: 0 10px 30px -12px rgba(0, 0, 0, .5);
}
.btn--light:hover { background: #f4efec; border-color: #f4efec; color: var(--ink); }
.btn--sm { padding: 11px 19px; font-size: .92rem; }
.btn--block { width: 100%; }
.btn--wa { --btn-bg: var(--sage); --btn-bd: var(--sage); box-shadow: 0 2px 4px rgba(85, 112, 63, .2), 0 10px 22px -10px rgba(85, 112, 63, .5); }
.btn--wa:hover { background: var(--sage-dark); border-color: var(--sage-dark); }
.btn-note { font-size: .86rem; color: var(--ink-3); margin: 12px 0 0; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.center .cta-row { justify-content: center; }

/* ---------- Barra superior + header ---------------------------------- */
.topbar {
  background: var(--ink); color: #e8dfda; font-size: .82rem; text-align: center;
  padding: 9px var(--gut); letter-spacing: .01em;
}
.topbar strong { color: #fff; }
.topbar a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 248, 246, .88);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.site-header .wrap { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; }
.brand img { width: 40px; height: 40px; }
.brand > span { display: block; }
.brand b { display: block; font-size: 1.06rem; font-weight: 800; letter-spacing: -.02em; color: var(--ink); }
.brand span span { display: block; font-size: .68rem; font-weight: 600; color: var(--ink-3); letter-spacing: .04em; text-transform: uppercase; }
.brand:hover { text-decoration: none; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink-2); font-weight: 600; font-size: .95rem; }
.nav a:hover { color: var(--brand); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav, .header-actions .btn--ghost { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px; background: none;
    border: 1.5px solid var(--line-strong); border-radius: 999px; padding: 9px 14px;
    font: inherit; font-weight: 700; font-size: .88rem; color: var(--ink); cursor: pointer;
  }
  .site-header.is-open .nav {
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; inset: 100% 0 auto; background: var(--surface);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 8px var(--gut) 18px;
  }
  .site-header.is-open .nav a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
}

/* ---------- Hero ------------------------------------------------------ */
/* Sem overflow:hidden aqui — ele cortaria o .float-card, que sai da caixa de propósito.
   O vazamento horizontal do gradiente é contido pelo overflow-x do body. */
.hero { padding: clamp(38px, 6vw, 76px) 0 clamp(60px, 7vw, 96px); position: relative; }
.hero::before {
  content: ""; position: absolute; inset: -12% -6% auto auto; width: 58vw; height: 58vw;
  background: radial-gradient(circle at 60% 40%, rgba(171, 75, 72, .1), transparent 62%);
  pointer-events: none; z-index: -1;
}
.hero .wrap { position: relative; display: grid; gap: clamp(34px, 5vw, 60px); align-items: center; }
@media (min-width: 960px) { .hero .wrap { grid-template-columns: 1.06fr .94fr; } }

.hero h1 { margin-bottom: 20px; }
.hero h1 mark { background: linear-gradient(180deg, transparent 58%, rgba(176, 183, 112, .48) 58%); color: inherit; padding: 0 2px; }
.hero .lead { margin-bottom: 26px; max-width: 34em; }
.hero .lead strong { color: var(--ink); }

.proofbar {
  list-style: none; margin: 28px 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  font-size: .89rem; font-weight: 600; color: var(--ink-2);
}
.proofbar li { display: flex; align-items: center; gap: 7px; }
.proofbar svg { flex: none; color: var(--sage); }

.hero-visual { position: relative; }
.hero-visual .shot {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-lg);
}
.hero-visual .shot img { width: 100%; }
.shot-cap {
  font-size: .78rem; color: var(--ink-3); padding: 10px 14px; border-top: 1px solid var(--line);
  background: var(--surface); font-weight: 600;
}
.float-card {
  position: absolute; left: -6px; bottom: -26px; z-index: 2;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 13px 16px; max-width: 260px;
}
.float-card b { display: block; font-size: 1.5rem; letter-spacing: -.03em; color: var(--brand); line-height: 1.1; }
.float-card span { font-size: .8rem; color: var(--ink-2); font-weight: 600; line-height: 1.35; display: block; margin-top: 2px; }
@media (max-width: 620px) { .float-card { position: static; margin-top: 16px; max-width: none; } }

/* ---------- Dor ------------------------------------------------------- */
.pain-grid { display: grid; gap: 18px; margin-top: 36px; }
@media (min-width: 760px) { .pain-grid { grid-template-columns: repeat(3, 1fr); } }
.pain {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
}
.pain-ico {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand); margin-bottom: 14px;
}
.pain h3 { font-size: 1.04rem; margin-bottom: 8px; }
.pain p { font-size: .95rem; color: var(--ink-2); }

.pain-turn {
  margin-top: 34px; padding: 26px 28px; border-radius: var(--radius);
  background: var(--sage-soft); border: 1px solid #dbe6cf;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem); font-weight: 700; letter-spacing: -.01em;
  color: var(--ink); text-align: center;
}
.pain-turn span { color: var(--sage-dark); }

/* ---------- Jornada / passos ------------------------------------------ */
.steps { display: grid; gap: clamp(40px, 6vw, 72px); margin-top: clamp(38px, 5vw, 60px); }
.step { display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) {
  .step { grid-template-columns: 1fr 1.12fr; gap: 48px; }
  .step:nth-child(even) .step-copy { order: 2; }
}
.step-n {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 14px;
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--brand);
}
.step-n i {
  font-style: normal; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--brand); color: #fff; font-size: .8rem; letter-spacing: 0;
}
.step h3 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); font-weight: 800; }
.step p { color: var(--ink-2); }
.step ul { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.step ul li { position: relative; padding-left: 26px; font-size: .95rem; color: var(--ink-2); }
.step ul li::before {
  content: ""; position: absolute; left: 4px; top: .52em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold);
}
.step-shot {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow);
}

/* ---------- Preço: reposicionamento --------------------------------- */
.price-hero { text-align: center; }
.price-hero h2 { max-width: 22ch; margin-inline: auto; }

.model-compare { display: grid; gap: 20px; margin: clamp(34px, 5vw, 54px) 0 0; }
@media (min-width: 820px) { .model-compare { grid-template-columns: 1fr 1fr; } }
.model {
  border-radius: var(--radius-lg); padding: 26px; border: 1px solid var(--line);
  background: var(--surface); text-align: left; box-shadow: var(--shadow-sm);
}
.model--them { background: #f4f0ee; }
.model--us { border-color: var(--sage); border-width: 2px; background: var(--surface); box-shadow: var(--shadow); }
.model-tag {
  display: inline-flex; align-items: center; gap: 7px; font-size: .74rem; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
  margin-bottom: 16px;
}
.model--them .model-tag { background: #e5dcd8; color: var(--ink-2); }
.model--us .model-tag { background: var(--sage); color: #fff; }
.model h3 { font-size: 1.16rem; margin-bottom: 6px; }
.model p { font-size: .95rem; color: var(--ink-2); }
.model figure { margin: 18px 0 0; }
.model figure svg { width: 100%; height: auto; display: block; }
.model figcaption { font-size: .78rem; color: var(--ink-3); margin-top: 10px; }

/* Calculadora */
.calc {
  margin-top: clamp(34px, 5vw, 54px); background: var(--ink); color: #f4efec;
  border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px); text-align: left;
  box-shadow: var(--shadow-lg);
}
.calc h3 { color: #fff; font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-bottom: 6px; }
.calc > p { color: #c9bdb8; font-size: .95rem; }
.calc-grid { display: grid; gap: clamp(24px, 4vw, 44px); margin-top: 26px; align-items: start; }
@media (min-width: 860px) { .calc-grid { grid-template-columns: 1fr 1fr; } }

.field { margin-bottom: 22px; }
.field:last-child { margin-bottom: 0; }
.field label { display: block; font-size: .86rem; font-weight: 700; color: #e8dfda; margin-bottom: 10px; }
.field-val { color: var(--gold); font-variant-numeric: tabular-nums; }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) var(--pct, 30%), rgba(255, 255, 255, .18) var(--pct, 30%));
  outline: none; cursor: pointer; margin: 0;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 4px solid var(--gold); cursor: grab;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: #fff;
  border: 4px solid var(--gold); cursor: grab;
}
input[type="range"]:focus-visible::-webkit-slider-thumb { outline: 3px solid #fff; outline-offset: 2px; }
.range-ends { display: flex; justify-content: space-between; font-size: .74rem; color: #9c8f8a; margin-top: 8px; }

.money-input { position: relative; }
.money-input span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #9c8f8a; font-weight: 700; font-size: .95rem; }
.money-input input {
  width: 100%; padding: 13px 15px 13px 44px; border-radius: 11px; font: inherit; font-weight: 700;
  background: rgba(255, 255, 255, .07); border: 1.5px solid rgba(255, 255, 255, .18); color: #fff;
}
.money-input input:focus { outline: none; border-color: var(--gold); background: rgba(255, 255, 255, .12); }

.calc-out { background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--radius); padding: 22px; }
.calc-big { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.calc-big b { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; color: var(--gold); line-height: 1; font-variant-numeric: tabular-nums; }
.calc-big em { font-style: normal; font-size: .92rem; font-weight: 700; color: #c9bdb8; }
.calc-rows { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid rgba(255, 255, 255, .12); display: grid; gap: 11px; }
.calc-rows li { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; color: #c9bdb8; }
.calc-rows li strong { color: #fff; font-variant-numeric: tabular-nums; text-align: right; }
.calc-verdict {
  margin-top: 18px; padding: 14px 16px; border-radius: 11px; background: rgba(176, 183, 112, .16);
  border: 1px solid rgba(176, 183, 112, .35); font-size: .93rem; font-weight: 600; color: #f0ead4;
}
.calc-note { font-size: .78rem; color: #9c8f8a; margin-top: 16px; }

/* ---------- Planos ---------------------------------------------------- */
.tabs { display: inline-flex; padding: 5px; background: #efe8e4; border-radius: 999px; margin: 0 auto 12px; gap: 4px; }
.tab {
  border: none; background: none; font: inherit; font-weight: 700; font-size: .95rem;
  padding: 11px 24px; border-radius: 999px; cursor: pointer; color: var(--ink-2);
  transition: background-color .18s ease, color .18s ease;
}
.tab[aria-selected="true"] { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.tab:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

.cycle { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 26px 0 30px; }
.cycle button {
  border: 1.5px solid var(--line-strong); background: var(--surface); font: inherit; font-weight: 700;
  font-size: .88rem; padding: 9px 17px; border-radius: 999px; cursor: pointer; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
}
.cycle button[aria-pressed="true"] { border-color: var(--ink); background: var(--ink); color: #fff; }
.cycle button:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.cycle .save { font-size: .72rem; font-weight: 800; padding: 2px 7px; border-radius: 999px; background: var(--sage-soft); color: var(--sage-dark); }
.cycle button[aria-pressed="true"] .save { background: var(--gold); color: var(--ink); }

.panel[hidden] { display: none; }
.plan-wrap { display: grid; gap: 22px; align-items: start; }
@media (min-width: 900px) { .plan-wrap { grid-template-columns: 1.02fr 1fr; } }

.plan {
  background: var(--surface); border: 2px solid var(--brand); border-radius: var(--radius-lg);
  padding: clamp(26px, 3.4vw, 36px); box-shadow: var(--shadow); position: relative;
}
.plan-badge {
  position: absolute; top: -13px; left: clamp(26px, 3.4vw, 36px);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 13px; border-radius: 999px;
}
.plan h3 { font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 800; margin-bottom: 12px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.plan-price .cur { font-size: 1.2rem; font-weight: 700; color: var(--ink-2); }
.plan-price .amt { font-size: clamp(2.9rem, 8vw, 4rem); font-weight: 800; letter-spacing: -.045em; line-height: .95; font-variant-numeric: tabular-nums; }
.plan-price .per { font-size: .95rem; font-weight: 700; color: var(--ink-3); }
.plan-sub { font-size: .92rem; color: var(--ink-2); margin-top: 12px; min-height: 3em; }
.plan-sub strong { color: var(--ink); }
.plan-unit {
  margin-top: 16px; padding: 13px 15px; border-radius: 11px; background: var(--sage-soft);
  border: 1px solid #dbe6cf; font-size: .92rem; font-weight: 700; color: var(--sage-dark);
  display: flex; align-items: center; gap: 9px;
}
.plan-unit b { color: var(--ink); font-size: 1.05rem; }
.plan .btn { margin-top: 22px; }
.plan-micro { font-size: .8rem; color: var(--ink-3); margin-top: 14px; text-align: center; }

.pro-count { margin-top: 20px; }
.pro-count > span { display: block; font-size: .86rem; font-weight: 700; color: var(--ink-2); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  border: 1.5px solid var(--line-strong); background: var(--surface); font: inherit; font-weight: 700;
  font-size: .92rem; padding: 10px 16px; border-radius: 11px; cursor: pointer; color: var(--ink-2);
  min-width: 56px;
}
.chips button[aria-pressed="true"] { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-dark); }
.chips button:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }

.included { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3.2vw, 34px); }
.included h3 { font-size: 1.06rem; margin-bottom: 4px; }
.included > p { font-size: .9rem; color: var(--ink-3); margin-bottom: 18px; }
.inc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
@media (min-width: 560px) { .inc-list { grid-template-columns: 1fr 1fr; } }
.inc-list li { position: relative; padding-left: 27px; font-size: .93rem; color: var(--ink-2); line-height: 1.45; }
.inc-list li::before {
  content: ""; position: absolute; left: 2px; top: .28em; width: 16px; height: 16px; border-radius: 50%;
  background: var(--sage-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2355703f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
}
.inc-list li.hi { font-weight: 700; color: var(--ink); }
.inc-foot { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--ink-3); }

/* ---------- Depoimentos ---------------------------------------------- */
.quotes { display: grid; gap: 20px; margin-top: 40px; }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote-mark { font-size: 2.6rem; line-height: .6; color: var(--gold); font-weight: 800; margin-bottom: 10px; }
.quote p { font-size: .96rem; color: var(--ink-2); flex: 1; }
.quote p strong { color: var(--ink); font-weight: 700; }
.quote-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.quote-who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex: none; }
.quote-who > span { display: block; }
.quote-who b { display: block; font-size: .93rem; color: var(--ink); }
.quote-who span span { display: block; font-size: .82rem; color: var(--ink-3); font-weight: 500; }

/* ---------- Autoridade ------------------------------------------------ */
.founder { display: grid; gap: clamp(28px, 4vw, 54px); align-items: center; }
@media (min-width: 900px) { .founder { grid-template-columns: .82fr 1.18fr; } }
.founder-photo { position: relative; }
.founder-photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--brand-soft); }
.founder blockquote { margin: 0 0 18px; font-size: clamp(1.15rem, 2.4vw, 1.45rem); font-weight: 700; letter-spacing: -.02em; line-height: 1.35; }
.founder-name { font-size: .92rem; color: #c9bdb8; }
.founder-name b { color: #fff; display: block; font-size: 1rem; }

.magnet {
  margin-top: 30px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius); padding: 22px 24px; display: grid; gap: 16px; align-items: center;
}
@media (min-width: 680px) { .magnet { grid-template-columns: 1fr auto; } }
.magnet b { display: block; color: #fff; font-size: 1.02rem; margin-bottom: 4px; }
.magnet p { font-size: .9rem; color: #c9bdb8; margin: 0; }

/* ---------- FAQ ------------------------------------------------------- */
.faq { max-width: 800px; margin: 40px auto 0; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; padding: 19px 52px 19px 22px; font-weight: 700; font-size: 1rem;
  position: relative; list-style: none; letter-spacing: -.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 11px; height: 11px;
  border-right: 2.4px solid var(--brand); border-bottom: 2.4px solid var(--brand);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:focus-visible { outline: 3px solid var(--brand); outline-offset: -3px; }
.faq-body { padding: 0 22px 21px; font-size: .95rem; color: var(--ink-2); }
.faq-body p:not(:last-child) { margin-bottom: .8em; }

/* ---------- CTA final + formulário ----------------------------------- */
.final { display: grid; gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (min-width: 900px) { .final { grid-template-columns: 1fr 1fr; } }
.contact-list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 13px; align-items: flex-start; font-size: .95rem; color: #d9cfca; }
.contact-list svg { flex: none; color: var(--gold); margin-top: 3px; }
.contact-list a { color: #fff; font-weight: 700; font-size: .95rem; }
.contact-list > li > span { display: block; }
.contact-list span span { display: block; font-size: .8rem; color: #9c8f8a; font-weight: 500; margin-top: 2px; }

.form-card {
  background: var(--surface); border-radius: var(--radius-lg); padding: clamp(24px, 3.4vw, 34px);
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.form-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.form-card > p { font-size: .9rem; color: var(--ink-3); margin-bottom: 20px; }
.form-row { margin-bottom: 15px; }
.form-row label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 6px; color: var(--ink-2); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 11px;
  font: inherit; font-size: .96rem; background: var(--bg); color: var(--ink);
}
.form-row textarea { min-height: 96px; resize: vertical; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none; border-color: var(--brand); background: var(--surface);
  box-shadow: 0 0 0 3px var(--brand-soft);
}
.form-two { display: grid; gap: 15px; }
@media (min-width: 520px) { .form-two { grid-template-columns: 1fr 1fr; } }
.form-privacy { font-size: .78rem; color: var(--ink-3); margin: 14px 0 0; text-align: center; }
.form-ok {
  margin-top: 14px; padding: 14px 16px; border-radius: 11px; background: var(--sage-soft);
  border: 1px solid #dbe6cf; color: var(--sage-dark); font-size: .9rem; font-weight: 600;
}
.form-ok[hidden] { display: none; }

/* ---------- Footer ---------------------------------------------------- */
.site-footer { background: #1b1513; color: #9c8f8a; padding: clamp(40px, 5vw, 64px) 0 28px; font-size: .9rem; }
.foot-grid { display: grid; gap: 30px; }
@media (min-width: 780px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand b { color: #fff; }
.site-footer .brand span span { color: #7c706c; }
.site-footer h4 { color: #fff; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; font-weight: 800; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-footer a { color: #c9bdb8; }
.site-footer a:hover { color: #fff; }
.foot-bottom { margin-top: 34px; padding-top: 22px; border-top: 1px solid #2e2522; font-size: .8rem; display: grid; gap: 8px; }
@media (min-width: 680px) { .foot-bottom { grid-template-columns: 1fr auto; align-items: center; } }
.social { display: flex; gap: 10px; margin-top: 16px; }
.social a {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: #2e2522; color: #c9bdb8;
}
.social a:hover { background: var(--brand); color: #fff; }

/* ---------- Barra fixa mobile ---------------------------------------- */
.mobile-cta {
  position: fixed; inset: auto 0 0; z-index: 70; display: none; gap: 10px;
  padding: 11px var(--gut) calc(11px + env(safe-area-inset-bottom));
  background: rgba(251, 248, 246, .96); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); box-shadow: 0 -6px 24px -12px rgba(36, 28, 26, .3);
}
.mobile-cta .btn { flex: 1; padding: 13px 16px; font-size: .94rem; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 74px; }
}

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 12px 18px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }
