/* ==========================================================================
   ALINHADA & PRODUTIVA — Design tokens & base
   Paleta: minimalista — branco + bege acinzentado claro + 1 verde vivo
   (reservado para destaque: botões, checks, números de passo)
   Tipografia: SEM serifa em lugar nenhum (DM Sans only)
   ========================================================================== */

:root {
  /* Neutros */
  --white: #ffffff;
  --beige: #f3f1ec;
  --beige-deep: #eae6dd;
  --border: #e2ddd0;
  --ink: #29281f;
  --ink-soft: #6f6c62;

  /* Verde vivo — só para destaque (botões, checks, números de passo) */
  --green: #6b7452;
  --green-dark: #57603e;
  --green-tint: #f0f1ee;
  --green-tint-border: #dadcd4;

  /* Terracota — só para marcar o lado errado/negativo em comparações */
  --warn: #b1543a;
  --warn-tint: #f7eeeb;
  --warn-tint-border: #ecd4ce;

  /* Papéis semânticos */
  --bg-light: var(--white);
  --bg-light-alt: var(--beige);
  --text-on-light: var(--ink);
  --text-on-light-soft: var(--ink-soft);

  /* Tipografia — sans-serif only nesta página */
  --font: "DM Sans", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Espaçamento (base 8px) */
  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-7: 6rem;
  --sp-8: 8rem;

  /* Raios */
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-pill: 999px;

  /* Sombras neutras e suaves */
  --shadow-sm: 0 2px 10px rgba(41, 40, 31, .06);
  --shadow-md: 0 12px 32px rgba(41, 40, 31, .09);
  --shadow-lg: 0 24px 60px rgba(41, 40, 31, .14);

  --container: 1180px;
}

*, *::before, *::after { 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(--font);
  background: var(--bg-light);
  color: var(--text-on-light);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.01em;
  color: var(--ink);
}

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

section { padding: var(--sp-7) 0; }
@media (max-width: 640px) { section { padding: var(--sp-5) 0; } }

.section-light { background: var(--bg-light); color: var(--text-on-light); }
.section-light-alt { background: var(--bg-light-alt); color: var(--text-on-light); }
/* "dark" mantido como nome de classe no HTML, mas agora é só uma variação clara para ritmo de seção */
.section-dark { background: var(--bg-light-alt); color: var(--text-on-light); }
.section-deep { background: var(--beige-deep); color: var(--text-on-light); }

.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: var(--sp-2);
}

.h2 {
  font-size: clamp(1.75rem, 3.6vw, 2.75rem);
  max-width: 46rem;
  color: var(--ink);
}
.h2.center { margin-left: auto; margin-right: auto; text-align: center; }
.lede {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-on-light-soft);
  max-width: 42rem;
  margin-top: var(--sp-2);
}

.text-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 1.1rem 2.2rem;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  min-height: 44px;
  touch-action: manipulation;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--green-dark); box-shadow: var(--shadow-lg); }

/* botão secundário — mesma família de cor (verde), em versão outline */
.btn-siena {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green);
}
.btn-siena:hover { background: var(--green); color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  padding-top: var(--sp-6);
  display: grid;
  gap: var(--sp-5);
  align-items: center;
  grid-template-areas:
    "heading"
    "visual"
    "points";
}
@media (min-width: 900px) {
  .hero {
    gap: var(--sp-2) var(--sp-6);
    grid-template-columns: 1.1fr .9fr;
    grid-template-areas:
      "heading visual"
      "points  visual";
  }
}
.hero-heading { grid-area: heading; text-align: center; }
.hero-visual { grid-area: visual; }
.hero-secondary { grid-area: points; text-align: center; }
@media (min-width: 900px) {
  .hero-heading, .hero-secondary { text-align: left; }
}

.hero h1 {
  font-size: clamp(1.9rem, 4.6vw, 3.1rem);
}
.hl { color: var(--green-dark); }
.lede .hl { font-weight: 700; }
.hero .lede { max-width: 34rem; margin-left: auto; margin-right: auto; }
@media (min-width: 900px) { .hero .lede { margin-left: 0; } }

.hero-points {
  margin: 0;
  display: grid;
  gap: var(--sp-2);
  text-align: left;
}
.hero-point {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-3);
  box-shadow: var(--shadow-sm);
  font-weight: 500;
}
.hero-point .ico {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.hero-point .ico svg { width: 15px; height: 15px; }

.hero-cta { margin-top: var(--sp-4); }
.price-tag {
  margin-top: var(--sp-2);
  font-weight: 700;
  color: var(--ink);
}
.price-tag b { color: var(--green-dark); }

/* ---------- Device mockups (tratamento premium — frame de iPhone realista) ---------- */
.device-phone {
  position: relative;
  width: min(280px, 72vw);
  aspect-ratio: 9 / 19.5;
  margin: 0 auto;
  background: linear-gradient(160deg, #7a7b7e 0%, #45464a 16%, #232326 42%, #0a0a0b 75%, #000 100%);
  border-radius: 19% / 8.6%;
  padding: 3.2%;
  box-shadow:
    0 34px 60px -20px rgba(20, 19, 14, .4),
    0 16px 32px -12px rgba(47, 168, 79, .14),
    inset 0 1.5px 1px rgba(255, 255, 255, .5),
    inset 0 -1.5px 2px rgba(0, 0, 0, .6),
    inset 0 0 0 1px rgba(255, 255, 255, .06);
}
/* ilha dinâmica */
.device-phone::before {
  content: "";
  position: absolute;
  top: 3.4%; left: 50%; transform: translateX(-50%);
  width: 28%; height: 3.2%;
  min-height: 9px;
  background: #000;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  z-index: 3;
}
/* botões laterais (volume + power) */
.device-phone::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -3px; right: -3px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(90deg, #0a0a0b, #2b2c2f),
    linear-gradient(90deg, #0a0a0b, #2b2c2f),
    linear-gradient(90deg, #0a0a0b, #2b2c2f),
    linear-gradient(270deg, #0a0a0b, #2b2c2f);
  background-position:
    left 15%,
    left 24%,
    left 32%,
    right 22%;
  background-size:
    3px 4%,
    3px 6.5%,
    3px 6.5%,
    3px 10%;
}
.device-screen {
  width: 100%; height: 100%;
  border-radius: 16% / 7%;
  overflow: hidden;
  background: linear-gradient(160deg, var(--beige), var(--beige-deep));
  position: relative;
  z-index: 1;
}
.device-screen img { width: 100%; height: 100%; object-fit: contain; object-position: top; }
.device-screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.28) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 74%, rgba(255,255,255,.1) 100%);
  pointer-events: none;
  z-index: 2;
}

.device-laptop {
  width: min(560px, 92vw);
  margin: 0 auto;
}
.device-laptop .screen {
  background: linear-gradient(155deg, #45443d 0%, #1e1d18 45%, #050502 100%);
  border-radius: 16px 16px 0 0;
  padding: 10px;
  box-shadow:
    0 34px 60px -20px rgba(20, 19, 14, .45),
    0 16px 32px -12px rgba(47, 168, 79, .16),
    inset 0 1px 1px rgba(255, 255, 255, .16);
}
.device-laptop .screen-inner {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(160deg, var(--beige), var(--beige-deep));
  position: relative;
}
.device-laptop .screen-inner img { width: 100%; height: 100%; object-fit: contain; object-position: top; display: block; }
.device-laptop .screen-inner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 26%, rgba(255,255,255,0) 74%, rgba(255,255,255,.08) 100%);
  pointer-events: none;
}
.device-laptop .base {
  background: linear-gradient(180deg, #333228, #131209);
}
.device-laptop .base::after { background: #050502; }
.deliverable-cutout { width: min(560px, 92vw); margin: 0 auto; display: block; filter: drop-shadow(0 26px 36px rgba(20, 19, 14, .25)); }
.deliverable-cutout-phone { width: min(260px, 70vw); }

/* ---------- Composição hero (dobra 1) — mockups reais ---------- */
.hero-mockups {
  position: relative;
  width: min(560px, 100%);
  margin: 0 auto;
  padding: 6% 4%;
}
.hero-mockups::before {
  content: "";
  position: absolute;
  inset: 10% 6%;
  background: var(--beige);
  border-radius: 48% 52% 54% 46% / 50% 46% 54% 50%;
  z-index: 0;
}
.hero-mockups::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side, rgba(47, 168, 79, .2), rgba(47, 168, 79, 0) 68%),
    radial-gradient(closest-side at 78% 82%, rgba(138, 90, 62, .14), rgba(138, 90, 62, 0) 70%);
  filter: blur(28px);
  z-index: 0;
}
.hero-composite {
  position: relative;
  width: 100%;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 26px 36px rgba(20, 19, 14, .25));
}

.float-badge {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border-radius: var(--r-pill);
  padding: .6rem 1rem;
  box-shadow: var(--shadow-lg);
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
}
.float-badge .ico {
  flex: none;
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.float-badge .ico svg { width: 12px; height: 12px; }
.badge-time { top: 4%; left: -4%; }
.badge-check { bottom: 2%; left: 4%; }
@media (max-width: 500px) {
  .float-badge { font-size: .68rem; padding: .5rem .8rem; }
  .badge-time { top: 0; left: -2%; }
  .badge-check { bottom: -2%; left: 0; }
}

/* ---------- Colagem de 4 prints (dobra 10) ---------- */
.collage-4 {
  max-width: 420px;
  margin: 0 auto var(--sp-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.collage-tile {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.collage-tile img { width: 100%; height: 100%; object-fit: cover; }
.device-laptop .base {
  height: 14px;
  background: var(--ink);
  border-radius: 0 0 10px 10px;
  position: relative;
  opacity: .85;
}
.device-laptop .base::after {
  content: "";
  position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 18%; height: 100%;
  background: var(--ink);
  border-radius: 0 0 6px 6px;
}

.placeholder-visual {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .6rem;
  color: var(--ink-soft);
  text-align: center;
  padding: 1rem;
}
.placeholder-visual svg { width: 34px; height: 34px; opacity: .5; }
.placeholder-visual span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: .65;
  line-height: 1.35;
}

/* ---------- Prova social / WhatsApp card ---------- */
.wa-card {
  max-width: 640px;
  margin: var(--sp-4) auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-md);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  text-align: left;
}
.wa-avatar {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 999px;
  background: var(--beige-deep);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-soft);
}
.wa-avatar svg { width: 26px; height: 26px; }
.wa-bubble {
  background: var(--beige);
  border-radius: 18px;
  border-top-left-radius: 4px;
  padding: var(--sp-3);
  flex: 1;
}
.wa-play {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: .5rem;
}
.wa-play .dot {
  width: 34px; height: 34px; border-radius: 999px;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.wa-play .dot svg { width: 15px; height: 15px; }
.wave { display: flex; align-items: center; gap: 3px; height: 20px; flex: 1; }
.wave i { width: 3px; background: var(--ink-soft); border-radius: 2px; opacity: .4; }
.wa-quote { font-size: 1.02rem; font-style: italic; color: var(--ink); margin: 0; }
.wa-meta { margin-top: .6rem; font-size: .8rem; font-weight: 600; color: var(--ink-soft); }

.testimonial-card {
  max-width: 420px;
  margin: var(--sp-4) auto 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.testimonial-card img { width: 100%; display: block; }
.testimonial-card.is-cutout {
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.wa-screenshot {
  max-width: 340px;
  margin: 0 auto;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.wa-screenshot img { width: 100%; }

/* ---------- Prova visual — carrossel de telas ---------- */
.screens-grid {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.screen-item { text-align: center; }
.screen-item .device-phone { width: min(220px, 60vw); }
.screen-item p {
  margin-top: var(--sp-2);
  font-size: .92rem;
  font-weight: 500;
  color: var(--text-on-light-soft);
  max-width: 240px;
  margin-left: auto; margin-right: auto;
}
.step-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--green); color: var(--white);
  font-weight: 800; font-size: .85rem;
  margin-bottom: var(--sp-2);
}

/* ---------- Fluxo acompanhável (dobra 3) ---------- */
.flow-path {
  position: relative;
  max-width: 560px;
  margin: var(--sp-6) auto 0;
}
.flow-path::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 34px;
  width: 2px;
  background: var(--border);
}
.flow-step {
  position: relative;
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  text-align: left;
  padding-bottom: var(--sp-5);
}
.flow-step:last-child { padding-bottom: 0; }
.flow-num {
  position: relative;
  z-index: 1;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--green);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
}
.flow-num-final {
  background: var(--green);
  color: var(--white);
}
.flow-num-final svg { width: 24px; height: 24px; }
.flow-body { padding-top: .6rem; }
.flow-body h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: .3rem;
}
.flow-body p {
  margin: 0;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-on-light-soft);
  max-width: 34rem;
}

/* ---------- Blocos / bloquinhos (pilares, listas) ---------- */
.block-grid {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 640px) { .block-grid { grid-template-columns: 1fr; } }
.block-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.block-ico {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: var(--green-tint);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.block-ico svg { width: 20px; height: 20px; }
.block-card p { margin: 0; font-weight: 500; color: var(--text-on-light-soft); padding-top: .3rem; }
.block-card p strong { color: var(--ink); font-weight: 800; }
.block-closing {
  margin-top: var(--sp-5);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  max-width: 42rem;
  margin-left: auto; margin-right: auto;
  color: var(--ink);
}

/* ---------- Passo a passo ---------- */
.steps {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step-card {
  background: var(--beige);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  position: relative;
  border: 1px solid var(--border);
}
.step-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: var(--sp-2);
  font-variant-numeric: tabular-nums;
}
.step-card p { margin: 0; font-weight: 500; color: var(--text-on-light-soft); }

.flow-line {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .5rem .75rem;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
}
.flow-line span { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill); padding: .5rem 1.1rem; font-size: .9rem; }
.flow-line .arrow { color: var(--green); font-weight: 800; }

.note-soft {
  margin-top: var(--sp-3);
  text-align: center;
  font-style: italic;
  color: var(--text-on-light-soft);
  max-width: 34rem;
  margin-left: auto; margin-right: auto;
}

/* ---------- Pra quem é ---------- */
.qualify-grid {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 800px) { .qualify-grid { grid-template-columns: 1.2fr .8fr; } }
.qualify-card {
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}
.qualify-yes { background: var(--green-tint); border: 1px solid var(--green-tint-border); color: var(--ink); }
.qualify-no { background: var(--white); border: 1px solid var(--border); color: var(--text-on-light); }
.qualify-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); color: var(--ink); }
.qualify-list { display: grid; gap: .9rem; }
.qualify-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }
.qualify-list svg { flex: none; width: 20px; height: 20px; margin-top: .1rem; }
.qualify-yes svg { color: var(--green-dark); }
.qualify-no svg { color: var(--ink-soft); }

/* ---------- Tabela comparativa ---------- */
.compare {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-2);
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}
@media (max-width: 700px) { .compare-row { grid-template-columns: 1fr; } }
.compare-cell {
  border-radius: var(--r-md);
  padding: var(--sp-3);
  font-weight: 500;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
}
.compare-cell svg { flex: none; width: 20px; height: 20px; margin-top: .15rem; }
.compare-no { background: var(--warn-tint); border: 1px solid var(--warn-tint-border); color: var(--ink); }
.compare-no svg { color: var(--warn); }
.compare-yes { background: var(--green-tint); border: 1px solid var(--green-tint-border); color: var(--ink); }
.compare-yes svg { color: var(--green-dark); }
.compare-head { display: none; }
@media (min-width: 700px) {
  .compare-head { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-bottom: -.5rem; }
  .compare-head span { font-weight: 800; text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; padding: 0 var(--sp-3); }
  .compare-head span:first-child { color: var(--warn); }
  .compare-head span:last-child { color: var(--green-dark); }
}

/* ---------- Diagnóstico prints (dobra 7B) ---------- */
.diag-grid {
  margin-top: var(--sp-5);
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.diag-card { text-align: center; }
.diag-quote {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.diag-card .wa-screenshot { max-width: 280px; }
.diag-closing {
  margin-top: var(--sp-5);
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 40rem;
  margin-left: auto; margin-right: auto;
  color: var(--ink);
}

/* ---------- Reforço de benefício ---------- */
.benefit-list { margin-top: var(--sp-4); display: grid; gap: var(--sp-2); }
.benefit-item {
  display: flex; gap: .9rem; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-3);
}
.benefit-item .ico {
  flex: none; width: 34px; height: 34px; border-radius: 999px;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.benefit-item .ico svg { width: 17px; height: 17px; }
.benefit-item p { margin: 0; font-weight: 500; color: var(--text-on-light-soft); }
.benefit-highlight {
  margin-top: var(--sp-4);
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  max-width: 40rem;
  margin-left: auto; margin-right: auto;
}

/* ---------- Entregáveis — 1 bloco grande por item ---------- */
.deliverable {
  display: grid;
  gap: var(--sp-4);
  align-items: center;
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
}
.deliverable:last-child { border-bottom: none; }
@media (min-width: 860px) {
  .deliverable { grid-template-columns: 1fr 1fr; }
  .deliverable.reverse .deliverable-visual { order: 2; }
  .deliverable.reverse .deliverable-copy { order: 1; }
}
.deliverable-copy .step-chip { background: var(--green); }
.deliverable-copy h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin-bottom: var(--sp-2); }
.deliverable-copy p { font-size: 1.05rem; color: var(--text-on-light-soft); font-weight: 500; max-width: 30rem; }

/* ---------- Preço ---------- */
.price-wrap {
  max-width: 640px;
  margin: var(--sp-5) auto 0;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.price-includes { display: grid; gap: .7rem; margin-bottom: var(--sp-4); text-align: left; }
.price-includes li { display: flex; gap: .6rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.price-includes svg { flex: none; width: 20px; height: 20px; color: var(--green-dark); margin-top: .15rem; }
.price-big { font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; color: var(--ink); line-height: 1; }
.price-sub { font-weight: 700; color: var(--ink-soft); margin-top: .3rem; }
.price-fine { font-size: .85rem; color: var(--text-on-light-soft); margin-top: var(--sp-2); }
.price-fine em { font-style: italic; }
.price-wrap .btn { margin-top: var(--sp-4); }
.guarantee-badge {
  margin-top: var(--sp-3);
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 700; font-size: .85rem; color: var(--ink);
  background: var(--beige); border-radius: var(--r-pill);
  padding: .5rem 1rem; border: 1px solid var(--border);
}
.guarantee-badge svg { width: 16px; height: 16px; color: var(--green-dark); }
.guarantee-text {
  max-width: 30rem; margin: var(--sp-2) auto 0;
  font-size: .85rem; color: var(--text-on-light-soft);
}

/* ---------- Sobre a criadora ---------- */
.about {
  display: grid;
  gap: var(--sp-5);
  align-items: center;
}
@media (min-width: 860px) { .about { grid-template-columns: .8fr 1.2fr; } }
.about-photo {
  width: min(260px, 60vw);
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.about-copy .role { color: var(--green-dark); font-weight: 700; margin-bottom: var(--sp-3); }
.about-copy p { font-weight: 500; color: var(--text-on-light-soft); }
.credentials { margin-top: var(--sp-3); display: flex; flex-wrap: wrap; gap: .6rem; }
.credentials li {
  font-size: .82rem; font-weight: 700;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-pill); padding: .5rem 1rem;
  color: var(--ink);
}

/* ---------- FAQ ---------- */
.faq-list { margin-top: var(--sp-5); display: grid; gap: var(--sp-2); max-width: 48rem; margin-left: auto; margin-right: auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-1) var(--sp-3);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--sp-2) 0;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-2);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex: none; width: 26px; height: 26px; border-radius: 999px;
  background: var(--green-tint); color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item p { margin: 0 0 var(--sp-2); color: var(--text-on-light-soft); font-weight: 500; }

/* ---------- Suporte / rodapé ---------- */
.support-box {
  max-width: 480px; margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
footer {
  background: var(--ink);
  color: var(--beige);
  text-align: center;
  padding: var(--sp-4) 0;
  font-size: .85rem;
}
footer .foot-links { margin-top: .5rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
footer a { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: .7rem var(--sp-3);
  padding-bottom: max(.7rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  box-shadow: 0 -8px 24px rgba(41,40,31,.10);
  transform: translateY(120%);
  transition: transform .25s ease;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { padding: .9rem 1.6rem; font-size: .82rem; }
@media (min-width: 860px) { .sticky-cta { display: none; } }
