/* ============================================================
   COM VOCÊ, MAMÃE — Landing Page
   Paleta: sage + terracota + cream
   Tipografia: Nunito (400/600/700/800)
   ============================================================ */

:root {
  --primary: #7C9E7C;
  --primary-light: #B8D4B8;
  --primary-pale: #EEF5EE;
  --terracotta: #C4714A;
  --terracotta-light: #EDD5C5;
  --terracotta-pale: #FBEFE7;
  --cream: #FDFAF5;
  --warm: #F5F0E8;
  --deep: #2C3E2D;
  --text: #3A4A3B;
  --muted: #7A8C7B;
  --gold: #C9A84C;
  --white: #FFFFFF;
  --border: #E5E0D5;
  --border-light: #F0EBE0;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.10);
  --radius: 16px;
  --radius-lg: 24px;
  --header-h: 64px;
}

/* ===== ANIMAÇÕES ===== */
.reveal-pre {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-in { opacity: 1; transform: translateY(0); }

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.phone-mockup { animation: float-soft 5s ease-in-out infinite; }

@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 4px 16px rgba(196, 113, 74, 0.18); }
  50% { box-shadow: 0 6px 24px rgba(196, 113, 74, 0.32); }
}
.hero .btn-primary { animation: pulse-soft 2.6s ease-in-out infinite; }
.hero .btn-primary:hover { animation: none; }

.header { transition: box-shadow .3s ease, background .3s ease; }
.header-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  background: rgba(253, 250, 245, 0.98);
}

.feature, .depoimento, .bonus-card, .plano, .problema-card, .dif-item {
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow .35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color .25s ease;
}
.bonus-tag { transition: transform .3s ease; }
.bonus-card:hover .bonus-tag { transform: scale(1.08); }
.btn:active { transform: translateY(1px) scale(0.98); transition: none; }

@keyframes badge-shine {
  0%, 100% { background: var(--terracotta); }
  50% { background: #B05F3D; }
}
.plano-badge { animation: badge-shine 3s ease-in-out infinite; }

/* Pulse sticky CTA (chama atenção sem irritar) */
@keyframes sticky-attention {
  0%, 90%, 100% { transform: scale(1); }
  93% { transform: scale(1.04); }
  96% { transform: scale(0.98); }
}
.sticky-btn { animation: sticky-attention 9s ease-in-out infinite; }
.sticky-btn:hover { animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal-pre, .reveal-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .phone-mockup, .hero .btn-primary, .plano-badge, .sticky-btn {
    animation: none !important;
  }
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Nunito', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  color: var(--deep);
  font-weight: 800;
  line-height: 1.2;
}
p { margin: 0 0 1em; }
a { color: var(--terracotta); text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
em { font-style: normal; color: var(--terracotta); }
img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }
.section { padding: 96px 0; }
.section + .section { border-top: 1px solid var(--border-light); }

/* ===== Tipografia escala ===== */
h1 { font-size: clamp(28px, 5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 42px); letter-spacing: -0.015em; margin-bottom: .6em; }
h3 { font-size: 20px; }
h4 { font-size: 17px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.lead {
  font-size: 19px;
  line-height: 1.5;
  color: var(--text);
  max-width: 720px;
}
.badge {
  display: inline-flex;
  align-items: center;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  text-decoration: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: #B05F3D;
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta-pale); }

.btn-ghost {
  background: transparent;
  color: var(--terracotta);
  padding: 10px 18px;
}
.btn-ghost:hover { background: var(--terracotta-pale); }

.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-xl { padding: 20px 40px; font-size: 18px; }
.btn-block { display: flex; width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  min-height: var(--header-h);
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--deep);
  font-size: 16px;
  font-weight: 600;
}
.logo strong { font-weight: 800; }
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
}
.nav a:hover { color: var(--terracotta); }

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--deep);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 62, 45, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 199;
}
.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(86vw, 340px);
  background: var(--cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 24px 22px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,0.12);
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  background: transparent;
  border: 0;
  color: var(--deep);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
}
.drawer-close:hover { background: var(--terracotta-pale); color: var(--terracotta); }
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 8px 0 24px;
}
.drawer-nav a {
  padding: 14px 12px;
  color: var(--deep);
  font-weight: 700;
  font-size: 17px;
  border-radius: 10px;
  border-bottom: 1px solid var(--border-light);
}
.drawer-nav a:hover { background: var(--terracotta-pale); color: var(--terracotta); }
.drawer-cta {
  margin-top: auto;
  padding: 16px 24px;
  font-size: 16px;
}
.drawer-tiny {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm) 100%);
  padding: 64px 0 100px;
  overflow: hidden;
  position: relative;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.hero-blob-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--terracotta-light) 0%, transparent 70%);
  top: -80px;
  right: -120px;
}
.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  bottom: -100px;
  left: -80px;
  opacity: 0.35;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Phone Showcase é só pra mobile — esconde no desktop (mockup vive no hero) */
.phone-showcase { display: none; }

/* Elementos decorativos flutuantes — só mobile */
.hero-deco { display: none; }

.hero h1 {
  font-size: clamp(28px, 5.2vw, 58px);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  color: var(--deep);
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 560px;
}
.hero-sub strong { color: var(--terracotta); }

.hero-detail {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-microcopy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 24px;
  font-weight: 600;
}
.hero-microcopy svg { flex-shrink: 0; }

/* Badge live */
.badge-live {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--deep);
  padding: 6px 14px 6px 12px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge-live strong { color: var(--terracotta); font-weight: 800; }
.badge-dot {
  width: 8px;
  height: 8px;
  background: #2BB673;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.badge-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(43, 182, 115, 0.4);
  animation: pulse-ring 1.8s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Trust bar compacto (chips horizontais) */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  width: 100%;
  max-width: 560px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 100px;
  font-size: 13px;
  color: var(--deep);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-chip strong { font-weight: 800; }
.trust-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.avatars { display: flex; }
.avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  background: var(--primary-light);
}
.avatar:first-child { margin-left: 0; }
.avatar.a1 { background: linear-gradient(135deg, #C4714A, #EDD5C5); }
.avatar.a2 { background: linear-gradient(135deg, #7C9E7C, #B8D4B8); }
.avatar.a3 { background: linear-gradient(135deg, #C9A84C, #EDD5C5); }
.avatar.a4 { background: linear-gradient(135deg, #2C3E2D, #7C9E7C); }

/* Feature chips abaixo do hero (mobile, substituem anotações) */
.hero-feature-chips {
  display: none;
  gap: 8px;
  padding: 16px 20px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  margin-top: 4px;
}
.hero-feature-chips::-webkit-scrollbar { display: none; }
.feat-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--deep);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}
.feat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feat-dot.d1 { background: var(--terracotta); }
.feat-dot.d2 { background: var(--primary); }
.feat-dot.d3 { background: var(--gold); }
.feat-dot.d4 { background: #CE93D8; }

/* ===== Phone Showcase (sessão própria abaixo do hero) ===== */
.phone-showcase {
  background: linear-gradient(180deg, var(--warm) 0%, var(--cream) 100%);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.showcase-head { max-width: 720px; margin: 0 auto 48px; }
.showcase-head h2 { margin-bottom: 12px; }
.showcase-sub {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}
.showcase-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  min-height: 600px;
}
.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 32px auto 24px;
  max-width: 640px;
  padding: 0 16px;
}
.phone-showcase .section-cta-row { margin-top: 12px; }

/* ===== Phone Mockup (mantém ===== */
.hero-visual { position: relative; }

.phone-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(196, 113, 74, 0.25) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.05); }
}

.phone-mockup {
  width: 320px;
  height: 600px;
  margin: 0 auto;
  background: linear-gradient(160deg, #2C3E2D 0%, #1F2C20 100%);
  border-radius: 44px;
  padding: 14px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 30px 60px rgba(44,62,45,0.35),
    0 12px 24px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset;
}

.phone-annotation {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  box-shadow: var(--shadow-md);
  max-width: 180px;
  z-index: 3;
  line-height: 1.3;
}
.phone-annotation strong {
  color: var(--terracotta);
  font-weight: 800;
  font-size: 12px;
  display: block;
  margin-bottom: 2px;
}
.phone-annotation p { margin: 0; font-size: 11px; color: var(--muted); }
.phone-annotation-1 {
  top: 32%;
  left: -40px;
  animation: float-soft 5s ease-in-out infinite;
  animation-delay: 0.2s;
}
.phone-annotation-2 {
  bottom: 18%;
  right: -32px;
  animation: float-soft 5s ease-in-out infinite;
  animation-delay: 0.6s;
}
.annotation-arrow {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: rotate(45deg);
  top: 50%;
  margin-top: -7px;
  right: -7px;
}
.annotation-arrow-bottom {
  right: auto;
  left: -7px;
  border: 0;
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--cream);
  border-radius: 32px;
  padding: 40px 18px 18px;
  overflow: hidden;
  position: relative;
}
.mock-greeting h3 {
  font-size: 22px;
  color: var(--deep);
  margin-bottom: 4px;
}
.mock-greeting p {
  font-size: 13px;
  color: var(--text);
  margin: 0 0 18px;
}
.mock-suggest {
  background: var(--terracotta);
  color: var(--white);
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.mock-suggest p {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
}
.mock-btn {
  display: inline-block;
  background: var(--white);
  color: var(--terracotta);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}
.mock-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.mock-humors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 18px;
}
.mock-humor {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px;
  border-radius: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}
.mock-humor.active {
  background: var(--primary-pale);
  border-color: var(--primary);
  color: var(--primary);
}
.mock-humor span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--primary);
  border-radius: 50%;
  margin: 0 auto 4px;
  opacity: 0.3;
}
.mock-humor.active span { opacity: 1; }
.mock-cards {
  display: flex;
  gap: 8px;
  overflow: hidden;
}
.mock-card {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px;
  min-height: 110px;
}
.mock-card p {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep);
  margin: 6px 0 6px;
  line-height: 1.3;
}
.mock-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 100px;
}
.mock-tag-receita {
  background: var(--terracotta-pale);
  color: var(--terracotta);
}
.mock-tag-brincadeira {
  background: #E3EFFB;
  color: #378ADD;
}
.mock-meta {
  font-size: 10px;
  color: var(--muted);
}

/* ===== Section: Problema ===== */
.section-problema { background: var(--white); }
.section-problema h2 { max-width: 800px; margin-bottom: 48px; }
.problemas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.problema-card {
  background: var(--cream);
  border: 1px solid var(--border-light);
  padding: 28px;
  border-radius: var(--radius);
  position: relative;
}
.problema-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  font-weight: 800;
  color: var(--terracotta-light);
  line-height: 1;
}
.problema-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  padding-right: 50px;
}
.problema-card p { margin: 0; color: var(--text); }
.problema-cta {
  font-size: 19px;
  font-weight: 700;
  color: var(--deep);
  text-align: center;
  padding: 24px;
  background: var(--terracotta-pale);
  border-radius: var(--radius);
  margin: 0 0 32px;
}
.section-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

/* ===== Section: Solução ===== */
.section-solucao { background: var(--warm); }
.section-solucao h2 { max-width: 820px; }
.section-solucao .lead { margin-bottom: 56px; }
.solucao-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}
.solucao-step {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  height: 100%;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.solucao-step h3 { font-size: 18px; margin-bottom: 8px; }
.solucao-step p { margin: 0; font-size: 14px; color: var(--text); }
.solucao-arrow { color: var(--terracotta); }

/* ===== Section: Pra quem é ===== */
.section-quemè { background: var(--white); }
.quemè-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.quemè-col h2 { font-size: 28px; margin-bottom: 24px; }
.check-list li, .x-list li {
  padding: 12px 0 12px 36px;
  position: relative;
  border-bottom: 1px solid var(--border-light);
  font-size: 16px;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5 9-9' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 2px 6px rgba(124, 158, 124, 0.25);
}
.x-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FEF3F2;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6l12 12M18 6L6 18' stroke='%23C4714A' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Section: Dentro ===== */
.section-dentro { background: var(--warm); }
.section-dentro h2 { max-width: 720px; margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.feature {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature-icon-receita { background: var(--terracotta-pale); color: var(--terracotta); }
.feature-icon-brincadeira { background: #E3EFFB; color: #378ADD; }
.feature-icon-rotina { background: #F5E8F8; color: #CE93D8; }
.feature-icon-guia { background: #E5F3E6; color: #66BB6A; }
.feature-icon-historia { background: #FCEAF1; color: #F48FB1; }
.feature-icon-bonus { background: var(--primary-pale); color: var(--primary); }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { margin: 0; font-size: 14px; color: var(--text); line-height: 1.55; }

/* ===== Section: Diferencial ===== */
.section-diferencial { background: var(--white); }
.diferencial-card {
  background: linear-gradient(135deg, var(--deep) 0%, #1F2C20 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  color: var(--white);
}
.diferencial-card .eyebrow { color: var(--terracotta-light); }
.diferencial-card h2 {
  color: var(--white);
  max-width: 800px;
  margin-bottom: 48px;
}
.diferencial-card em { color: var(--terracotta-light); }
.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.dif-item {
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.dif-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.dif-item h4 { color: var(--white); font-size: 17px; margin-bottom: 6px; }
.dif-item p { color: rgba(255,255,255,0.75); font-size: 14px; margin: 0; }
.diferencial-card .section-cta-row .btn-primary { background: var(--terracotta); }

/* ===== Section: Depoimentos ===== */
.section-depoimentos { background: var(--warm); }
.section-depoimentos h2 { margin-bottom: 48px; }
.depoimentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.depoimento {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}
.dep-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.depoimento p {
  font-size: 16px;
  font-style: italic;
  color: var(--deep);
  line-height: 1.6;
  margin-bottom: 20px;
}
.dep-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep-avatar, .dep-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.dep-photo {
  border: 2px solid var(--terracotta-light);
}
.dep-avatar.a1 { background: linear-gradient(135deg, #C4714A, #EDD5C5); }
.dep-avatar.a2 { background: linear-gradient(135deg, #7C9E7C, #B8D4B8); }
.dep-avatar.a3 { background: linear-gradient(135deg, #C9A84C, #EDD5C5); }
.dep-avatar.a4 { background: linear-gradient(135deg, #CE93D8, #F5E8F8); }
.dep-author strong {
  display: block;
  color: var(--deep);
  font-size: 15px;
}
.dep-author span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* Swipe hint dots (mobile carousel) */
.swipe-hint {
  display: none;
  justify-content: center;
  gap: 8px;
  margin: -16px 0 24px;
}
.swipe-hint .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background .25s ease, transform .25s ease;
}
.swipe-hint .dot.active {
  background: var(--terracotta);
  transform: scale(1.3);
}

/* ===== Section: Planos ===== */
.section-planos { background: var(--cream); }
.section-planos h2 { margin-bottom: 16px; }
.section-planos .lead { margin: 0 auto 48px; text-align: center; }
.section-planos .eyebrow {
  display: block;
  text-align: center;
}
.section-planos > .container > h2 { text-align: center; }
.planos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: stretch;
}
.plano {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .2s;
}
.plano:hover { transform: translateY(-4px); }

.plano-destaque {
  border-color: var(--terracotta);
  background: linear-gradient(180deg, var(--terracotta-pale) 0%, var(--white) 30%);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.plano-destaque:hover { transform: scale(1.04) translateY(-4px); }
.plano-halo {
  display: none;
}
.plano-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  z-index: 2;
}
.plano-header h3 { font-size: 22px; margin-bottom: 4px; }
.plano-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.plano-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.plano-currency {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
}
.plano-value {
  font-size: 56px;
  font-weight: 800;
  color: var(--deep);
  line-height: 1;
}
.plano-period {
  font-size: 16px;
  color: var(--muted);
  font-weight: 600;
}
.plano-total {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.plano-features {
  margin-bottom: 28px;
  flex: 1;
}
.plano-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}
.plano-features li:last-child { border-bottom: 0; }
.plano-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5 9-9' stroke='%237C9E7C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.planos-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* Store badges */
.store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 32px 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.store-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.store-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: var(--deep);
  color: var(--white);
  border-radius: 12px;
  min-width: 180px;
}
.store-badge svg { color: var(--white); flex-shrink: 0; }
.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-badge strong { font-size: 15px; font-weight: 800; }
.store-badge em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}

/* ===== Section: Garantia ===== */
.section-garantia { background: var(--white); }
.garantia-card {
  background: var(--terracotta-pale);
  border: 1px solid var(--terracotta-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: center;
}
.garantia-card h2 { margin-bottom: 12px; }
.garantia-card p { margin: 0; color: var(--text); }

/* ===== Section: FAQ ===== */
.section-faq { background: var(--warm); }
.section-faq h2 { margin-bottom: 40px; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: var(--shadow); }
.faq-item summary {
  padding: 20px 28px;
  font-weight: 700;
  font-size: 16px;
  color: var(--deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--terracotta);
  font-weight: 400;
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 28px 24px;
  margin: 0;
  color: var(--text);
}

/* ===== Section: CTA Final ===== */
.section-cta-final {
  background: var(--cream);
  padding-bottom: 120px;
}
.cta-final-card {
  background: linear-gradient(135deg, var(--terracotta) 0%, #B05F3D 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  color: var(--white);
}
.cta-final-card h2 {
  color: var(--white);
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 16px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.cta-final-card em { color: var(--terracotta-light); }
.cta-final-card p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}
.cta-final-card .btn-primary {
  background: var(--white);
  color: var(--terracotta);
}
.cta-final-card .btn-primary:hover { background: var(--cream); }
.cta-final-tiny {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin: 16px 0 0;
}

/* ===== Inline CTA Bar ===== */
.inline-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 32px;
  padding: 32px;
  background: var(--white);
  border: 2px dashed var(--terracotta-light);
  border-radius: var(--radius);
}
.inline-cta p {
  font-size: 17px;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 16px;
}

/* ===== Footer ===== */
.footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 24px;
}
.footer .logo { color: var(--white); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
/* Desktop: footer details sempre "aberto" visualmente (sem accordion) */
@media (min-width: 981px) {
  .footer-section > summary ~ * { display: block !important; }
  .footer-section > summary { pointer-events: none; }
}
.footer-section > summary {
  list-style: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-section > summary::-webkit-details-marker { display: none; }
.footer-section h4 {
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}
.footer-chevron { display: none; }
.footer-section a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  padding: 6px 0;
  text-decoration: none;
}
.footer-section a:hover { color: var(--terracotta-light); }
.footer-bottom {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* ===== Section: Criadora ===== */
.section-criadora { background: var(--white); }
.criadora-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
  background: var(--cream);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}
.criadora-foto {
  flex-shrink: 0;
}
.criadora-foto img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 25%;
  border-radius: var(--radius);
  border: 3px solid var(--terracotta-light);
}
.criadora-content h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
}
.criadora-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
.criadora-assinatura {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.criadora-assinatura strong { color: var(--terracotta); font-size: 17px; }
.criadora-assinatura span { color: var(--muted); font-size: 13px; }

/* ===== Section: Bônus ===== */
.section-bonus {
  background: linear-gradient(180deg, var(--cream) 0%, var(--terracotta-pale) 100%);
}
.section-bonus h2 { max-width: 820px; margin-bottom: 16px; }
.section-bonus .lead { margin-bottom: 48px; }
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.bonus-card {
  background: var(--white);
  border: 2px dashed var(--terracotta-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.bonus-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 100px;
}
.bonus-card h3 {
  font-size: 18px;
  margin: 12px 0 10px;
  color: var(--deep);
}
.bonus-card p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 16px;
}
.bonus-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.bonus-old {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 16px;
  font-weight: 700;
}
.bonus-tag {
  background: var(--primary-pale);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

/* Bonus soma banner (substitui o card antigo do final do grid) */
.bonus-soma-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--deep) 0%, #1F2C20 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-top: 8px;
  border: 2px solid var(--terracotta);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.bonus-soma-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(196, 113, 74, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.bsb-left { position: relative; z-index: 1; }
.bsb-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta-light);
  margin-bottom: 8px;
}
.bonus-soma-banner h3 {
  color: var(--white);
  font-size: clamp(20px, 2.6vw, 28px);
  margin: 0 0 8px;
  line-height: 1.25;
}
.bsb-strike {
  text-decoration: line-through;
  color: var(--terracotta-light);
  font-weight: 700;
}
.bonus-soma-banner p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  font-size: 16px;
}
.bonus-soma-banner p strong {
  color: var(--terracotta-light);
  font-size: 22px;
  font-weight: 800;
}
.bsb-cta {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* ===== Stack de valor ===== */
.stack-valor {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 720px;
  margin: 32px auto 48px;
  box-shadow: var(--shadow);
}
.stack-valor h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--deep);
  text-align: center;
}
.stack-valor ul {
  display: flex;
  flex-direction: column;
}
.stack-valor li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 14px;
  color: var(--text);
  gap: 12px;
}
.stack-valor li span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stack-valor li strong {
  color: var(--muted);
  font-weight: 700;
  text-decoration: line-through;
  white-space: nowrap;
  flex-shrink: 0;
}
.stack-valor li.bonus span {
  color: var(--terracotta);
  font-weight: 700;
}
.stack-valor li.bonus span::before { content: '✦ '; }
.stack-valor li.total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--deep);
  border-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--deep);
}
.stack-valor li.total strong {
  color: var(--muted);
  font-size: 16px;
}
.stack-valor li.hoje {
  border-bottom: 0;
  padding-top: 12px;
  font-size: 18px;
  color: var(--deep);
  font-weight: 700;
}
.stack-valor li.hoje strong {
  text-decoration: none;
  color: var(--terracotta);
  font-size: 22px;
  font-weight: 800;
}

/* ===== PS da criadora ===== */
.section-ps {
  background: var(--terracotta-pale);
  padding: 48px 0 60px;
}
.ps-block {
  font-size: 16px;
  line-height: 1.65;
  color: var(--deep);
  margin-bottom: 16px;
}
.ps-block strong { color: var(--terracotta); }
.ps-block em { font-style: italic; color: var(--text); }
.ps-assinatura {
  font-size: 15px;
  color: var(--terracotta);
  font-weight: 700;
  margin-top: 24px;
}

/* ===== Popups Sociais (prova ao vivo) ===== */
.social-pops {
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 140;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: calc(100vw - 32px);
}
.social-pop {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 16px 10px 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  font-size: 13px;
  color: var(--deep);
  pointer-events: auto;
  max-width: 320px;
  opacity: 0;
  transform: translateX(-110%);
  transition: transform .45s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s ease;
}
.social-pop.show {
  opacity: 1;
  transform: translateX(0);
}
.social-pop .pop-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--terracotta-light);
}
.social-pop .pop-text {
  flex: 1;
  line-height: 1.35;
}
.social-pop .pop-text strong { font-weight: 800; color: var(--deep); }
.social-pop .pop-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 11px;
  display: block;
  margin-top: 2px;
  font-weight: 600;
}
.social-pop.online {
  background: linear-gradient(135deg, #2C3E2D 0%, #1F2C20 100%);
  color: var(--white);
  border-color: transparent;
}
.social-pop.online .pop-text strong { color: var(--white); }
.social-pop.online .pop-text em { color: rgba(255,255,255,0.7); }
.social-pop.online .pop-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(43, 182, 115, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.social-pop.online .pop-icon::after {
  content: '';
  width: 10px;
  height: 10px;
  background: #2BB673;
  border-radius: 50%;
  animation: pulse-ring 1.8s ease-out infinite;
  box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.3);
}

/* Subir os pops quando sticky CTA estiver visível no mobile */
@media (max-width: 980px) {
  .social-pops {
    bottom: 92px;
    left: 12px;
    max-width: calc(100vw - 24px);
  }
  .social-pop {
    padding: 8px 14px 8px 10px;
    font-size: 12px;
    max-width: 280px;
  }
  .social-pop .pop-avatar, .social-pop.online .pop-icon { width: 32px; height: 32px; }
}

/* ===== Sticky CTA Mobile (beefed, aparece após scroll) ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  z-index: 150;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.12);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  /* Estado oculto inicial — JS adiciona .visible quando scroll passa do gatilho */
  transform: translateY(110%);
  opacity: 0;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), opacity .3s ease;
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex: 1;
  min-width: 0;
}
.sticky-promo {
  display: inline-block;
  background: var(--terracotta-pale);
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 4px;
  align-self: flex-start;
}
.sticky-info strong {
  font-size: 22px;
  color: var(--deep);
  font-weight: 800;
  line-height: 1;
}
.sticky-info strong small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.sticky-tiny {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}
.sticky-btn {
  padding: 14px 22px;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px) {
  .section { padding: 80px 0; }

  /* Hero ocupa ~75vh do viewport — só conteúdo textual (mockup é sessão própria) */
  .hero {
    padding: 48px 0 56px;
    min-height: 75svh;
    min-height: 75vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .hero h1 { text-align: center; }
  .hero-sub, .hero-detail { margin-left: auto; margin-right: auto; }
  .hero-microcopy { justify-content: center; }
  .hero-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }
  .badge-live { margin-left: auto; margin-right: auto; }

  /* Mockup do hero esconde no mobile — vive na phone-showcase */
  .hero-visual { display: none; }

  /* Blobs decorativos voltam no mobile (mais sutis) */
  .hero-blob { display: block; opacity: 0.35; filter: blur(60px); }
  .hero-blob-1 { width: 320px; height: 320px; top: -100px; right: -80px; }
  .hero-blob-2 { width: 280px; height: 280px; bottom: -120px; left: -60px; opacity: 0.25; }

  /* Elementos decorativos flutuantes mobile */
  .hero-deco { display: block; }

  /* Phone Showcase mobile */
  .phone-showcase {
    display: block;
    padding: 56px 0 72px;
  }
  .showcase-head { margin-bottom: 32px; padding: 0 4px; }
  .showcase-sub { font-size: 15px; }
  .showcase-stage { min-height: 520px; }
  .phone-mockup { width: 260px; height: 500px; }
  .phone-annotation { display: none; }
  .showcase-chips {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
  }
  .showcase-chips::-webkit-scrollbar { display: none; }
  .showcase-chips .feat-chip { flex-shrink: 0; }
}

/* Elementos decorativos flutuantes (animação suave) */
.hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.deco-shape {
  position: absolute;
  opacity: 0.55;
  animation: deco-float 6s ease-in-out infinite;
}
@keyframes deco-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(8deg); }
}
.deco-1 { top: 8%; left: 6%; animation-delay: 0s; }
.deco-2 { top: 14%; right: 8%; animation-delay: 1.2s; }
.deco-3 { top: 38%; right: 4%; animation-delay: 2.4s; opacity: 0.45; }
.deco-4 { bottom: 22%; left: 5%; animation-delay: 0.8s; }
.deco-5 { bottom: 32%; right: 12%; animation-delay: 3s; }
.deco-6 { top: 50%; left: 3%; animation-delay: 1.8s; opacity: 0.4; }

@media (prefers-reduced-motion: reduce) {
  .deco-shape { animation: none; }
}

@media (max-width: 980px) {

  /* Header */
  .nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 12px 20px; }
  .logo { font-size: 15px; }
  .logo-mark { width: 30px; height: 30px; }

  /* Grids */
  .problemas-grid { grid-template-columns: 1fr; }
  .solucao-flow { grid-template-columns: 1fr; }
  .solucao-arrow { transform: rotate(90deg); justify-self: center; }
  .quemè-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }

  /* Planos */
  .planos-grid { grid-template-columns: 1fr; gap: 16px; }
  .plano { order: var(--order-mobile, 99); }
  .plano-destaque {
    transform: none;
    border-width: 3px;
    position: relative;
  }
  .plano-destaque::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: calc(var(--radius) + 8px);
    background: radial-gradient(ellipse at center, rgba(196, 113, 74, 0.25) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
  }
  .plano-destaque:hover { transform: translateY(-4px); }

  /* Garantia */
  .garantia-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 16px;
  }
  .garantia-selo { justify-self: center; }
  .garantia-selo svg { width: 120px; height: 120px; }

  /* Footer accordion */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }
  .footer-links { grid-template-columns: 1fr; gap: 0; }
  .footer-section {
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .footer-section > summary {
    cursor: pointer;
    padding: 16px 0;
  }
  .footer-section h4 { margin: 0; }
  .footer-chevron {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
    transition: transform .25s ease;
    margin-right: 6px;
  }
  .footer-section[open] .footer-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
  }
  .footer-section a { padding: 10px 0; }
  .footer-section a:first-of-type { padding-top: 4px; }

  .diferencial-card { padding: 36px 24px; }
  .criadora-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: left;
  }
  .criadora-foto { max-width: 280px; margin: 0 auto; }
  .criadora-foto img { height: 240px; }

  .cta-final-card { padding: 48px 24px; }
  .diferencial-card h2 { margin-bottom: 32px; }

  /* Bonus soma banner */
  .bonus-soma-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .bsb-cta { width: 100%; }

  /* Inline CTA mobile — remover borda pesada */
  .inline-cta {
    border: 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    border-radius: 0;
    padding: 24px 16px;
    background: transparent;
  }

  /* Sticky CTA habilitado */
  .sticky-cta { display: flex; }
  body { padding-bottom: 84px; }

  /* Depoimentos viram carrossel horizontal */
  .depoimentos-grid {
    grid-template-columns: none;
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 4px 4px 16px;
    margin: 0 -20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .depoimentos-grid::-webkit-scrollbar { display: none; }
  .depoimentos-grid::before,
  .depoimentos-grid::after {
    content: '';
    flex: 0 0 16px;
  }
  .depoimento {
    flex: 0 0 86%;
    scroll-snap-align: center;
    padding: 24px;
  }
  .swipe-hint { display: flex; }

  /* Stack de valor mobile */
  .stack-valor { padding: 20px 16px; }
  .stack-valor li {
    font-size: 13px;
    padding: 8px 0;
    gap: 8px;
  }
  .stack-valor li strong { font-size: 13px; }
  .stack-valor li.total { font-size: 15px; }
  .stack-valor li.total strong { font-size: 15px; }
  .stack-valor li.hoje { font-size: 16px; }
  .stack-valor li.hoje strong { font-size: 20px; }

  /* CTA buttons full-width em mobile maior também */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-cta .btn { width: 100%; }

  /* Section paddings consistentes (mais respiro entre blocos) */
  .section-bonus, .section-planos, .section-faq,
  .section-depoimentos, .section-dentro,
  .section-problema, .section-solucao,
  .section-quemè, .section-criadora,
  .section-diferencial, .section-garantia,
  .section-comparativo { padding: 72px 0; }

  /* Stack de valor margin */
  .stack-valor { margin: 24px auto 32px; }

  .section-planos h2 { text-align: center; }
  .section-depoimentos h2 { margin-bottom: 32px; }
  .section-dentro h2 { margin-bottom: 32px; }
  .section-problema h2 { margin-bottom: 32px; }
  .features-grid, .problemas-grid, .bonus-grid { margin-bottom: 24px; }
}

@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .btn-lg { width: 100%; padding: 14px 20px; }
  .btn-xl { width: 100%; padding: 16px 24px; font-size: 16px; }
  .planos-trust { gap: 12px; font-size: 13px; }

  /* Hero — preserva respiro mesmo em telas pequenas */
  .hero { padding: 44px 0 36px; }
  .hero h1 { font-size: 30px; line-height: 1.15; margin-bottom: 14px; }
  .hero-sub { font-size: 16px; margin-bottom: 10px; max-width: 320px; }
  .hero-detail { font-size: 15px; margin-bottom: 22px; max-width: 320px; }
  .hero-microcopy { font-size: 12px; margin-bottom: 22px; }

  .badge-live {
    font-size: 12px;
    padding: 5px 12px 5px 10px;
    margin-bottom: 18px;
  }

  /* Trust chips ainda menores */
  .trust-chip { font-size: 12px; padding: 6px 10px; gap: 6px; }
  .avatar { width: 20px; height: 20px; }
  .trust-stars { font-size: 12px; }

  .phone-mockup { width: 240px; height: 460px; }
  .phone-screen { padding: 32px 14px 14px; }
  .mock-greeting h3 { font-size: 18px; }
  .mock-suggest { padding: 12px; margin-bottom: 14px; }

  /* H2 menor */
  h2 { font-size: 26px; }
  .section-quemè h2, .section-criadora h2,
  .section-bonus h2 { font-size: 24px; }

  /* Problemas */
  .problema-card { padding: 20px; }
  .problema-num { font-size: 36px; top: 14px; right: 18px; }
  .problema-card h3 { font-size: 16px; padding-right: 36px; }
  .problema-cta {
    font-size: 16px;
    padding: 18px;
    margin-bottom: 24px;
  }

  /* Diferencial card */
  .diferencial-card { padding: 28px 18px; }
  .dif-item { padding: 18px; }

  /* CTA final */
  .cta-final-card { padding: 36px 20px; }

  /* Stack valor */
  .stack-valor h3 { font-size: 16px; }

  /* FAQ */
  .faq-item summary { padding: 16px 20px; padding-right: 48px; font-size: 15px; }
  .faq-item summary::after { right: 18px; }
  .faq-item p { padding: 0 20px 20px; font-size: 14px; }

  /* Garantia text */
  .garantia-card h2 { font-size: 22px; }

  /* Criadora */
  .criadora-foto img { height: 200px; }
  .criadora-content p { font-size: 15px; }

  /* PS */
  .ps-block { font-size: 15px; }

  /* Bonus soma banner mobile */
  .bonus-soma-banner h3 { font-size: 19px; }
  .bonus-soma-banner p strong { font-size: 20px; }

  /* Footer accordion ajuste */
  .footer-section h4 { font-size: 13px; }

  /* Store badges */
  .store-list { gap: 10px; }
  .store-badge { min-width: 0; padding: 10px 14px; gap: 10px; flex: 1; }
  .store-badge strong { font-size: 13px; }
  .store-badge em { font-size: 10px; }

  /* Sticky CTA fine-tune */
  .sticky-info strong { font-size: 20px; }
  .sticky-promo { font-size: 9px; padding: 2px 6px; }
  .sticky-btn { padding: 12px 16px; font-size: 14px; }
}

/* ============================================================
   NOVOS COMPONENTES — Countdown, Comparativo, Garantia tripla,
   O que muda HOJE, Anchor preço, Quiz, Tabela comparativa,
   Loss aversion, Bonus cascata
   ============================================================ */

/* ===== Countdown timer ===== */
.countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 800;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  display: inline-block;
  min-width: 6.5ch;
  text-align: center;
}
.sticky-promo .countdown {
  color: var(--terracotta);
  font-size: inherit;
}

/* ===== Faixa de comparativo trivial de preço ===== */
.price-strip {
  background: linear-gradient(180deg, var(--warm) 0%, var(--cream) 100%);
  padding: 28px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.strip-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  gap: 4px;
}
.strip-item .strip-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.strip-item strong {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--terracotta);
  line-height: 1;
}
.strip-item .strip-tiny {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
  line-height: 1.3;
}
.strip-divider {
  width: 1px;
  background: var(--border);
  margin: 8px 0;
}

/* ===== Loss aversion block ===== */
.loss-block {
  background: linear-gradient(135deg, var(--terracotta-pale) 0%, var(--cream) 100%);
  border: 1px solid var(--terracotta-light);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 32px;
  text-align: center;
}
.loss-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.loss-block p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--deep);
  margin: 0 0 12px;
}
.loss-block strong { color: var(--terracotta); font-weight: 800; }
.loss-question {
  font-size: 19px !important;
  font-style: italic;
  font-weight: 700;
  color: var(--terracotta) !important;
  margin: 16px 0 0 !important;
}

/* ===== Tabela comparativa ===== */
.section-comparativo { background: var(--white); }
.section-comparativo h2 { max-width: 820px; }
.section-comparativo .lead { margin-bottom: 40px; }
.compare-wrap {
  overflow-x: auto;
  margin: 0 -8px 32px;
  padding: 0 8px;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.compare-table th, .compare-table td {
  padding: 16px 14px;
  text-align: center;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}
.compare-table thead th {
  background: var(--cream);
  color: var(--deep);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border);
}
.compare-table thead .ct-highlight {
  background: var(--terracotta);
  color: var(--white);
  position: relative;
}
.compare-table thead .ct-highlight::after {
  content: '★';
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 10px;
  color: var(--gold);
}
.compare-table .ct-feature {
  text-align: left;
  font-weight: 700;
  color: var(--deep);
  background: var(--cream);
}
.compare-table tbody td.ct-highlight {
  background: var(--terracotta-pale);
  border-left: 1px solid var(--terracotta-light);
  border-right: 1px solid var(--terracotta-light);
}
.compare-table tbody tr:last-child td.ct-highlight {
  border-bottom: 1px solid var(--terracotta-light);
}
.ct-v {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--primary-pale);
  color: var(--primary);
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ct-v::before {
  content: '✓';
  font-weight: 800;
}
.ct-x { color: var(--muted); font-weight: 800; }
.ct-partial {
  display: inline-flex;
  align-items: center;
  background: #FFF6E5;
  color: #B07A1C;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  text-transform: uppercase;
}
.ct-na { color: var(--muted); font-size: 12px; font-style: italic; }
.ct-row-price td {
  background: var(--warm);
  font-size: 16px;
  font-weight: 800;
  color: var(--deep);
}
.ct-row-price td.ct-feature { background: var(--warm); }
.ct-row-price td.ct-highlight {
  background: var(--terracotta);
  color: var(--white);
}
.ct-row-price td.ct-highlight strong {
  color: var(--white);
  font-size: 22px;
}
.ct-row-price small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== Anchor de preço destruidor ===== */
.price-anchor {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 720px;
  margin: 0 auto 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.anchor-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--border-light);
  gap: 12px;
}
.anchor-row:last-child { border-bottom: 0; }
.anchor-label {
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  flex: 1;
}
.anchor-label strong { color: var(--terracotta); }
.anchor-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--deep);
  white-space: nowrap;
}
.anchor-price.strike {
  color: var(--muted);
  text-decoration: line-through;
}
.anchor-final {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 2px solid var(--deep);
  background: linear-gradient(90deg, transparent, var(--terracotta-pale) 50%, transparent);
  margin-left: -28px;
  margin-right: -28px;
  padding-left: 28px;
  padding-right: 28px;
  border-bottom: 0;
}
.anchor-final .anchor-label { font-size: 17px; font-weight: 700; color: var(--deep); }
.anchor-strike {
  display: block;
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  text-align: right;
}
.anchor-final strong {
  display: block;
  font-size: 24px;
  color: var(--terracotta);
  font-weight: 800;
  text-align: right;
}

/* ===== Bloco "O que muda HOJE" ===== */
.today-block {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--cream) 100%);
  border: 1px solid var(--primary-light);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.today-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 8px;
}
.today-block h3 {
  font-size: 19px;
  margin-bottom: 16px;
  color: var(--deep);
}
.today-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.today-list li {
  position: relative;
  padding: 8px 0 8px 32px;
  font-size: 15px;
  color: var(--deep);
  font-weight: 600;
}
.today-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5 9-9' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ===== Garantia tripla ===== */
.guarantee-list {
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  padding: 16px 18px;
  border-radius: 12px;
  border: 1px solid var(--terracotta-light);
}
.g-check { flex-shrink: 0; margin-top: 2px; }
.guarantee-list li strong {
  display: block;
  color: var(--deep);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}
.guarantee-list li span {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

/* ===== Plano installment microcopy ===== */
.plano-installment {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}
.plano-installment strong {
  color: var(--deep);
  font-weight: 800;
}

/* ===== Bonus cascata (entrada animada) ===== */
[data-cascade] {
  opacity: 0;
  transform: translateY(24px) scale(0.96);
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
[data-cascade].cascade-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@keyframes cascade-pop {
  0% { box-shadow: 0 0 0 0 rgba(196, 113, 74, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(196, 113, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(196, 113, 74, 0); }
}
[data-cascade].cascade-in {
  animation: cascade-pop 700ms ease-out;
}

/* ===== Quiz Modal ===== */
.quiz-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(44, 62, 45, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  z-index: 299;
}
.quiz-backdrop.open { opacity: 1; pointer-events: auto; }

.quiz-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.94);
  width: min(92vw, 520px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}
.quiz-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--cream);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  cursor: pointer;
  transition: background .2s ease;
}
.quiz-close:hover { background: var(--terracotta-pale); color: var(--terracotta); }

.quiz-progress {
  height: 4px;
  background: var(--border-light);
  border-radius: 2px;
  margin-bottom: 28px;
  overflow: hidden;
}
.quiz-progress-bar {
  height: 100%;
  background: var(--terracotta);
  width: 33%;
  transition: width .4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quiz-step { animation: quiz-fade .35s ease-out; }
@keyframes quiz-fade {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.quiz-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.quiz-eyebrow-success {
  background: var(--primary-pale);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 100px;
}
.quiz-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--deep);
  line-height: 1.25;
}
.quiz-step > p {
  font-size: 14px;
  color: var(--text);
  margin: 0 0 24px;
}
.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-options button {
  background: var(--white);
  border: 2px solid var(--border);
  padding: 16px 20px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--deep);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}
.quiz-options button:hover {
  border-color: var(--terracotta);
  background: var(--terracotta-pale);
  transform: translateX(4px);
}

.quiz-summary {
  background: var(--cream);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 16px 0;
}
.qs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border-light);
  font-size: 14px;
}
.qs-row:last-child { border-bottom: 0; }
.qs-row span { color: var(--muted); font-weight: 600; }
.qs-row strong { color: var(--deep); font-weight: 800; text-transform: capitalize; }

.quiz-bonus {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--terracotta-pale);
  border: 1.5px dashed var(--terracotta);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 16px 0 24px;
}
.quiz-bonus svg { flex-shrink: 0; }
.quiz-bonus strong {
  display: block;
  color: var(--terracotta);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}
.quiz-bonus span {
  color: var(--text);
  font-size: 13px;
  line-height: 1.4;
}
.quiz-tiny {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 0;
}

/* ============================================================
   RESPONSIVE — novos componentes mobile
   ============================================================ */
@media (max-width: 980px) {
  .price-strip { padding: 20px 0; }
  .strip-grid { gap: 8px; }
  .strip-item { padding: 0 4px; gap: 2px; }
  .strip-item strong { font-size: 22px; }
  .strip-item .strip-tiny { font-size: 11px; }
  .strip-item .strip-eyebrow { font-size: 10px; }

  .loss-block { padding: 24px 20px; }
  .loss-block p { font-size: 16px; }
  .loss-question { font-size: 17px !important; }

  .compare-wrap { margin: 0 -20px 24px; padding: 0 0 0 20px; }
  .compare-table { box-shadow: none; }

  .price-anchor { padding: 20px 18px; }
  .anchor-final { margin-left: -18px; margin-right: -18px; padding-left: 18px; padding-right: 18px; }
  .anchor-label { font-size: 14px; }
  .anchor-price { font-size: 16px; }
  .anchor-final strong { font-size: 22px; }

  .today-block { padding: 22px 20px; }
  .today-list { grid-template-columns: 1fr; gap: 4px; }
  .today-list li { font-size: 14px; padding: 6px 0 6px 30px; }
  .today-list li::before { top: 8px; }

  .guarantee-list li { padding: 14px 16px; }
  .guarantee-list li strong { font-size: 15px; }
  .guarantee-list li span { font-size: 13px; }

  .quiz-modal {
    padding: 28px 22px 24px;
    width: 94vw;
    max-height: 92vh;
  }
  .quiz-step h3 { font-size: 20px; }
  .quiz-options button { padding: 14px 18px; font-size: 14px; }
}

@media (max-width: 560px) {
  .strip-divider { display: none; }
  .strip-grid {
    flex-wrap: wrap;
    gap: 12px 0;
  }
  .strip-item {
    flex: 1 1 30%;
    min-width: 0;
  }

  .compare-wrap::after {
    content: '⇢ deslize';
    display: block;
    text-align: center;
    font-size: 11px;
    color: var(--muted);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .quiz-modal { padding: 24px 18px 20px; }
  .quiz-step h3 { font-size: 18px; }
}

/* Phone tiny (320-360px) — extra compression */
@media (max-width: 380px) {
  .container { padding: 0 16px; }
  .hero h1 { font-size: 26px; }
  h2 { font-size: 22px; }
  .logo span { display: none; }
  .logo .logo-mark { width: 32px; height: 32px; }
  .sticky-btn { padding: 12px 14px; font-size: 13px; }
}

/* ============================================================
   GEO BAR (cidade do lead via IP)
   ============================================================ */
.geo-bar {
  background: linear-gradient(90deg, #2C3E2D 0%, #1F2C20 100%);
  color: var(--cream);
  padding: 10px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  position: relative;
  z-index: 99;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s ease, max-height .4s ease;
}
.geo-bar.geo-bar-visible {
  opacity: 1;
  max-height: 60px;
}
.geo-bar-inner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}
.geo-dot {
  width: 8px;
  height: 8px;
  background: #2BB673;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}
.geo-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(43,182,115,0.4);
  animation: pulse-ring 1.8s ease-out infinite;
}
.geo-text strong {
  color: var(--terracotta-light);
  font-weight: 800;
}
.geo-text strong#geoCity,
.geo-text strong#minha-cidade {
  color: #FFC93C;
  font-weight: 800;
  text-shadow: 0 1px 4px rgba(255,201,60,0.3);
}
.geo-flag {
  width: 18px;
  height: 14px;
  vertical-align: -2px;
  margin: 0 4px 0 2px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.geo-text span {
  color: rgba(253,250,245,0.92);
}
@media (max-width: 480px) {
  .geo-bar { font-size: 12px; padding: 8px 14px; }
}

/* ============================================================
   FEATURE LIST (bullets com check) — substitui texto corrido
   ============================================================ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  position: relative;
  padding: 6px 0 6px 30px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12l5 5 9-9' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.feature-foot {
  margin: 12px 0 0 !important;
  padding-top: 12px;
  border-top: 1px dashed var(--border-light);
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.4;
}

/* ============================================================
   BONUS 4 e 5 — featured (segunda linha com hierarquia)
   ============================================================ */
.section-bonus .bonus-grid {
  grid-template-columns: repeat(6, 1fr);
  align-items: stretch;
}
.section-bonus .bonus-card {
  grid-column: span 2;
}
.section-bonus .bonus-card-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, #FFFFFF 0%, var(--terracotta-pale) 100%);
  border: 2px solid var(--terracotta);
  border-style: solid;
  box-shadow: 0 8px 24px rgba(196,113,74,0.15);
  padding: 32px 28px;
}
.section-bonus .bonus-card-featured h3 {
  font-size: 20px;
  color: var(--deep);
}
.section-bonus .bonus-card-featured::after {
  content: '★ DESTAQUE';
  position: absolute;
  top: 18px;
  right: 20px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
}
@media (max-width: 980px) {
  .section-bonus .bonus-grid {
    grid-template-columns: 1fr;
  }
  .section-bonus .bonus-card,
  .section-bonus .bonus-card-featured {
    grid-column: span 1;
  }
}

/* ============================================================
   BOTAO da seção criadora — alinhado a esquerda com o texto
   ============================================================ */
.criadora-content .section-cta-row {
  justify-content: flex-start;
  margin-top: 24px;
}
@media (max-width: 980px) {
  .criadora-content .section-cta-row {
    justify-content: center;
  }
}

/* ============================================================
   TABELA COMPARATIVA — contraste no R$ 1,10
   ============================================================ */
.ct-row-price td.ct-highlight {
  background: linear-gradient(135deg, #2C3E2D 0%, #1F2C20 100%) !important;
}
.ct-row-price td.ct-highlight strong {
  color: #FFC93C !important;
  font-size: 26px !important;
  text-shadow: 0 2px 8px rgba(255,201,60,0.3);
}
.ct-row-price td.ct-highlight small {
  color: rgba(255,255,255,0.85) !important;
}

/* ============================================================
   SECTION PS — fundo mais laranja, contraste melhor
   ============================================================ */
.section-ps {
  background: linear-gradient(135deg, #FFE4D2 0%, #FED9C0 100%);
}
.ps-block {
  color: var(--deep);
}
.ps-block strong {
  color: var(--terracotta-dark, #B05F3D);
}
.ps-block em {
  color: var(--terracotta);
  font-weight: 600;
}

