/* ============================================================
   JARDIM DIGITAL — MOBILE FIRST CSS
   Público: Mulheres 60+ | Versão: Mobile First 2.0
   ============================================================ */

/* ── TOKENS ── */
:root {
  --bg:         #faf8f5;
  --bg2:        #f3f0eb;
  --card:       #ffffff;
  --card2:      #f8f5f0;
  --border:     rgba(0,0,0,0.08);
  --border-hi:  rgba(0,0,0,0.13);
  --text:       #1a1a1a;
  --text-sub:   #4a4a4a;
  --muted:      #777777;
  --dim:        #aaaaaa;
  --green:      #16a34a;
  --green-d:    rgba(22,163,74,0.08);
  --gold:       #d97706;
  --red:        #dc2626;
  --shadow:     rgba(0,0,0,0.07);
  --nav-bg:     rgba(250,248,245,0.95);
  --toggle-bg:  #e8e5e0;
}

[data-theme="dark"] {
  --bg:         #080808;
  --bg2:        #0e0e0e;
  --card:       #111111;
  --card2:      #161616;
  --border:     rgba(255,255,255,0.08);
  --border-hi:  rgba(255,255,255,0.13);
  --text:       #f0f0f0;
  --text-sub:   #cccccc;
  --muted:      #888888;
  --dim:        #555555;
  --green:      #22c55e;
  --green-d:    rgba(34,197,94,0.12);
  --gold:       #f59e0b;
  --red:        #ef4444;
  --shadow:     rgba(0,0,0,0.4);
  --nav-bg:     rgba(8,8,8,0.95);
  --toggle-bg:  #1a1a1a;
}

/* ── RESET ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible {
  outline: 3px solid #16a34a;
  outline-offset: 3px;
  border-radius: 6px;
}

/* ── BASE ── */
html { scroll-behavior: smooth; background-color: #06150c; }

body {
  font-family: 'Geist', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.90;
  font-size: 17px;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
  -webkit-text-size-adjust: 100%;
  letter-spacing: 0.2px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

p { font-size: 17px; line-height: 1.90; margin-bottom: 18px; }
a { text-decoration: none; color: inherit; touch-action: manipulation; }
small, .text-sm { font-size: 13px; }
img { display: block; max-width: 100%; }
button { font-family: inherit; touch-action: manipulation; }

/* ── UTILS ── */
.text-green   { color: var(--green); }
.text-red     { color: var(--red); }
.text-gold    { color: var(--gold); }
.fw-bold      { font-weight: 700; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.mt-4         { margin-top: 2rem; }
.mt-5         { margin-top: 3rem; }
.mb-4         { margin-bottom: 2rem; }
.pt-0         { padding-top: 0 !important; }
.mt-large     { margin-top: 4rem; }
.mx-auto      { margin-left: auto; margin-right: auto; }
.max-w-sm     { max-width: 480px; }
.justify-center { justify-content: center !important; }

/* ── CONTAINERS ── */
.container  { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.narrowed   { max-width: 760px;  margin: 0 auto; }

/* ── TOPBAR ── */
.topbar {
  background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
  text-align: center;
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
}
.topbar-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.topbar-main { color: #000; font-weight: 800; font-size: 13px; line-height: 1.3; }
.topbar-sub  { font-size: 11px; color: rgba(0,0,0,0.85); font-weight: 600; display: none; }
@media (min-width: 640px) { .topbar-sub { display: block; } }

.shimmer {
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmerAnim 3s infinite linear; z-index: 1;
}
@keyframes shimmerAnim { 0% { left: -100%; } 100% { left: 200%; } }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  height: 62px;
  display: flex; align-items: center;
  padding-top: max(0px, env(safe-area-inset-top));
}
.navbar-container {
  width: 100%; max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 20px;
}
.logo { font-size: 16px; font-weight: 700; color: var(--text); white-space: nowrap; }
@media (min-width: 640px) { .logo { font-size: 18px; } }

.nav-actions { display: flex; align-items: center; gap: 10px; }

/* Theme Toggle — SVG inline, sem emoji */
.theme-btn {
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--toggle-bg);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  touch-action: manipulation;
}
.theme-btn:hover { background: var(--border-hi); }
#toggle-icon svg { display: block; }

.btn-nav {
  background: linear-gradient(135deg, var(--green), #059669); color: #fff;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700; font-size: 14px;
  white-space: nowrap;
  touch-action: manipulation;
  min-height: 44px;
  display: inline-flex; align-items: center;
}
.btn-nav:hover { opacity: 0.9; }

/* ── SECTIONS ── */
.section { padding: 64px 20px; }
.section-bg  { background: var(--bg); }
.section-bg2 { background: var(--bg2); }
@media (min-width: 640px) { .section { padding: 88px 24px; } }

/* Gap system */
.section .label-green + h2 { margin-top: 10px; }
.section h2 + .sub-heading  { margin-top: 14px; margin-bottom: 32px; }
.section .divider + *        { margin-top: 32px; }

/* ── TYPOGRAPHY ── */
h1 {
  font-size: clamp(26px, 7.5vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
  color: var(--text);
}
h2 {
  font-size: clamp(24px, 7vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.2;
}
h3 {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.2;
}

@media (min-width: 640px) {
  h1 { font-size: clamp(34px, 7vw, 56px); letter-spacing: -2px; margin-bottom: 24px; }
  h2 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 24px; }
}

.intro-p { font-size: 18px; line-height: 1.9; margin-bottom: 32px; }

/* ── LABELS / DIVIDER ── */
.label-green {
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.divider { width: 40px; height: 4px; background: var(--green); border-radius: 2px; margin: 0 auto 28px; }

/* ── HERO ── */
.section-hero {
  background: var(--bg);
  background-image: radial-gradient(ellipse at 50% 0%, var(--green-d) 0%, transparent 60%);
  padding: 40px 20px 48px;
  text-align: center;
}
@media (min-width: 640px) { .section-hero { padding: 88px 24px 56px; } }

.hero-container { display: flex; flex-direction: column; align-items: center; gap: 0; }

/* Chip autor — no hero, acima do badge */
.chip-autor {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card2);
  border-radius: 999px;
  padding: 8px 16px 8px 8px;
  font-size: 13px; color: var(--text-sub);
  margin-bottom: 12px;
  border: 1px solid var(--border);
}
.avatar-icon {
  font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--green-d); border-radius: 50%;
}
@media (min-width: 640px) {
  .chip-autor { font-size: 15px; padding: 10px 20px 10px 10px; margin-bottom: 20px; }
  .avatar-icon { font-size: 18px; width: 34px; height: 34px; }
}

/* Badge pill */
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card2); border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 16px; color: var(--muted);
  white-space: nowrap;
  max-width: calc(100vw - 48px);
  overflow: hidden; text-overflow: ellipsis;
}
@media (min-width: 640px) {
  .badge-pill { font-size: 14px; padding: 8px 18px; white-space: normal; max-width: none; }
}

.dot-green { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: inline-block; flex-shrink: 0; }
.animated-dot { animation: pulseGreen 2s infinite; }
@keyframes pulseGreen {
  0%   { transform: scale(0.95); box-shadow: 0 0 0 0 var(--green-d); }
  70%  { transform: scale(1);    box-shadow: 0 0 0 6px rgba(34,197,94,0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

h1 .text-green { color: var(--green); }

.hero-subtext {
  font-size: 17px;
  color: var(--text-sub);
  max-width: 560px; margin: 0 auto 24px;
  font-weight: 400; line-height: 1.85;
}
@media (min-width: 640px) { .hero-subtext { font-size: 20px; margin-bottom: 40px; } }

/* ── CTA BUTTON ── */
.btn-cta {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green), #059669);
  color: #ffffff;
  padding: 22px 24px;
  border-radius: 16px;
  font-size: 19px; font-weight: 800;
  text-align: center;
  box-shadow: 0 4px 0 #14532d, 0 8px 24px rgba(22,163,74,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; line-height: 1.3;
  min-height: 64px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
}
.btn-cta:hover   { transform: translateY(-2px); box-shadow: 0 6px 0 #14532d, 0 12px 32px rgba(22,163,74,0.45); }
.btn-cta:active  { transform: translateY(2px);  box-shadow: 0 2px 0 #14532d, 0 4px 16px rgba(22,163,74,0.25); }
[data-theme="dark"] .btn-cta { color: #000; }
.btn-cta small { display: block; font-size: 13px; font-weight: 500; opacity: 0.85; margin-top: 4px; }

@media (min-width: 640px) {
  .btn-cta { max-width: 500px; margin-left: auto; margin-right: auto; font-size: 20px; }
  .btn-large { max-width: 520px; padding: 24px 40px; font-size: 21px; }
}

.pulse-anim { animation: pulseBig 2.5s infinite; }
@keyframes pulseBig {
  0%   { transform: scale(1);    box-shadow: 0 4px 0 #14532d, 0 8px 24px rgba(22,163,74,0.35); }
  50%  { transform: scale(1.02); box-shadow: 0 4px 0 #14532d, 0 8px 24px rgba(22,163,74,0.55); }
  100% { transform: scale(1);    box-shadow: 0 4px 0 #14532d, 0 8px 24px rgba(22,163,74,0.35); }
}

/* ── TRUST ROW ── */
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px 16px; margin-top: 14px;
  font-size: 14px; color: var(--muted); font-weight: 500;
}
@media (min-width: 640px) { .trust-row { gap: 20px; font-size: 15px; margin-top: 20px; } }

/* ── STICKY CTA BUTTON ── */
#btn-sticky {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  padding: 12px 20px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--bg) 80%, transparent);
  pointer-events: none;
}
#btn-sticky.visible { display: block; }
#btn-sticky .btn-sticky-inner {
  pointer-events: all;
  display: block; width: 100%;
  background: linear-gradient(135deg, var(--green), #059669);
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  font-size: 18px; font-weight: 800;
  text-align: center; line-height: 1.3;
  box-shadow: 0 4px 0 #14532d, 0 -4px 24px rgba(0,0,0,0.1);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  text-decoration: none;
}
[data-theme="dark"] #btn-sticky { background: linear-gradient(to top, var(--bg) 80%, transparent); }

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 16px;
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 4px 8px;
  background: var(--bg2); color: var(--text-sub);
  text-align: center;
}
.stats-bar span { font-size: 12px; font-weight: 400; display: flex; flex-direction: column; align-items: center; padding: 10px 12px; }
.stats-bar strong { font-size: 22px; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: 4px; }
.stats-div { display: none; }

@media (min-width: 640px) {
  .stats-bar { gap: 8px 16px; padding: 24px 20px; }
  .stats-bar span { font-size: 13px; }
  .stats-bar strong { font-size: 26px; }
  .stats-div { display: flex; opacity: 0.3; font-size: 20px !important; }
}

/* ── CARDS BASE ── */
.app-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s; line-height: 1.80;
}
.app-card:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.13); transform: translateY(-2px); }
[data-theme="dark"] .app-card { box-shadow: 0 4px 20px var(--shadow); }

/* ── SEÇÃO ERRO / DOR ── */
.steps-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.step-card { padding: 14px 16px; display: flex; align-items: center; gap: 14px; background: var(--card2); border-radius: 12px; }
.step-num { font-weight: 900; color: var(--text-sub); font-size: 20px; flex-shrink: 0; }
.step-card p { font-size: 17px; margin: 0; }

.frustration-block {
  background: rgba(220,38,38,0.05);
  border-left: 3px solid var(--red);
  padding: 20px 18px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
}
[data-theme="dark"] .frustration-block { background: #1a0000; }
.red-title { color: var(--red); font-weight: 800; font-size: 18px; margin-bottom: 8px; }
.sub-red   { color: var(--text-sub); font-size: 15px; margin-bottom: 14px; }
.red-list  { list-style: none; display: flex; flex-direction: column; gap: 0; font-size: 16px; color: var(--text-sub); }
.red-list li { padding: 10px 0; border-bottom: 1px solid rgba(220,38,38,0.08); }
.red-list li:last-child { border-bottom: none; }

.quote-block {
  background: var(--card); border-left: 3px solid var(--green);
  padding: 20px 18px; font-style: italic;
  font-size: 17px; color: var(--text-sub);
  margin-bottom: 32px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

/* Pain cards — mobile: 1 col, ícone esquerda */
.pain-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
@media (min-width: 640px) {
  .pain-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
}
.pain-card {
  background: #fff5f5; border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  padding: 20px 18px; border-radius: 14px;
  display: flex; gap: 14px; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
@media (min-width: 640px) { .pain-card { flex-direction: column; gap: 0; } }
[data-theme="dark"] .pain-card { background: #1a0a0a; }
.pain-icon { font-size: 28px; flex-shrink: 0; display: block; margin-bottom: 0; }
@media (min-width: 640px) { .pain-icon { margin-bottom: 12px; } }
.pain-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.pain-card p  { font-size: 16px; color: var(--text-sub); line-height: 1.80; margin: 0; }

.good-news-box {
  background: rgba(22,163,74,0.06); border-left: 3px solid var(--green);
  padding: 20px 18px; font-size: 17px; font-weight: 500; color: #166534;
  border-radius: 0 12px 12px 0; margin-top: 28px; line-height: 1.85;
}
[data-theme="dark"] .good-news-box { color: var(--green); }

/* ── AUTORIDADE ── */
.author-card {
  max-width: 580px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  padding: 32px 20px; border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}
@media (min-width: 640px) { .author-card { padding: 40px 32px; } }
.author-avatar-img {
  width: 88px; height: 88px;
  border-radius: 50%; object-fit: cover;
  margin: 0 auto 20px; border: 3px solid var(--green);
}
@media (min-width: 640px) { .author-avatar-img { width: 120px; height: 120px; } }
.author-name  { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.author-sub   { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.author-stats {
  display: flex; justify-content: center; gap: 12px;
  color: var(--green); font-weight: 700; font-size: 14px;
  margin-bottom: 20px; background: var(--green-d); padding: 12px; border-radius: 12px;
  flex-wrap: wrap;
}
.author-bio { font-size: 16px; color: var(--text-sub); font-style: italic; line-height: 1.85; }

/* ── VS BLOCK ── */
.vs-block {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 800px; margin: 0 auto 48px;
}
@media (min-width: 768px) { .vs-block { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } }
.vs-col { padding: 28px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; }
.vs-bad  { border-top: 4px solid var(--red); }
.vs-good { border-top: 4px solid var(--green); background: var(--bg2); }
.col-title  { font-size: 17px; font-weight: 800; margin-bottom: 16px; }
.bad-title  { color: var(--red); }
.good-title { color: var(--green); }
.vs-col ul  { list-style: none; display: flex; flex-direction: column; font-size: 16px; color: var(--text-sub); line-height: 1.75; }
.vs-col li  { padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.vs-col li:last-child { border-bottom: none; }

/* ── BENEFÍCIOS 2×3 ── */
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
.b-card {
  background: var(--card); border: 1px solid var(--border);
  border-top: 2px solid var(--green);
  padding: 18px 14px; border-radius: 16px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}
.b-card:hover { transform: translateY(-2px); box-shadow: 0 12px 48px rgba(0,0,0,0.13); }
.b-icon { font-size: 30px; margin-bottom: 10px; }
.b-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.b-card p  { font-size: 14px; line-height: 1.75; color: var(--text-sub); }
@media (min-width: 640px) {
  .b-card { padding: 24px 18px; }
  .b-icon { font-size: 36px; margin-bottom: 12px; }
  .b-card h4 { font-size: 16px; }
  .b-card p  { font-size: 15px; }
}

/* ── PILARES ── */
.pillars-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; max-width: 800px; margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 20px 18px;
}
@media (min-width: 640px) { .pillars-card { padding: 32px 28px; } }
.pillar {
  display: flex; gap: 18px; padding: 18px 0;
  border-bottom: 1px solid var(--border); align-items: flex-start;
}
.pillar:last-child { border-bottom: none; }
.p-num     { font-size: 20px; font-weight: 800; color: var(--green); line-height: 1; flex-shrink: 0; margin-top: 4px; }
.p-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.p-content p  { font-size: 16px; color: var(--text-sub); line-height: 1.85; margin: 0; }

/* ── WORKFLOW ── */
.workflow { max-width: 600px; margin: 0 auto; position: relative; padding-left: 8px; }
.workflow::before {
  content: ''; position: absolute; left: 29px; top: 0; bottom: 0;
  width: 2px; background: rgba(34,197,94,0.2);
}
.work-step {
  position: relative; display: flex; gap: 18px; padding: 18px 0;
  z-index: 2; border-bottom: 1px solid var(--border);
}
.work-step:last-child { border-bottom: none; }
.w-num {
  width: 44px; height: 44px; background: var(--green); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px; flex-shrink: 0;
  box-shadow: 0 0 0 4px var(--bg);
}
.w-content h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.w-content p  { font-size: 16px; color: var(--text-sub); line-height: 1.85; margin: 0; }

/* ── PARA QUEM ── */
.who-grid { display: flex; flex-direction: column; gap: 14px; max-width: 740px; margin: 0 auto; }
@media (min-width: 640px) { .who-grid { display: grid; grid-template-columns: 1fr 1fr; } }
.who-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 20px 18px; border-radius: 12px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.w-icon   { font-size: 28px; flex-shrink: 0; margin-bottom: 8px; }
.who-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.who-card p  { font-size: 15px; color: var(--text-sub); line-height: 1.75; }
.highlight-card { border-color: rgba(34,197,94,0.3); background: var(--green-d); border-width: 2px; }

/* ── MÓDULOS INCLUÍDOS ── */
.included-card {
  max-width: 740px; margin: 0 auto;
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; background: var(--card);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.included-header {
  background: #16a34a; color: #fff;
  padding: 20px 20px; font-weight: 700; font-size: 15px;
  text-align: center;
}
[data-theme="dark"] .included-header { background: #064e3b; }
.module-item {
  display: flex; gap: 14px; padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start; font-size: 16px; line-height: 1.75;
}
.module-item:last-child { border-bottom: none; }
.m-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.m-text { color: var(--text); opacity: 0.9; }
.m-text strong { color: var(--text); opacity: 1; }

.badges-inline {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; font-size: 13px; font-weight: 600; color: var(--green);
}
.badges-inline span { background: var(--green-d); padding: 6px 12px; border-radius: 999px; }

/* ── PROVA SOCIAL ── */
.proof-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-bottom: 32px;
}
.p-stat {
  background: var(--card); border: 1px solid var(--border);
  padding: 16px 18px; border-radius: 12px; font-size: 13px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex; flex-direction: column; align-items: center;
  color: var(--muted); min-width: 100px;
}
.p-stat strong { font-size: 26px; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 4px; }

/* ── VÍDEO / VSL ── */
.video-mockup-wrapper { max-width: 540px; margin: 0 auto 12px; text-align: center; }

.video-player {
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 18px;
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  cursor: pointer; transition: 0.3s;
  margin: 0 auto 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18), 0 0 0 1px rgba(22,163,74,0.2);
}
.video-player iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
/* On desktop, restore 9:16 portrait frame */
@media (min-width: 640px) {
  .video-player {
    width: 300px;
    height: 540px;
    aspect-ratio: unset;
    border-radius: 32px;
    border: 8px solid #1a1a1a;
  }
}
.video-overlay { background: url('akira.jpg') center/cover no-repeat; }
.video-overlay::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 0;
}
.video-player:hover { transform: translateY(-2px); box-shadow: 0 20px 70px rgba(0,0,0,0.25); }
.play-btn {
  width: 68px; height: 68px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: #fff; padding-left: 6px;
  transition: transform 0.2s; margin-bottom: 14px; position: relative; z-index: 2;
}
.video-player:hover .play-btn { transform: scale(1.1); }
.video-texts { z-index: 2; position: relative; text-align: center; padding: 0 16px; }
.v-title { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.v-sub   { font-size: 12px; color: var(--green); text-transform: uppercase; font-weight: 700; }
.v-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.8); padding: 8px;
  font-size: 11px; text-transform: uppercase; color: #ccc; font-weight: 600;
  text-align: center; border-top: 1px solid rgba(255,255,255,0.05);
}
.video-cta-text { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 40px; }
.dot-red { width: 8px; height: 8px; background: var(--red); border-radius: 50%; display: inline-block; }

/* ── WHATSAPP PRINTS ── */
.whatsapp-masonry {
  column-count: 1;
  column-gap: 16px;
  margin-top: 20px;
}
@media (min-width: 640px) { .whatsapp-masonry { column-count: 2; } }
@media (min-width: 768px) { .whatsapp-masonry { column-count: 3; } }

.wa-print {
  width: 100%;
  display: block;
  margin-bottom: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  background: var(--card2);
  break-inside: avoid;
  border: 4px solid var(--card);
  min-height: 150px;
}

/* ── BÔNUS ── */
.bonus-value-tag {
  display: inline-block;
  background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3);
  color: var(--text); padding: 12px 20px;
  border-radius: 999px; font-size: 15px; font-weight: 600; margin-bottom: 32px;
}
.bonus-value-tag span { color: var(--gold); font-weight: 900; }

.bonus-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
@media (min-width: 768px) { .bonus-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.bonus-card {
  background: var(--card); border: 1px solid rgba(245,158,11,0.2);
  padding: 32px 20px 24px; border-radius: 16px; position: relative;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.b-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #000;
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  padding: 4px 16px; border-radius: 999px;
}
.b-icon-top   { font-size: 36px; margin-bottom: 14px; }
.bonus-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.bonus-card p  { font-size: 15px; color: var(--text-sub); margin-bottom: 20px; flex-grow: 1; line-height: 1.8; }
.b-price {
  font-size: 14px; color: var(--muted);
  padding-top: 12px; border-top: 1px solid var(--border); margin-top: 8px;
}
.b-price span:first-child { text-decoration: line-through; }

.bonus-highlight-box {
  background: var(--green-d); border: 1px solid rgba(34,197,94,0.3);
  padding: 18px; border-radius: 12px; color: var(--text);
  font-weight: 600; font-size: 16px; line-height: 1.75;
}

/* ── OFERTA ── */
.offer-card {
  max-width: 560px; margin: 0 auto;
  background: var(--card); border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.10); overflow: hidden;
}
.o-faixa {
  background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
  padding: 12px; text-align: center;
  color: #000; font-size: 13px; font-weight: 800;
  text-transform: uppercase; position: relative; overflow: hidden;
}
@media (min-width: 640px) { .o-faixa { font-size: 15px; } }
.o-content { padding: 28px 20px; }
@media (min-width: 640px) { .o-content { padding: 40px 32px; } }

.price-block { text-align: center; margin-bottom: 28px; }
.price-old  { font-size: 17px; color: var(--muted); text-decoration: line-through; font-weight: 700; margin-bottom: 8px; }
.price-for  { font-size: 15px; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.price-now  { font-size: clamp(64px, 18vw, 96px); font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -4px; margin: 4px 0 8px; }
.price-sub  { font-size: 13px; color: var(--muted); text-transform: uppercase; font-weight: 700; }

.o-list {
  list-style: none; border: 1px solid var(--border);
  padding: 12px 16px; border-radius: 14px; margin-bottom: 24px;
  text-align: left; background: var(--card2);
}
.o-list li {
  font-size: 16px; color: var(--text); margin-bottom: 12px;
  display: flex; gap: 8px; font-weight: 500;
}
.o-list li:last-child { margin-bottom: 0; }

.micro-trust {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px 20px; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--muted);
}
.o-seals {
  border-top: 1px solid var(--border); margin-top: 24px;
  padding: 16px 0; display: flex; flex-direction: column; gap: 14px; text-align: left;
}
.o-seal-item { display: flex; align-items: center; gap: 12px; }
.o-seal-icon { font-size: 26px; }
.o-seal-text h5 { font-size: 14px; font-weight: 700; margin: 0; line-height: 1.2; }
.o-seal-text p  { font-size: 12px; color: var(--muted); margin: 0; line-height: 1; }

.scarcity-badge { font-size: 14px; padding: 12px 18px; border-radius: 999px; }
.pulse-badge-red { animation: pulseRed 2s infinite; }
@keyframes pulseRed {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.2); }
  50%      { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}

/* ── URGÊNCIA COUNTDOWN ── */
.urgency-section { background: #2d0000; padding: 64px 20px; }
@media (min-width: 640px) { .urgency-section { padding: 88px 24px; } }
.urgency-section h2 { color: #fca5a5; font-size: clamp(22px, 6vw, 36px); }
.urgency-section p  { color: #fca5a5; font-size: 17px; margin-bottom: 28px; line-height: 1.85; }

.countdown-wrapper { display: flex; justify-content: center; gap: 12px; margin-bottom: 28px; flex-wrap: wrap; }
.cd-box {
  background: rgba(0,0,0,0.5); border: 1px solid rgba(239,68,68,0.4);
  padding: 18px 16px; border-radius: 12px;
  display: flex; flex-direction: column; align-items: center;
  min-width: 76px;
}
.cd-box span:first-child {
  font-size: 38px; font-weight: 900;
  font-variant-numeric: tabular-nums; line-height: 1;
  margin-bottom: 4px; color: #fff;
}
.cd-label { font-size: 11px; text-transform: uppercase; font-weight: 700; color: #fca5a5; letter-spacing: 2px; }

/* ── GARANTIA ── */
.guarantee-card {
  background: var(--card); border: 2px solid var(--gold);
  border-radius: 20px; padding: 40px 20px;
  max-width: 900px; margin: 0 auto; position: relative;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; text-align: center;
}
@media (min-width: 640px) { .guarantee-card { padding: 56px 40px; } }

.garantia-img {
  width: 180px;
  height: auto;
  flex-shrink: 0;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(217,119,6,0.25));
}
@media (min-width: 640px) { .garantia-img { width: 200px; } }

.medal-wrap { position: relative; width: 160px; height: 160px; flex-shrink: 0; }
.css-medal {
  width: 160px; height: 160px; border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border: 4px solid #fbbf24;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(217,119,6,0.3);
}
.medal-inner {
  width: 106px; height: 106px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1;
}
.medal-inner strong { font-size: 40px; font-weight: 900; color: #000; display: block; }
.medal-inner span   { font-size: 11px; font-weight: 800; color: #000; letter-spacing: 3px; }
.medal-ribbon {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  background: #000; color: #fff;
  font-size: 12px; font-weight: 900; padding: 8px 22px; border-radius: 999px;
  white-space: nowrap; box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.g-content h2 { font-size: clamp(24px, 5vw, 38px); margin-bottom: 12px; }
.g-content h2 span { color: var(--green); display: block; }
.g-text { font-size: 17px; color: var(--text-sub); line-height: 1.90; margin-bottom: 20px; }
.g-footer {
  width: 100%; border-top: 1px solid var(--border);
  padding-top: 24px; display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.g-footer-brand { font-size: 16px; font-weight: 700; color: var(--text); margin: 0; }
.g-footer-tag   { font-size: 12px; font-weight: 800; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; text-align: left; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--card); }
.faq-question {
  padding: 20px 18px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text);
  min-height: 60px; width: 100%;
  -webkit-tap-highlight-color: rgba(22,163,74,0.1);
  touch-action: manipulation;
}
.faq-icon {
  font-size: 22px; font-weight: 400; color: var(--green);
  transition: transform 0.3s; flex-shrink: 0; min-width: 22px; text-align: center;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-answer p { padding: 0 18px 20px; font-size: 16px; color: var(--text-sub); line-height: 1.85; margin: 0; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-item.active .faq-icon { color: var(--red); }

/* ── FOOTER ── */
.footer { background: #06150c; border-top: 1px solid rgba(255,255,255,0.05); margin-top: auto; }
.footer-bottom { padding: 40px 0 max(40px, env(safe-area-inset-bottom)); background: #06150c; border-top: none; }
.f-bottom-flex { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-bottom: 20px; }
@media (min-width: 640px) { .f-bottom-flex { flex-direction: row; justify-content: space-between; } }
.f-logo   { font-size: 17px; font-weight: 700; color: #fff; }
.f-links  { display: flex; gap: 20px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7); }
.f-links a { padding: 12px 0; }
.f-links a:hover { color: #fff; }
.f-disclaimer { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.f-disclaimer p { margin-bottom: 4px; }

/* ── ACESSIBILIDADE / SCROLL ANIMATIONS DISABLE MOBILE ── */
@media (max-width: 639px) {
  .reveal, .line-reveal, .card-cascade {
    opacity: 1 !important; transform: none !important;
    transition: none !important; clip-path: none !important;
  }
}

/* ── MISC ── */
.sub-heading { font-size: 17px; color: var(--text-sub); line-height: 1.75; }
.surprise-card {
  background: var(--card2); border: 2px dashed var(--gold);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  font-size: 16px; color: var(--text-sub); line-height: 1.8;
}
.s-badge {
  display: inline-block; background: var(--gold); color: #000;
  font-size: 12px; font-weight: 900; text-transform: uppercase;
  padding: 4px 16px; border-radius: 999px; margin-bottom: 16px;
}
.s-footer-badge {
  margin-top: 16px; font-size: 13px; color: var(--muted); font-weight: 500;
}
.btn-3d { box-shadow: 0 4px 0 #14532d, 0 8px 24px rgba(22,163,74,0.35); }

/* ── VIDEO END SCREEN ── */
#video-end-screen {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: #000;
  border-radius: inherit;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeInEnd 0.5s ease forwards;
}
#video-end-screen.active {
  display: flex;
}
@keyframes fadeInEnd {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.ves-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}
.ves-emoji {
  font-size: 40px;
  line-height: 1;
  margin: 0;
  animation: bouncePetal 1.5s ease infinite;
}
@keyframes bouncePetal {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.ves-msg {
  font-size: clamp(15px, 4.5vw, 20px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 0;
  text-transform: uppercase;
}
.ves-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, var(--green), #059669);
  color: #fff !important;
  padding: 16px 18px;
  border-radius: 14px;
  font-size: clamp(14px, 4vw, 17px);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  line-height: 1.3;
  box-shadow: 0 4px 0 #14532d, 0 8px 24px rgba(22,163,74,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.ves-btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 0 #14532d, 0 14px 32px rgba(22,163,74,0.5); }
.ves-btn:active { transform: translateY(2px);  box-shadow: 0 2px 0 #14532d; }
.ves-btn small  { display: block; font-size: 11px; font-weight: 500; opacity: 0.85; margin-top: 4px; }