/* =========================================================
   Case sem Aperto — página de vendas
   Base visual: verde-escuro + laranja/coral + off-white
   Fontes: Bricolage Grotesque (títulos), Inter (texto), Fraunces (detalhes)
   ========================================================= */

:root {
  --brand-dark: #0F1F19;
  --brand-dark-2: #173026;
  --brand-mid: #163A2A;
  --brand-primary: #1F6B4A;
  --accent: #FF6A3D;
  --accent-deep: #F2522A;
  --accent-light: #FF8A63;
  --lime: #B9E27C;

  --bg: #FBF9F4;
  --surface: #FFFFFF;
  --surface-alt: #EFEDE5;
  --text: #14211C;
  --text-muted: #5C6862;
  --cream: #F4F1E8;
  --cream-muted: #B7C2BB;
  --line: rgba(20, 33, 28, .08);
  --line-dark: rgba(244, 241, 232, .09);

  --font-display: "Bricolage Grotesque", Figtree, system-ui, sans-serif;
  --font-body: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-serif: Fraunces, Georgia, serif;

  --shadow-card: 0 1px 2px rgba(15, 31, 25, .04), 0 14px 34px -16px rgba(15, 31, 25, .18);
  --shadow-btn: 0 8px 24px -6px rgba(255, 106, 61, .45);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
button { font: inherit; cursor: pointer; }
s { text-decoration-thickness: 1.5px; }

.icon {
  width: 1em; height: 1em; flex: none;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

.skip {
  position: absolute; left: -9999px; top: 10px; z-index: 50;
  padding: 10px 16px; border-radius: 999px;
  background: var(--accent); color: #fff; font-weight: 600; text-decoration: none;
}
.skip:focus { left: 10px; }

/* ---------- Layout ---------- */
.shell { width: 100%; max-width: 1152px; margin: 0 auto; padding: 0 20px; }
.shell-reading { width: 100%; max-width: 768px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 640px) { .shell, .shell-reading { padding: 0 24px; } }
@media (min-width: 1024px) { .shell { padding: 0 32px; } }

.section { position: relative; padding: 80px 0; }
@media (min-width: 640px) { .section { padding: 96px 0; } }
@media (min-width: 1024px) { .section { padding: 112px 0; } }

.bg-alt { background: rgba(239, 237, 229, .5); }
.bg-dark { background: var(--brand-dark); color: var(--cream); }
.center { text-align: center; }

/* textura sutil nas seções escuras */
.grain { isolation: isolate; overflow: hidden; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .035; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Cabeçalho de seção ---------- */
.section-head {
  display: flex; flex-direction: column; align-items: center;
  max-width: 768px; margin: 0 auto 48px; text-align: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(31, 107, 74, .18);
  background: rgba(255, 255, 255, .6);
  color: var(--brand-primary);
  font: 600 11px/1.4 var(--font-body);
  letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow--dark {
  border-color: rgba(244, 241, 232, .1);
  background: rgba(244, 241, 232, .06);
  color: var(--cream);
}

.h2 {
  margin-top: 20px;
  max-width: 20ch;
  font-size: 30px; line-height: 1.12; font-weight: 700; letter-spacing: -.03em;
  text-wrap: balance;
}
.shell-reading > .h2:first-child { margin-top: 0; margin-inline: auto; }
@media (min-width: 640px) { .h2 { font-size: 40px; } }
@media (min-width: 1024px) { .h2 { font-size: 44px; } }

.divider {
  display: block; width: 64px; height: 3px; margin: 24px auto 0; border-radius: 3px;
  background: linear-gradient(90deg, rgba(31, 107, 74, 0), #1F6B4A 30%, #FF6A3D 75%, rgba(255, 106, 61, 0));
}
.bg-dark .divider { background: linear-gradient(90deg, rgba(185, 226, 124, 0), #B9E27C 30%, #FF6A3D 75%, rgba(255, 106, 61, 0)); }

.lead {
  margin: 24px auto 0; max-width: 60ch;
  font-size: 17px; line-height: 1.7; color: var(--text-muted);
}
@media (min-width: 640px) { .lead { font-size: 18px; } }
.bg-dark .lead { color: var(--cream-muted); }

.hl { color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.lead--oferta { max-width: 36ch; margin-top: 20px; font-size: 19px; font-weight: 500; color: var(--cream); }
.note { margin-top: 32px; color: var(--text-muted); font-size: 16px; }

/* ---------- Botões ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border: 0; border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: #fff; text-decoration: none; text-align: center;
  font: 600 17px/1.35 var(--font-body); letter-spacing: -.01em;
  box-shadow: var(--shadow-btn);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.04); box-shadow: 0 14px 30px -8px rgba(255, 106, 61, .6); }
.btn:active { transform: translateY(0); }
.btn .icon { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .icon { transform: translateX(3px); }
.btn--block { width: 100%; }
@media (max-width: 639px) { .btn--lg { width: 100%; } }

.btn--outline {
  background: transparent; box-shadow: none;
  border: 1.5px solid rgba(244, 241, 232, .28); color: var(--cream);
}
.btn--outline:hover { border-color: rgba(244, 241, 232, .6); box-shadow: none; filter: none; }

.cta-row { display: flex; justify-content: center; margin-top: 40px; }
@media (max-width: 639px) { .cta-row .btn { width: 100%; } }

/* =========================================================
   1. TOPO
   ========================================================= */
.hero { position: relative; isolation: isolate; overflow: hidden; background: var(--brand-dark); color: var(--cream); }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 85% at 50% 0%, #1F6B4A 0%, #163A2A 42%, #0F1F19 78%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: 28px; padding-bottom: 56px;
}
@media (min-width: 640px) { .hero__inner { padding-top: 36px; padding-bottom: 72px; } }

.hero__logo {
  width: 64px; height: 64px; border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(244, 241, 232, .12), 0 10px 24px -8px rgba(0, 0, 0, .55);
}
@media (min-width: 640px) { .hero__logo { width: 72px; height: 72px; } }
.hero .eyebrow { margin-top: 18px; }

.hero__title {
  margin-top: 36px; max-width: 17ch;
  font-size: 36px; line-height: 1.05; font-weight: 800; letter-spacing: -.035em;
  color: var(--cream); text-wrap: balance;
}
@media (min-width: 640px) { .hero__title { font-size: 54px; } }
@media (min-width: 1024px) { .hero__title { font-size: 64px; } }

.hero__sub {
  margin-top: 22px; max-width: 52ch;
  font-size: 16px; line-height: 1.65; color: var(--cream-muted);
}
@media (min-width: 640px) { .hero__sub { font-size: 18px; } }

.hero .btn { margin-top: 32px; }

.hero__price { margin-top: 14px; font-size: 14px; color: var(--cream-muted); }
.hero__price s { opacity: .75; }
.hero__price strong { color: var(--cream); font-weight: 700; }

.trust {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px;
  margin-top: 22px; font-size: 14px; color: var(--cream-muted);
}
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust .icon { width: 16px; height: 16px; color: var(--lime); }

.hero__strip { position: relative; z-index: 2; border-top: 1px solid rgba(244, 241, 232, .06); background: rgba(23, 48, 38, .7); }
.strip {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding-top: 18px; padding-bottom: 18px;
  font-size: 14px; color: var(--cream-muted);
}
@media (min-width: 768px) {
  .strip { flex-direction: row; justify-content: center; gap: 0; }
  .strip li + li::before { content: "•"; margin: 0 18px; color: var(--accent); }
}

/* ---------- Colagem de fotos ---------- */
.collage {
  position: relative; width: 100%; max-width: 480px;
  aspect-ratio: 1 / .92; margin-top: 34px;
}
.collage__glow {
  position: absolute; inset: -12% -8%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(185, 226, 124, .2) 0%, rgba(255, 106, 61, .14) 45%, rgba(255, 106, 61, 0) 72%);
  filter: blur(8px);
}

.polaroid {
  position: absolute; z-index: 3;
  padding: 5px; border-radius: 6px;
  background: #FBF8F1;
  box-shadow: 0 22px 40px -14px rgba(0, 0, 0, .65), 0 2px 6px rgba(0, 0, 0, .25);
}
.polaroid img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; background: #D9D3C4; }

.polaroid--main { left: 21%; top: 7%; width: 58%; height: 82%; padding: 6px; z-index: 2; transform: rotate(-1.5deg); }
.polaroid--tl { left: 0; top: 3%; width: 30%; height: 35%; transform: rotate(-7deg); }
.polaroid--tl img { object-position: center 20%; }
.polaroid--bl { left: 2%; top: 50%; width: 28%; height: 38%; transform: rotate(5deg); }
.polaroid--tr { right: 0; top: 33%; width: 28%; height: 29%; transform: rotate(6deg); }
.polaroid--br { right: 3%; top: 64%; width: 30%; height: 30%; transform: rotate(-4deg); }

.bubble {
  position: absolute; right: -1%; top: -3%; z-index: 4;
  width: 43%; padding: 12px 14px;
  border-radius: 18px;
  background: #D8552E; color: #FFF4EA;
  font: 600 14px/1.2 var(--font-serif); letter-spacing: -.01em;
  box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .6);
  transform: rotate(3deg);
}
.bubble::after {
  content: ""; position: absolute; left: 24px; bottom: -11px;
  border-style: solid; border-width: 12px 12px 0 2px;
  border-color: #D8552E transparent transparent transparent;
}
@media (min-width: 640px) { .bubble { font-size: 18px; padding: 14px 18px; border-radius: 22px; } }

.bubble__spark {
  position: absolute; left: -18px; top: -16px; width: 26px; height: 26px;
  fill: none; stroke: var(--accent-light); stroke-width: 2.6; stroke-linecap: round;
  transform: rotate(-30deg);
}

.sprig { position: absolute; z-index: 1; width: 34px; fill: var(--lime); color: var(--lime); opacity: .4; }
.sprig--left { left: -4%; top: 40%; transform: rotate(-24deg); }
.sprig--right { right: -3%; bottom: 0; transform: rotate(28deg) scaleX(-1); width: 28px; }

/* =========================================================
   2. DOR
   ========================================================= */
.questions {
  display: grid; gap: 12px;
  max-width: 880px; margin: 40px auto;
}
@media (min-width: 640px) { .questions { grid-template-columns: 1fr 1fr; gap: 14px; } }

.question {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  font-size: 16px; font-weight: 500; line-height: 1.4; text-align: left;
}
.question__mark {
  flex: none; display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255, 106, 61, .12); color: var(--accent-deep);
  font: 800 17px/1 var(--font-display);
}

.punch {
  margin: 32px auto 0; max-width: 24ch;
  font: 700 23px/1.28 var(--font-display); letter-spacing: -.02em; color: var(--text);
  text-wrap: balance;
}
@media (min-width: 640px) { .punch { font-size: 28px; } }
.punch .hl { color: var(--accent-deep); }

/* =========================================================
   3. GASTOS QUE APARECEM AOS POUCOS
   ========================================================= */
.split { display: grid; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .split { grid-template-columns: 1.05fr .95fr; gap: 72px; } }

.split__text .h2 { max-width: 17ch; }
.split__text p { margin-top: 18px; font-size: 17px; color: var(--text-muted); }
.split__text p.strong { color: var(--text); font-weight: 600; }
.h2.left { text-align: left; }
.divider.left { margin-left: 0; }
@media (max-width: 1023px) {
  .split__text { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .split__text .h2.left { text-align: center; }
  .split__text .divider.left { margin-left: auto; }
}

.receipt {
  position: relative; width: 100%; max-width: 400px; margin: 0 auto;
  padding: 26px 22px 28px;
  border-radius: 16px 16px 0 0;
  background: #FFFDF8;
  font-variant-numeric: tabular-nums;
  filter: drop-shadow(0 18px 26px rgba(15, 31, 25, .14));
  transform: rotate(1.2deg);
}
.receipt::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 10px;
  background: radial-gradient(circle at 50% 100%, transparent 6px, #FFFDF8 6.5px) 0 0 / 16px 10px repeat-x;
}
.receipt__head {
  padding-bottom: 14px; border-bottom: 1px dashed rgba(20, 33, 28, .22);
  text-align: center; color: var(--text-muted);
  font: 700 12px/1.4 var(--font-body); letter-spacing: .16em; text-transform: uppercase;
}
.receipt__row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-bottom: 1px dashed rgba(20, 33, 28, .1);
  font-size: 15px; line-height: 1.35;
}
.receipt__row span:first-child { color: var(--text-muted); }
.receipt__row span:last-child { font-weight: 600; color: var(--accent-deep); white-space: nowrap; }
.receipt__row--base span:first-child,
.receipt__row--base span:last-child { color: var(--text); font-weight: 700; }
.receipt__total {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  margin-top: 8px; padding-top: 14px; border-top: 2px solid var(--text);
  font-weight: 600;
}
.receipt__total strong { font: 800 26px/1 var(--font-display); letter-spacing: -.02em; }
.receipt__stamp {
  display: table; margin: 18px auto 0;
  padding: 4px 10px; border: 2px solid var(--accent-deep); border-radius: 6px;
  color: var(--accent-deep); background: rgba(255, 253, 248, .85);
  font: 700 11px/1.3 var(--font-body); letter-spacing: .1em; text-transform: uppercase;
  transform: rotate(-9deg);
}

/* =========================================================
   4. O JEITO CASE SEM APERTO
   ========================================================= */
.compare { display: grid; gap: 16px; max-width: 980px; margin: 0 auto; }
@media (min-width: 768px) { .compare { grid-template-columns: 1fr 1fr; gap: 20px; } }

.compare__card {
  padding: 28px 24px; border-radius: 24px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .compare__card { padding: 32px 30px; } }
.compare__card--care { border-color: rgba(255, 106, 61, .3); }

.compare__icon {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand-primary); color: #fff;
  box-shadow: 0 10px 20px -8px rgba(31, 107, 74, .6);
}
.compare__icon .icon { width: 22px; height: 22px; stroke-width: 2.4; }
.compare__card--care .compare__icon { background: var(--accent); box-shadow: 0 10px 20px -8px rgba(255, 106, 61, .6); }

.compare h3 { margin-top: 18px; font-size: 21px; line-height: 1.2; }
.compare ul { display: grid; gap: 12px; margin-top: 18px; }
.compare li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; color: var(--text-muted); }
.compare li .icon { margin-top: 4px; width: 16px; height: 16px; color: var(--brand-primary); stroke-width: 2.4; }
.compare__card--care li .icon { color: var(--accent-deep); }
.compare li strong { color: var(--text); font-weight: 600; }

/* =========================================================
   O GUIA
   ========================================================= */
.guia { display: grid; gap: 26px; align-items: center; }
@media (min-width: 900px) { .guia { grid-template-columns: .72fr 1.28fr; gap: 48px; } }
.guia__img {
  width: 100%; max-width: 230px; margin: 0 auto; border-radius: 14px;
  box-shadow: 0 20px 40px -22px rgba(15, 31, 25, .5);
}
@media (min-width: 900px) { .guia__img { max-width: 300px; } }
.guia__lead { margin-top: 18px; font-size: 17px; line-height: 1.65; color: var(--text-muted); }
.guia__lista { display: grid; gap: 10px; margin-top: 18px; }
.guia__lista li { display: flex; align-items: flex-start; gap: 10px; font-size: 16px; line-height: 1.5; }
.guia__lista .icon { margin-top: 4px; width: 16px; height: 16px; stroke-width: 2.5; color: var(--brand-primary); }
.guia__nota { margin-top: 18px; font-size: 15px; color: var(--text-muted); font-style: italic; }

/* =========================================================
   5. DEPOIMENTOS
   ========================================================= */
#depoimentos { background: var(--brand-dark-2); }

.draft-note {
  position: relative; z-index: 2;
  max-width: 620px; margin: 0 auto 32px; padding: 10px 16px;
  border: 1.5px dashed #F5C04A; border-radius: 12px;
  background: rgba(245, 192, 74, .1); color: #F7D98A;
  font-size: 13px; line-height: 1.5; text-align: center;
}

.proofs {
  display: flex; gap: 14px; align-items: flex-start;
  margin: 0 -20px; padding: 4px 20px 12px;
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
}
.proofs::-webkit-scrollbar { display: none; }
.proof {
  flex: 0 0 80%; max-width: 330px; scroll-snap-align: center;
  padding: 10px; border-radius: 22px;
  background: rgba(244, 241, 232, .05); border: 1px solid rgba(244, 241, 232, .12);
}
.proof img { width: 100%; height: auto; border-radius: 14px; }

/* Depoimento em formato de conversa (texto, não print) */
.chat { padding: 12px; border-radius: 14px; background: #E9E1D8; color: #111; }
.chat__head { display: flex; align-items: center; gap: 9px; padding-bottom: 10px; border-bottom: 1px solid rgba(0, 0, 0, .08); }
.chat__avatar {
  display: grid; place-items: center; flex: none; width: 36px; height: 36px; border-radius: 50%;
  background: #C6D4CB; color: #33564A; font: 700 13px/1 var(--font-body);
}
.chat__name { font: 600 13.5px/1.3 var(--font-body); color: #111; }
.chat__sub { font-size: 11.5px; color: #6B6B6B; }
.chat__msgs { display: grid; gap: 8px; }
.chat__bubble {
  position: relative; max-width: 94%; padding: 8px 10px 20px; border-radius: 12px;
  background: #fff; font-size: 13.5px; line-height: 1.45; color: #111;
  box-shadow: 0 1px 1px rgba(0, 0, 0, .12);
}
.chat__time { position: absolute; right: 9px; bottom: 5px; font-size: 10.5px; color: #8C8C8C; }
.chat--cortado { padding-bottom: 0; }
.chat__barra { display: flex; align-items: flex-start; gap: 8px; height: 24px; margin-top: 14px; overflow: hidden; }
.chat__campo { flex: 1; height: 38px; border-radius: 19px; background: #fff; box-shadow: 0 1px 1px rgba(0, 0, 0, .12); }
.chat__enviar {
  display: grid; place-items: center; flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: #25D366; color: #fff;
}
.chat__enviar svg { width: 17px; height: 17px; }

.swipe-hint {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin-top: 14px; font-size: 13px; color: var(--cream-muted);
}
.swipe-hint .icon { width: 14px; height: 14px; }

@media (min-width: 768px) {
  .proofs { display: block; columns: 3; column-gap: 18px; margin: 0; padding: 0; overflow: visible; }
  .proof { display: block; max-width: none; margin-bottom: 18px; break-inside: avoid; }
  .swipe-hint { display: none; }
}

/* =========================================================
   6. ACORDEÕES (conteúdo e FAQ)
   ========================================================= */
.acc { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }

.acc__item {
  border-radius: 22px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  transition: border-color .2s ease;
}
.acc__item[open] { border-color: rgba(255, 106, 61, .32); }

.acc__item summary {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; cursor: pointer; list-style: none;
}
.acc__item summary::-webkit-details-marker { display: none; }
@media (min-width: 640px) { .acc__item summary { padding: 22px 26px; } }

.acc__num {
  min-width: 22px; color: var(--accent);
  font: 600 13px/1 var(--font-body); letter-spacing: .06em; font-variant-numeric: tabular-nums;
}
.acc__title { flex: 1; font: 600 18px/1.3 var(--font-display); letter-spacing: -.01em; }

.acc__toggle {
  flex: none; display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-alt); color: var(--text-muted);
  transition: transform .25s ease, background .2s ease, color .2s ease;
}
.acc__toggle .icon { width: 18px; height: 18px; }
.acc__item[open] .acc__toggle { background: var(--accent); color: #fff; transform: rotate(45deg); }

.acc__body {
  margin: 0 20px; padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  color: var(--text-muted);
}
@media (min-width: 640px) { .acc__body { margin: 0 26px; } }
.acc__body ul { display: grid; gap: 10px; }
.acc__body li { position: relative; padding-left: 20px; }
.acc__body li::before {
  content: ""; position: absolute; left: 2px; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.acc__item[open] .acc__body { animation: acc-in .35s ease; }
@keyframes acc-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* =========================================================
   7. FERRAMENTAS
   ========================================================= */
.tool-grid { position: relative; z-index: 2; display: grid; gap: 20px; }
.tool-grid > *, .tools > * { min-width: 0; }
@media (min-width: 1024px) { .tool-grid { grid-template-columns: 1.2fr 1fr; align-items: start; gap: 24px; } }

.calc {
  padding: 24px 20px; border-radius: 28px;
  background: var(--bg); color: var(--text);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .7);
}
@media (min-width: 640px) { .calc { padding: 32px; } }

.calc__top { display: flex; align-items: center; gap: 12px; }
.calc__badge {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: var(--brand-primary); color: #fff;
}
.calc__badge .icon { width: 22px; height: 22px; }
.calc__name { font: 700 18px/1.2 var(--font-display); }
.calc__hint { font-size: 13px; color: var(--text-muted); }

.field { margin-top: 22px; }
.field__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.field label { font-size: 15px; font-weight: 600; }
.field output { font: 800 22px/1 var(--font-display); color: var(--brand-primary); font-variant-numeric: tabular-nums; }

.range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px; margin: 16px 0 4px; border-radius: 999px; outline: none;
  background: linear-gradient(90deg, var(--accent) var(--p, 50%), #E4E1D6 var(--p, 50%));
  cursor: pointer;
}
.range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}
.range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
  box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}
.range:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }

.calc__kpis { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.kpi { padding: 14px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); }
.kpi span { display: block; font-size: 12px; line-height: 1.35; color: var(--text-muted); }
.kpi strong { display: block; margin: 4px 0 2px; font: 800 22px/1.1 var(--font-display); font-variant-numeric: tabular-nums; }
.kpi--accent strong { color: var(--accent-deep); }

.bars { display: grid; gap: 12px; margin-top: 24px; }
.bar__label { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; line-height: 1.3; }
.bar__label em { font-style: normal; color: var(--text-muted); font-size: 12.5px; margin-left: 4px; }
.bar__label span:last-child { font-weight: 600; font-variant-numeric: tabular-nums; white-space: nowrap; }
.bar__track { height: 8px; margin-top: 6px; border-radius: 999px; background: #E9E6DC; overflow: hidden; }
.bar__fill {
  width: 0; height: 100%; border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-primary), #3E8E68);
  transition: width .8s cubic-bezier(.2, .7, .2, 1);
}
.bar--hi .bar__fill { background: linear-gradient(90deg, var(--accent), var(--accent-deep)); }
.calc.is-visible .bar__fill, html:not(.js) .bar__fill { width: var(--w); }

.calc__foot { margin-top: 18px; font-size: 12.5px; line-height: 1.5; color: var(--text-muted); }

.tools { display: grid; gap: 20px; }
.tool {
  padding: 22px; border-radius: 24px;
  background: rgba(23, 48, 38, .75); border: 1px solid var(--line-dark);
}
@media (min-width: 640px) { .tool { padding: 26px; } }
.tool__head { display: flex; align-items: center; gap: 12px; }
.tool__icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: rgba(185, 226, 124, .12); color: var(--lime);
}
.tool__icon .icon { width: 21px; height: 21px; }
.tool h3 { font-size: 19px; color: var(--cream); }
.tool > p { margin-top: 10px; font-size: 15px; color: var(--cream-muted); }
.tool__caption { margin-top: 12px !important; font-size: 13.5px !important; color: var(--lime) !important; font-weight: 500; }

.mini-wrap { margin-top: 16px; overflow-x: auto; border-radius: 12px; }
.mini-table {
  width: 100%; border-collapse: collapse;
  background: var(--bg); color: var(--text);
  font-size: 12.5px; line-height: 1.3; font-variant-numeric: tabular-nums;
}
.mini-table th, .mini-table td { padding: 8px 10px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.mini-table th {
  background: var(--surface-alt); color: var(--text-muted);
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
}
.mini-table .num { text-align: right; }
.mini-table tr.total td { border-bottom: 0; font-weight: 700; background: rgba(31, 107, 74, .06); }
.mini-table .ok { color: var(--brand-primary); font-weight: 600; }
.mini-table .no { color: var(--accent-deep); font-weight: 600; }
.mini-table--compare th:not(:first-child), .mini-table--compare td:not(:first-child) { text-align: center; }
.mini-table--compare th { text-transform: none; letter-spacing: 0; font-size: 11.5px; }
@media (max-width: 639px) { .mini-table th, .mini-table td { padding: 8px 7px; } }
.mini-table--compare td:first-child { color: var(--text-muted); }
.mini-table .best { background: rgba(185, 226, 124, .22); }
.mini-table th.best { color: var(--brand-primary); }

/* =========================================================
   8. É PARA VOCÊ?
   ========================================================= */
.subhead-accent { margin-top: 18px; max-width: 40ch; color: var(--accent-deep); font-size: 17px; font-weight: 600; }

.checks { display: grid; gap: 12px; max-width: 880px; margin: 0 auto; }
@media (min-width: 768px) { .checks { grid-template-columns: 1fr 1fr; gap: 14px; } }
.check {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 20px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card);
  font-size: 16px; line-height: 1.55;
}
.check__icon {
  flex: none; display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255, 106, 61, .12); color: var(--accent-deep);
}
.check__icon .icon { width: 16px; height: 16px; stroke-width: 2.6; }

/* =========================================================
   9. BÔNUS + CAPAS
   ========================================================= */
.bonus-list { display: grid; gap: 16px; max-width: 980px; margin: 0 auto; }
@media (min-width: 900px) {
  .bonus-list { grid-template-columns: 1fr 1fr; gap: 20px; }
  .bonus-list > .bonus:last-child:nth-child(odd) { grid-column: 1 / -1; width: calc(50% - 10px); justify-self: center; }
}

.bonus {
  display: grid; grid-template-columns: 84px 1fr; gap: 16px; align-items: start;
  padding: 18px; border-radius: 24px;
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-card);
}
@media (min-width: 640px) { .bonus { grid-template-columns: 116px 1fr; gap: 22px; padding: 24px; } }

.bonus__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.tag-free {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--accent); color: #fff;
  font: 700 11px/1.4 var(--font-body); letter-spacing: .12em; text-transform: uppercase;
}
.tag-free .icon { width: 13px; height: 13px; }
.bonus__was { font-size: 14px; color: var(--text-muted); text-decoration: line-through; }
.bonus h3 { margin-top: 10px; font-size: 19px; line-height: 1.22; }
.bonus p { margin-top: 8px; font-size: 15px; line-height: 1.55; color: var(--text-muted); }

.bonus-sum { margin-top: 36px; text-align: center; font-size: 17px; font-weight: 600; }
.bonus-sum strong { color: var(--accent-deep); }

/* Capas desenhadas em CSS (trocar por mockups oficiais quando existirem) */
.cover {
  position: relative; container-type: inline-size;
  display: flex; flex-direction: column;
  width: 100%; aspect-ratio: 3 / 4; overflow: hidden;
  padding: 12% 10% 11% 15%;
  border-radius: 3px 10px 10px 3px;
  background: linear-gradient(160deg, #236B4B, #173026 70%);
  color: var(--cream);
  box-shadow: 0 16px 26px -14px rgba(15, 31, 25, .6), 0 2px 4px rgba(15, 31, 25, .2);
  transform: rotate(-2deg);
}
.cover::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 8%;
  background: linear-gradient(90deg, rgba(0, 0, 0, .28), rgba(255, 255, 255, .1) 60%, rgba(0, 0, 0, .1));
}
.cover::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, 0) 42%);
}
.cover__brand {
  display: flex; align-items: center; gap: 4cqw;
  font: 700 6cqw/1.2 var(--font-body); letter-spacing: .1em; text-transform: uppercase; opacity: .85;
}
.cover__brand img { width: 13cqw; height: 13cqw; border-radius: 50%; }
.cover__title { margin-top: auto; font: 800 14cqw/1.02 var(--font-display); letter-spacing: -.02em; }
.cover__line { width: 30%; height: 2px; margin: 8% 0 6%; border-radius: 2px; background: var(--accent); flex: none; }
.cover__sub { font-size: 6.5cqw; line-height: 1.3; opacity: .85; }

.cover--cream { background: linear-gradient(160deg, #FBF6EA, #EFE7D6); color: var(--brand-dark-2); }
.cover--coral { background: linear-gradient(160deg, #FF7A4F, #E24E29); color: #FFF6EE; }
.cover--coral .cover__line { background: var(--cream); }
.cover--dark { background: linear-gradient(160deg, #1B3A2D, #0F1F19 70%); }
.cover__swatches { display: flex; gap: 3cqw; margin-top: 10cqw; }
.cover__swatches i { width: 11cqw; height: 11cqw; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1px rgba(15, 31, 25, .12); }
.cover__swatches + .cover__title { margin-top: auto; }
.cover--dark .cover__line { background: var(--lime); }

/* =========================================================
   10. OFERTA
   ========================================================= */
.offer { overflow: hidden; }
.hero__bg--offer { background: radial-gradient(110% 60% at 50% 0%, #1F6B4A 0%, #163A2A 40%, #0F1F19 75%); }
.offer .shell { position: relative; z-index: 2; }
.offer .section-head { margin-bottom: 32px; }

.countdown { display: flex; flex-direction: column; align-items: center; margin: 0 auto 48px; }
.countdown[hidden] { display: none; }
.countdown__label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-light);
  font: 600 12.5px/1.4 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
}
.countdown__label .icon { width: 16px; height: 16px; }
.countdown__boxes { display: flex; align-items: flex-start; gap: 6px; margin-top: 16px; }
@media (min-width: 640px) { .countdown__boxes { gap: 10px; } }
.countdown__unit { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.countdown__num {
  display: grid; place-items: center; min-width: 58px; height: 60px; padding: 0 8px;
  border-radius: 16px; border: 1px solid rgba(255, 106, 61, .35);
  background: rgba(15, 31, 25, .4);
  font: 800 26px/1 var(--font-display); color: var(--cream); font-variant-numeric: tabular-nums;
}
@media (min-width: 640px) { .countdown__num { min-width: 70px; height: 70px; font-size: 30px; } }
.countdown__cap { font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--cream-muted); }
.countdown__sep { font: 800 24px/60px var(--font-display); color: var(--accent); }
.countdown__fim { max-width: 44ch; margin-top: 14px; text-align: center; font-size: 14.5px; line-height: 1.5; color: var(--cream-muted); }
@media (min-width: 640px) { .countdown__sep { line-height: 70px; } }

.plans { display: grid; gap: 24px; max-width: 980px; margin: 0 auto; align-items: center; }
@media (min-width: 900px) { .plans { grid-template-columns: .82fr 1.18fr; gap: 28px; } }

.plan { position: relative; padding: 30px 22px; border-radius: 28px; }
@media (min-width: 640px) { .plan { padding: 36px 32px; } }

.plan--basic { background: rgba(23, 48, 38, .75); border: 1px solid var(--line-dark); color: var(--cream); }
.plan--featured {
  background: var(--surface); color: var(--text);
  border: 1.5px solid rgba(255, 106, 61, .5);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .75), 0 0 0 6px rgba(255, 106, 61, .08);
}
@media (max-width: 899px) { .plan--featured { order: -1; } }

.plan__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(180deg, var(--accent), var(--accent-deep)); color: #fff;
  font: 700 11px/1.4 var(--font-body); letter-spacing: .14em; text-transform: uppercase;
  box-shadow: var(--shadow-btn);
}

.plan__name { text-align: center; font-size: 22px; }
.plan__was { margin-top: 12px; text-align: center; font-size: 15px; color: var(--text-muted); }
.plan--basic .plan__was { color: var(--cream-muted); }
.plan__price {
  margin-top: 4px; text-align: center;
  font: 800 44px/1.05 var(--font-display); letter-spacing: -.035em;
}
@media (min-width: 640px) { .plan--featured .plan__price { font-size: 52px; } }
.plan--basic .plan__price { font-size: 40px; }
.plan__cash { margin-top: 8px; text-align: center; font-weight: 600; color: var(--brand-primary); }
.plan--basic .plan__cash { color: var(--cream-muted); font-weight: 500; }

.plan__list { display: grid; gap: 10px; margin: 24px 0 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.plan--basic .plan__list { border-color: var(--line-dark); }
.plan__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; line-height: 1.45; }
.plan__list .icon { margin-top: 3px; width: 16px; height: 16px; stroke-width: 2.6; color: var(--brand-primary); }
.plan--basic .plan__list .icon { color: var(--lime); }
.plan__list li.off { color: rgba(183, 194, 187, .7); text-decoration: line-through; }
.plan__list li.off .icon { color: var(--accent-light); }
.plan__list strong { font-weight: 700; }
.plan__note { margin-top: 14px; text-align: center; font-size: 13.5px; color: var(--text-muted); }

.kit__img { display: block; width: 100%; height: auto; max-width: 440px; margin: 0 auto 20px; border-radius: 16px; }

.trust--offer { margin-top: 32px; }

.dark-cards { display: grid; gap: 20px; max-width: 980px; margin: 64px auto 0; }
@media (min-width: 900px) { .dark-cards { grid-template-columns: 1.2fr .8fr; align-items: stretch; } }

.dcard {
  padding: 32px 24px; border-radius: 28px;
  background: rgba(23, 48, 38, .75); border: 1px solid var(--line-dark);
}
@media (min-width: 640px) { .dcard { padding: 40px 36px; } }
.dcard h3 { margin-top: 16px; font-size: 26px; color: var(--cream); }
.dcard p { margin-top: 14px; font-size: 16px; color: var(--cream-muted); }

.story__photo {
  width: 140px; height: 140px; margin-bottom: 22px; border-radius: 50%; object-fit: cover;
  border: 4px solid rgba(244, 241, 232, .08);
}
.story__quote { display: block; margin-top: 10px; height: 34px; font: 600 64px/1 var(--font-serif); color: var(--accent); }
.story__sign { color: var(--lime) !important; font: 700 16px/1.3 var(--font-display) !important; margin-top: 20px !important; }

.guarantee { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.seal {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  width: 116px; height: 116px; border-radius: 50%;
  border: 2px solid rgba(185, 226, 124, .45);
  background: radial-gradient(circle, rgba(185, 226, 124, .14), rgba(185, 226, 124, 0) 70%);
  color: var(--lime);
}
.seal .icon { width: 26px; height: 26px; margin-bottom: 4px; }
.seal small { font: 700 10px/1.2 var(--font-body); letter-spacing: .16em; text-transform: uppercase; }
.seal strong { font: 800 20px/1.1 var(--font-display); color: var(--cream); }
.guarantee h3 { max-width: 16ch; text-wrap: balance; }
.guarantee__punch { color: var(--cream) !important; font-weight: 500; }

/* =========================================================
   12. FECHAMENTO + RODAPÉ
   ========================================================= */
.final { background: linear-gradient(180deg, var(--bg), #F3EFE4); }
.final .h2 { max-width: 22ch; margin-inline: auto; }
.final__price {
  margin: 28px auto 32px; max-width: 26ch;
  font: 700 22px/1.3 var(--font-display); letter-spacing: -.015em; color: var(--accent-deep);
}

.footer { padding: 56px 0 40px; background: var(--brand-dark); color: var(--cream-muted); text-align: center; font-size: 14px; }
.footer__logo { width: 72px; height: 72px; margin: 0 auto; border-radius: 50%; }
.footer__name { margin-top: 14px; font: 700 20px/1.2 var(--font-display); color: var(--cream); }
.footer p { max-width: 46ch; margin: 10px auto 0; }
.footer a { color: var(--cream); }
.footer__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px; margin-top: 22px; }
.footer__links a { text-decoration: none; font-weight: 500; }
.footer__links a:hover { text-decoration: underline; }
.footer__legal { font-size: 12px; opacity: .7; margin-top: 22px !important; }

/* =========================================================
   Oferta de desconto (modal)
   ========================================================= */
.modal {
  width: 100%; max-width: min(440px, calc(100% - 32px));
  padding: 0; border: 0; border-radius: 28px;
  background: var(--bg); color: var(--text);
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, .6);
}
.modal::backdrop { background: rgba(15, 31, 25, .72); backdrop-filter: blur(3px); }
.modal[open] { animation: modal-in .3s cubic-bezier(.2, .7, .2, 1); }
@keyframes modal-in { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }

.modal__inner { position: relative; padding: 36px 24px 24px; text-align: center; }
.modal__close {
  position: absolute; top: 12px; right: 12px;
  display: grid; place-items: center; width: 36px; height: 36px; border: 0; border-radius: 50%;
  background: var(--surface-alt); color: var(--text-muted);
}
.modal__close .icon { width: 18px; height: 18px; }
.modal h3 { margin-top: 16px; font-size: 26px; line-height: 1.15; text-wrap: balance; }
.modal__text { margin-top: 12px; color: var(--text-muted); }
.modal__price { margin: 16px 0 22px; font: 800 40px/1 var(--font-display); letter-spacing: -.03em; }
.modal__price s { font-size: 20px; color: var(--text-muted); font-weight: 600; margin-right: 6px; }
.modal__decline { display: inline-block; margin-top: 16px; font-size: 14px; color: var(--text-muted); }

/* =========================================================
   Animação de entrada (só com JS e sem "reduzir movimento")
   ========================================================= */
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js .receipt[data-reveal] { transform: translateY(18px) rotate(1.2deg); }
.js .receipt[data-reveal].is-visible { transform: rotate(1.2deg); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .js .receipt[data-reveal] { opacity: 1; transition: none; }
  .js [data-reveal]:not(.receipt) { transform: none; }
  .js .receipt[data-reveal] { transform: rotate(1.2deg); }
  .bar__fill, .btn, .btn .icon, .acc__toggle { transition: none; }
  .acc__item[open] .acc__body, .modal[open] { animation: none; }
}
