/* ═══════════════════════════════════════════
   BLOQUEIO DESKTOP
═══════════════════════════════════════════ */

/* Quando detectado desktop: esconde tudo, mostra só o bloqueio */
html.desktop-blocked body > *:not(#desktop-blocker) {
  display: none !important;
}

html.desktop-blocked body {
  margin: 0;
  padding: 0;
  background: #f0f4f8;
}

#desktop-blocker {
  display: none;
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #e6f7f4 100%);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: 'Inter', sans-serif;
}

.db-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px 40px 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,.10);
  border: 1px solid #e2e8f0;
}

.db-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}

.db-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #0F2347;
  margin-bottom: 14px;
  line-height: 1.25;
}

.db-text {
  font-size: .95rem;
  color: #475569;
  margin-bottom: 6px;
  line-height: 1.6;
}

.db-sub {
  font-size: .82rem;
  color: #94a3b8;
  margin-bottom: 28px;
}

.db-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #00C9A7;
  color: #0F2347;
  font-size: .95rem;
  font-weight: 800;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,201,167,.35);
  transition: transform .2s, background .2s;
}

.db-btn:hover { transform: scale(1.04); background: #00A88D; }

/* ═══════════════════════════════════════════
   VARIÁVEIS & RESET
═══════════════════════════════════════════ */
:root {
  --primary:       #1B3A6B;
  --primary-dark:  #0F2347;
  --primary-mid:   #2A5298;
  --accent:        #00C9A7;
  --accent-dark:   #00A88D;
  --accent-light:  #E6FAF7;
  --cta:           #00C9A7;
  --cta-hover:     #00A88D;
  --white:         #FFFFFF;
  --off-white:     #F8FAFB;
  --dark:          #0D1F3C;
  --text:          #2D3748;
  --text-muted:    #64748B;
  --gray-light:    #F1F5F9;
  --border:        #E2E8F0;

  --font: 'Inter', sans-serif;
  --radius:    22px;
  --radius-sm: 14px;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 16px 56px rgba(0,0,0,.13);
  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }

mark {
  background: var(--accent-light);
  color: var(--primary);
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 700;
}

s { opacity: .55; }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

.pain, .benefits, .testimonials, .about-product, .bonuses, .offer, .guarantee, .faq, .final-cta, .footer {
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
  position: relative;
  padding-top: 96px;
}

.pain          { z-index: 2; }
.benefits      { z-index: 3; }
.testimonials  { z-index: 4; }
.tangibility   { z-index: 5; }
.about-product { z-index: 6; }
.topics        { z-index: 7; }
.bonuses       { z-index: 8; }
.offer         { z-index: 9; }
.guarantee     { z-index: 10; }
.faq           { z-index: 11; }
.final-cta     { z-index: 12; }
.footer        { z-index: 13; }

/* Poá sutil nas seções escuras */
.pain, .about-product, .offer, .faq {
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 2px, transparent 2px);
  background-size: 28px 28px;
}

/* ═══════════════════════════════════════════
   UTILITÁRIOS DE COR
═══════════════════════════════════════════ */
.clr-primary    { color: var(--primary); }
.clr-accent     { color: var(--accent); }
.clr-white      { color: var(--white); }
.clr-white-soft { color: rgba(255,255,255,.82); }

/* ═══════════════════════════════════════════
   COUNTDOWN BAR
═══════════════════════════════════════════ */
.countdown-bar {
  background: var(--primary);
  color: var(--white);
  padding: 11px 16px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 200;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-bottom: 2px solid var(--accent);
}

.countdown-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   TAGS / LABELS
═══════════════════════════════════════════ */
.tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.tag-light {
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.38);
}

.tag-accent {
  background: var(--accent);
  color: var(--dark);
}

/* ═══════════════════════════════════════════
   TIPOGRAFIA COMUM
═══════════════════════════════════════════ */
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
  color: var(--dark);
  text-align: center;
}

.section-title em { font-style: normal; color: var(--accent); }

.pain .section-title,
.testimonials .section-title,
.about-product .section-title,
.offer .section-title,
.faq .section-title { color: var(--white); }

.section-sub {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   ANIMAÇÃO SCROLL FADE-UP
═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .55s ease, transform .55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════
   PLACEHOLDERS DE IMAGEM
═══════════════════════════════════════════ */
.img-placeholder {
  background: linear-gradient(135deg, var(--gray-light), var(--accent-light));
  border: 2px dashed var(--accent);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  color: var(--primary);
}

.img-placeholder span { font-size: 2.5rem; line-height: 1; }
.img-placeholder p    { font-size: .85rem; font-weight: 700; color: var(--primary); }
.img-placeholder small { font-size: .72rem; color: var(--text-muted); font-style: italic; padding: 0 12px; }

.img-placeholder--hero {
  width: 100%;
  max-width: 560px;
  height: 340px;
  margin: 0 auto;
}

.img-placeholder--testi {
  width: 100%;
  min-height: 180px;
  border-radius: var(--radius-sm);
}

.img-placeholder--card {
  width: 100%;
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

.img-placeholder--carousel {
  width: 218px;
  height: 300px;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.img-placeholder--bonus {
  width: 100%;
  max-width: 260px;
  height: 180px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.img-placeholder--offer {
  width: 100%;
  max-width: 320px;
  height: 200px;
  margin: 0 auto;
  border-radius: var(--radius-sm);
}

.img-placeholder--shield {
  width: 180px;
  height: 180px;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════
   BOTÕES
═══════════════════════════════════════════ */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 18px 38px;
  border-radius: 999px;
  margin-bottom: 14px;
  box-shadow: 0 6px 24px rgba(0,201,167,.40);
  animation: pulseCta 2.3s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}

.btn-cta:hover {
  transform: scale(1.05);
  background: var(--cta-hover);
  box-shadow: 0 12px 36px rgba(0,201,167,.55);
  animation: none;
}

@keyframes pulseCta {
  0%,100% { transform: scale(1);    box-shadow: 0  6px 24px rgba(0,201,167,.40); }
  50%      { transform: scale(1.03); box-shadow: 0 10px 36px rgba(0,201,167,.60); }
}

.btn-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cta);
  color: var(--dark);
  font-size: 1.08rem;
  font-weight: 800;
  padding: 20px 42px;
  border-radius: 999px;
  margin: 24px 0 16px;
  width: 100%;
  animation: glowOffer 2.4s ease-in-out infinite;
  transition: transform var(--transition);
}

.btn-offer:hover {
  transform: scale(1.04);
  background: var(--cta-hover);
  animation: none;
}

@keyframes glowOffer {
  0%,100% { box-shadow: 0  6px 22px rgba(0,201,167,.50); }
  50%      { box-shadow: 0 14px 44px rgba(0,201,167,.80); }
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--white);
  text-align: center;
  padding: 52px 0 48px;
}

.hero-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  margin-bottom: 16px;
}

.headline {
  font-size: clamp(1.55rem, 3.8vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--dark);
  margin: 0 auto 12px;
  max-width: 640px;
}

.headline-num {
  color: var(--accent);
  font-weight: 900;
}

.headline em {
  color: var(--primary);
  font-style: normal;
}

.subheadline {
  font-size: clamp(.92rem, 1.8vw, 1.08rem);
  color: var(--text-muted);
  font-weight: 400;
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.65;
}

.subheadline strong { color: var(--dark); font-weight: 700; }

.hero-mockup {
  margin: 0 auto 24px;
  max-width: 760px;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 48px rgba(27,58,107,.18));
  animation: float 4s ease-in-out infinite;
}

@media (max-width: 600px) {
  .hero { padding: 36px 0 36px; }
  .hero-badge { font-size: .68rem; padding: 5px 14px; margin-bottom: 12px; }
  .headline { font-size: 1.45rem; max-width: 100%; }
  .subheadline { font-size: .92rem; margin-bottom: 22px; }
  .hero-mockup { max-width: 100%; margin-bottom: 28px; }
}

@keyframes float {
  0%,100% { transform: translateY(0);    filter: drop-shadow(0 20px 48px rgba(27,58,107,.18)); }
  50%      { transform: translateY(-18px); filter: drop-shadow(0 36px 56px rgba(27,58,107,.28)); }
}

.hero-trust {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════
   SEÇÃO DOR
═══════════════════════════════════════════ */
.pain { background: var(--primary); text-align: center; }

.pain .section-title { color: var(--white); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.pain-card {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  padding: 24px 22px;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--white);
  transition: background var(--transition), transform var(--transition);
}

.pain-card:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}

.pain-ico { font-size: 1.8rem; flex-shrink: 0; line-height: 1.3; }

.pain-card p { font-size: .93rem; line-height: 1.6; opacity: .9; }
.pain-card strong { color: var(--accent); font-weight: 700; }

/* ═══════════════════════════════════════════
   BENEFÍCIOS — fundo branco
═══════════════════════════════════════════ */
.benefits { background: var(--off-white); text-align: center; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.ben-ico {
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border-radius: 14px;
  margin-bottom: 16px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.45;
  color: var(--dark);
}

.benefit-card h3 strong { font-weight: 900; color: var(--primary); }

.benefit-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

.benefit-card--highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, #f0fdf9 0%, #e6faf5 100%);
}

.benefit-card--highlight h3 strong { color: var(--accent-dark, #00a88a); }

/* ═══════════════════════════════════════════
   DEPOIMENTOS — fundo azul escuro
═══════════════════════════════════════════ */
.testimonials { background: var(--primary-dark); text-align: center; }

/* ── GRADE DE DEPOIMENTOS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}

.testi-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
}

.testi-card--featured {
  border: 2px solid var(--accent);
  box-shadow: 0 6px 28px rgba(0,201,167,.18);
}

.testi-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  margin: 0;
}

.testi-quote strong { color: var(--primary); }

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--accent-light);
}

.testi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-size: .83rem;
  font-weight: 800;
  color: var(--dark);
}

.testi-role {
  font-size: .73rem;
  color: var(--text-muted);
}

@media (max-width: 860px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }
}

.proof-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.proof-card--featured {
  border: 2.5px solid var(--accent);
}

.proof-label {
  padding: 14px 18px 10px;
  font-size: .78rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.proof-img-wrap {
  width: 100%;
}

.proof-img-wrap--protected {
  position: relative;
}

.proof-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}

.proof-card--full {
  padding: 0;
  overflow: hidden;
}

.proof-img--full {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.img-placeholder--proof {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  gap: 10px;
  padding: 24px;
  background: linear-gradient(135deg, var(--gray-light), var(--accent-light));
  border: 2px dashed var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
}

.img-placeholder--proof span { font-size: 2.8rem; }
.img-placeholder--proof p    { font-size: .88rem; font-weight: 700; color: var(--primary); }
.img-placeholder--proof small { font-size: .74rem; color: var(--text-muted); text-align: center; }

@media (max-width: 768px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   MATERIAL EM USO — fundo off-white
═══════════════════════════════════════════ */
.in-use {
  background: var(--off-white);
  text-align: center;
  border-radius: 48px 48px 0 0;
  margin-top: -48px;
  position: relative;
  padding-top: 96px;
  z-index: 5;
}

.in-use-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.in-use-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.in-use-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.in-use-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.in-use-placeholder {
  width: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, var(--gray-light), var(--accent-light));
  border-bottom: 1.5px dashed var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.in-use-placeholder span { font-size: 2.4rem; }
.in-use-placeholder small { font-size: .72rem; color: var(--text-muted); font-style: italic; }

.in-use-info {
  padding: 18px 20px 20px;
}

.in-use-info h3 {
  font-size: .98rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.in-use-info p {
  font-size: .84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .in-use { border-radius: 32px 32px 0 0; margin-top: -32px; padding-top: 72px; }
  .in-use-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   TANGIBILIDADE — fundo branco
═══════════════════════════════════════════ */
.tangibility { background: var(--white); text-align: center; }

.tangibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 0;
}

.tangibility-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.tangibility-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.tangibility-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tangibility-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  margin: 16px 20px 8px;
}

.tangibility-card p {
  font-size: .87rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 20px 20px;
}

.tangibility-card--highlight {
  border: 2px solid var(--accent);
  background: linear-gradient(145deg, #e8fdf7 0%, #d4f7ee 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 18px 16px;
}

.tangibility-card--highlight p { padding: 0; font-size: .8rem; }

.tang-badge {
  background: var(--accent);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 3px 10px;
  border-radius: 999px;
}

.tang-highlight-title {
  font-size: .95rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.3;
  padding: 0 !important;
}

/* ═══════════════════════════════════════════
   CARROSSEL
═══════════════════════════════════════════ */
.carousel-outer {
  overflow: hidden;
  width: calc(100% + 48px);
  margin: 0 -24px 44px;
  position: relative;
}

.carousel-outer::before,
.carousel-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}
.carousel-outer::before { left:  0; background: linear-gradient(to right, var(--white), transparent); }
.carousel-outer::after  { right: 0; background: linear-gradient(to left,  var(--white), transparent); }

.carousel-track {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  width: max-content;
  will-change: transform;
}

.carousel-track--ltr,
.carousel-track--rtl { animation: none; }

.ci { flex-shrink: 0; }

.ci-inner {
  display: flex;
  flex-direction: column;
  width: 218px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
  transition: transform var(--transition);
}

.ci-inner:hover { transform: translateY(-5px); }

.ci-inner img {
  width: 218px;
  height: 300px;
  object-fit: contain;
  display: block;
  background: var(--off-white);
}

.ci-label {
  display: block;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  padding: 8px 10px;
  background: var(--white);
  border-top: 1px solid var(--border);
  line-height: 1.3;
}

.carousel-peek-label {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: .01em;
}

.carousel-note {
  font-size: .82rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 18px;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   EXPLICAÇÃO DO PRODUTO — fundo azul escuro
═══════════════════════════════════════════ */
.about-product { background: var(--primary); text-align: center; }

.about-pill {
  display: inline-block;
  margin: 0 auto 28px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.how-works {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 36px 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.how-works-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--dark);
  font-size: .92rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.step-text strong {
  font-size: .96rem;
  font-weight: 700;
  color: var(--white);
}

.step-text span {
  font-size: .85rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   ASSUNTOS — fundo branco (usa estilos FAQ)
═══════════════════════════════════════════ */
.topics { background: var(--off-white); text-align: center; }

/* ═══════════════════════════════════════════
   BÔNUS — fundo branco
═══════════════════════════════════════════ */
.bonuses { background: var(--white); text-align: center; }

.bonuses-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.bonus-row {
  display: flex;
  align-items: center;
  gap: 28px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.bonus-row:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.bonus-row--featured {
  border-color: var(--accent);
  background: var(--accent-light);
}

.bonus-row-img {
  flex-shrink: 0;
  width: 140px;
}

.bonus-row-img img {
  width: 140px;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.14));
}

.bonus-row-body {
  flex: 1;
}

.bonus-num {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bonus-row-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.bonus-row-body p {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 14px;
}

@media (max-width: 600px) {
  .bonus-row { flex-direction: column; align-items: flex-start; padding: 20px; }
  .bonus-row-img { width: 100%; }
  .bonus-row-img img { width: 100%; max-width: 280px; margin: 0 auto; display: block; }
}

.bonus-val {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .83rem;
  color: var(--text-muted);
}

.bonus-val s { font-size: .98rem; font-weight: 700; color: var(--text); }

.free-tag {
  background: #16A34A;
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .05em;
}

.bonuses-total {
  display: inline-block;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px 36px;
  font-size: .98rem;
  color: var(--text);
  animation: floatBadge 3s ease-in-out infinite;
  box-shadow: 0 8px 28px rgba(0,201,167,.25);
}

.bonuses-total strong { color: var(--primary); font-weight: 900; }

@keyframes floatBadge {
  0%,100% { transform: translateY(0);    box-shadow: 0  8px 28px rgba(0,201,167,.25); }
  50%      { transform: translateY(-8px); box-shadow: 0 18px 36px rgba(0,201,167,.40); }
}

/* ═══════════════════════════════════════════
   OFERTA — fundo azul escuro
═══════════════════════════════════════════ */
.offer { background: var(--primary); text-align: center; }

#oferta { scroll-margin-top: 52px; }

/* ── GRID DOS PLANOS ── */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
}

/* ── CARD BASE ── */
.offer-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  display: flex;
  flex-direction: column;
}

.plan-basic  { border: 2px solid rgba(255,255,255,.18); }

.plan-premium {
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 6px rgba(0,201,167,.15), 0 24px 64px rgba(0,201,167,.20);
  transform: scale(1.03);
  position: relative;
}

/* ── RIBBON "MAIS VANTAJOSO" ── */
.pc-ribbon {
  background: var(--accent);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 0;
}

/* ── CABEÇALHO DO CARD ── */
.pc-header {
  padding: 22px 24px 18px;
  text-align: center;
}

.pc-header--basic  { background: #f1f4f8; border-bottom: 1px solid var(--border); padding: 10px 24px 10px; }
.pc-header--premium {
  background: linear-gradient(150deg, #1B3A6B 0%, #0F2347 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.pc-pill {
  display: inline-block;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 6px;
  background: rgba(0,201,167,.15);
  color: var(--primary);
}

.pc-pill--premium { background: var(--accent); color: var(--dark); }

.pc-plan-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  margin: 6px 0 6px;
  line-height: 1.25;
}

.pc-plan-title--premium { color: #e8edf5; }

.pc-subtitle {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.pc-subtitle--premium { color: rgba(255,255,255,.6); }

/* Destaques Premium */
.pc-highlights {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.pc-hl {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f0fff4;
  border: 1px solid #22c55e;
  color: #15803d;
  text-align: center;
}

.pc-hl--accent {
  background: rgba(0,201,167,.12);
  border-color: var(--accent);
  color: var(--primary);
}

/* ── ÁREA DO MOCKUP ── */
.pc-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  min-height: 260px;
  border-bottom: 1px solid var(--border);
  background: #f7f9fc;
}

.pc-mockup--premium {
  background: linear-gradient(160deg, #162d5a 0%, #0a1c3a 100%);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.pc-mockup img {
  max-width: 100%;
  max-height: 280px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.20));
}

.pc-mockup-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: .78rem;
  text-align: center;
}
.pc-mockup-ph span { font-size: 2.8rem; }
.pc-mockup-ph--dark { color: rgba(255,255,255,.4); }

/* ── CORPO DO CARD ── */
.pc-body {
  padding: 20px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

/* Preço */
.pc-price {
  text-align: center;
  margin-bottom: 16px;
  background: var(--gray-light);
  border-radius: 12px;
  padding: 14px 12px 10px;
}

.pc-price-from {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.pc-price-from s {
  font-weight: 700;
  font-size: .9rem;
  color: #e05252;
}

.pc-price-lbl {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2px;
}

.pc-price-val {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.pc-price-val small { font-size: 1.4rem; font-weight: 700; }

.pc-price-note {
  display: block;
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.pc-price-or {
  display: inline-block;
  margin-top: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  background: rgba(0,201,167,.12);
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 3px 14px;
}
.pc-price-or strong { color: var(--primary); font-weight: 800; }

.pc-price--premium .pc-price-val { color: var(--primary); }
.pc-price--premium { background: rgba(0,201,167,.08); }

.pc-savings-tag {
  background: #f0fff4;
  border: 1.5px solid #22c55e;
  color: #15803d;
  font-size: .78rem;
  font-weight: 700;
  border-radius: 8px;
  padding: 7px 12px;
  text-align: center;
  margin-bottom: 14px;
}

/* Bloco de bônus Premium */
.premium-bonus-block {
  background: var(--accent-light);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  text-align: left;
}

.premium-bonus-label {
  display: block;
  font-size: .72rem;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  text-align: center;
}

.bonus-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bonus-items li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(255,255,255,.6);
  border-radius: 8px;
}

.bonus-items li strong {
  font-size: .83rem;
  color: var(--primary-dark);
  line-height: 1.35;
}

.bonus-items li span {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Features */
.pc-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.pc-features li {
  font-size: .86rem;
  padding-left: 24px;
  position: relative;
  line-height: 1.4;
  color: var(--text);
  text-align: left;
}

.pf-yes::before   { content: '✅'; position: absolute; left: 0; top: 0; font-size: .8rem; }
.pf-bonus::before { content: '🎁'; position: absolute; left: 0; top: 0; font-size: .8rem; }

.pf-no {
  color: var(--text-muted) !important;
  opacity: .5;
}
.pf-no::before { content: '✕'; position: absolute; left: 2px; top: 1px; font-size: .75rem; color: #bbb; }

/* Botões */
.pc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .04em;
  padding: 16px 20px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  margin-bottom: 12px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pc-btn--basic {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.pc-btn--basic:hover { background: var(--primary); color: var(--white); }

.pc-btn--premium {
  background: var(--cta);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(0,201,167,.40);
  animation: pulseCta 2.4s ease-in-out infinite;
}
.pc-btn--premium:hover { transform: scale(1.03); animation-play-state: paused; }

.pc-upsell-hint {
  font-size: .78rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.5;
}
.pc-upsell-hint strong { color: var(--primary); }

.pc-trust {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: .73rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Mobile */
@media (max-width: 680px) {
  .plans-grid { grid-template-columns: 1fr; }
  .plan-premium { transform: none; box-shadow: 0 0 0 4px rgba(0,201,167,.2), 0 16px 40px rgba(0,201,167,.18); }
  .pc-price-val { font-size: 3rem; }
  .pc-mockup { min-height: 380px; padding: 20px 8px; }
  .pc-mockup img { max-height: 440px; width: 96%; }
}

/* ── ANTIGOS (mantidos para não quebrar outras seções) ── */
.premium-savings {
  background: #f0fff4;
  border: 1.5px solid #16A34A;
  border-radius: var(--radius-sm);
  color: #15803d;
  font-size: .84rem;
  font-weight: 700;
  padding: 10px 16px;
  text-align: center;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════
   POPUP UPSELL
═══════════════════════════════════════════ */
.upsell-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}

.upsell-overlay.active { display: flex; }

.upsell-modal {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 36px 32px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.28);
  animation: modalIn .28s cubic-bezier(.22,.68,0,1.2);
  text-align: center;
  max-height: 92vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}

.upsell-close {
  position: absolute;
  top: 14px; right: 16px;
  background: #f1f4f8;
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: .88rem;
  cursor: pointer;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.upsell-close:hover { background: #dde3ec; }

.upsell-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.upsell-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.upsell-highlight {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 6px;
  font-size: 1.5rem;
  white-space: nowrap;
}

.upsell-sub {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.upsell-sub strong { color: var(--primary); font-weight: 800; }

/* Comparação de preços */
.upsell-price-block {
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 18px;
  text-align: center;
}

.upsell-before {
  font-size: .82rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.upsell-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.upsell-lbl {
  font-size: .72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.upsell-val {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.05;
}
.upsell-val small { font-size: 1.4rem; font-weight: 700; }

.upsell-note {
  font-size: .75rem;
  color: var(--text-muted);
}

.upsell-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  font-size: .88rem;
  color: var(--text);
}

.upsell-btn-yes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--cta);
  color: var(--dark);
  font-size: .98rem;
  font-weight: 900;
  letter-spacing: .03em;
  padding: 17px 28px;
  border-radius: 999px;
  width: 100%;
  margin-bottom: 12px;
  box-shadow: 0 6px 24px rgba(0,201,167,.40);
  transition: transform var(--transition), background var(--transition);
}
.upsell-btn-yes:hover { transform: scale(1.03); background: var(--cta-hover); }

.upsell-btn-no {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: .8rem;
  cursor: pointer;
  font-family: var(--font);
  text-decoration: underline;
  padding: 4px;
  transition: color var(--transition);
  letter-spacing: .02em;
}
.upsell-btn-no:hover { color: var(--text); }

@media (max-width: 480px) {
  .upsell-modal  { padding: 32px 18px 24px; }
  .upsell-title  { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════
   GARANTIA — fundo branco
═══════════════════════════════════════════ */
.guarantee { background: var(--white); }

.guarantee-card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid var(--border);
}

.g-shield { flex-shrink: 0; }
.g-shield img { width: 180px; height: auto; display: block; }

.g-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}

.g-content p {
  font-size: .93rem;
  color: var(--text);
  line-height: 1.78;
  margin-bottom: 12px;
}

.g-content p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════
   FAQ — fundo azul escuro
═══════════════════════════════════════════ */
.faq { background: var(--primary); text-align: center; }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: .92rem;
  font-weight: 700;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}

.faq-q:hover { background: var(--accent-light); }

.faq-arrow {
  font-size: .68rem;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-item.open .faq-q { background: var(--accent-light); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease;
}

.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 24px 22px;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════
   CTA FINAL — fundo primário
═══════════════════════════════════════════ */
.final-cta {
  background: var(--primary-dark);
  text-align: center;
  padding: 80px 0;
}

.final-title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.final-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.72;
}

/* ═══════════════════════════════════════════
   RODAPÉ — fundo escuro
═══════════════════════════════════════════ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,.65);
  text-align: center;
  padding: 56px 0 40px;
  content-visibility: auto;
  contain-intrinsic-size: 0 300px;
}

.footer-brand { font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }

.footer-tagline { font-size: .86rem; margin-bottom: 28px; }

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-copy { font-size: .76rem; margin-bottom: 16px; }

.footer-disc {
  font-size: .7rem;
  max-width: 580px;
  margin: 0 auto;
  opacity: .45;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   RESPONSIVO
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  section { padding: 56px 0; }

  .pain, .benefits, .testimonials, .about-product, .bonuses, .offer, .guarantee, .faq, .final-cta, .footer {
    border-radius: 32px 32px 0 0;
    margin-top: -32px;
    padding-top: 72px;
  }

  .hero { padding: 48px 0 44px; }

  .pain-grid,
  .benefits-grid,
  .testi-grid,
  .tangibility-grid,
  .bonuses-grid { grid-template-columns: 1fr; }

  .guarantee-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 22px;
    gap: 18px;
  }

  .how-works { padding: 28px 22px; }

  .offer-body { padding: 24px 22px; }

  .price-val { font-size: 3.2rem; }

  .btn-cta,
  .btn-offer { font-size: .95rem; padding: 16px 28px; }

  .offer-badges { gap: 10px; }

  .img-placeholder--hero { height: 240px; }
}

@media (max-width: 480px) {
  .countdown-inner { font-size: .78rem; }
  .headline { font-size: 1.65rem; }
  .final-title { font-size: 1.6rem; }
  .img-placeholder--hero { height: 200px; }
}

/* Desativa hovers em dispositivos touch */
@media (hover: none) {
  .testi-card:hover,
  .benefit-card:hover,
  .bonus-card:hover,
  .pain-card:hover,
  .tangibility-card:hover { transform: none; }
  .faq-q:hover { background: none; }
  .footer-links a:hover { color: rgba(255,255,255,.65); }
  .btn-cta:hover,
  .btn-offer:hover { transform: none; animation-play-state: running; }
}
