:root {
  --red: #E5342A;
  --red-dark: #C4241C;
  --green: #16A34A;
  --green-dark: #0E7C37;
  --ink: #0F172A;
  --blue-text: #2952A3;
  --blue-light: #EAF2FF;
  --blue-pill-text: #2563EB;
  --bg: #F7F8FA;
  --card-border: #E7E9EE;
  --muted: #52607A;
  --yellow-bg: #FFF9E9;
  --yellow-border: #F5D98B;
  --amber-pill: #FDE9C8;
  --amber-text: #8A5A0A;
}
 
* {
  box-sizing: border-box;
}
 
html, body {
  margin: 0;
  padding: 0;
}
 
html {
  scroll-behavior: smooth;
}
 
body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
 
a {
  text-decoration: none;
  color: inherit;
}
 
img {
  max-width: 100%;
  height: auto;
  display: block;
}
 
/* Top offer bar */
.offer-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* Evita quebra em telas muito pequenas */
  gap: 8px;
  letter-spacing: .2px;
}
 
.offer-bar .timer {
  background: #1a1a1a;
  color: #FFD34D;
  font-variant-numeric: tabular-nums;
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
}
 
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}
 
/* HERO */
.hero {
  padding: 56px 24px 24px;
  text-align: center;
}
 
.hero h1 {
  /* clamp() ajusta o tamanho da fonte fluidamente entre 34px (mobile) e 52px (desktop) */
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 22px;
  letter-spacing: -0.5px;
}
 
.hero h1 .no {
  color: var(--green);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}
 
.hero .sub {
  max-width: 680px;
  margin: 0 auto 40px;
  /* clamp() para o subtítulo */
  font-size: clamp(16px, 3vw, 20px);
  line-height: 1.5;
}
 
.hero .sub b { color: var(--ink); font-weight: 800; }
.hero .sub span { color: var(--blue-text); font-weight: 600; }
 
.hero-img-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 12px 32px rgba(15,23,42,0.08);
}
 
.hero-img-card img {
  border-radius: 12px;
  width: 100%;
}
 
/* Social proof pill */
.proof-pill {
  max-width: 640px;
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  font-weight: 800;
  font-size: clamp(13px, 2.5vw, 16px);
  box-shadow: 0 4px 14px rgba(15,23,42,0.04);
}
 
/* CTA button */
.cta-btn {
  display: block;
  width: 100%;
  max-width: 640px;
  margin: 28px auto 0;
  background: linear-gradient(180deg, #22C55E 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 20px 20px;
  border-radius: 999px;
  font-weight: 900;
  font-size: clamp(15px, 3vw, 19px);
  letter-spacing: .3px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(22,163,74,0.3);
  transition: all 300ms ease-in-out;
}
 
.cta-btn:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 14px 30px rgba(22,163,74,.38);
}
 
.cta-btn:focus-visible {
  outline: 3px solid var(--blue-pill-text);
  outline-offset: 4px;
}
 
.cta-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  margin: 14px 0 0;
}
 
hr.section-rule {
  border: none;
  border-top: 1px solid var(--card-border);
  max-width: 960px;
  margin: 48px auto;
}
 
/* eyebrow pill */
.eyebrow {
  display: block;
  width: max-content;
  max-width: calc(100% - 24px);
  margin: 0 auto 20px;
  background: var(--blue-light);
  color: var(--blue-pill-text);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .4px;
  padding: 8px 18px;
  border-radius: 999px;
  text-align: center;
}
 
.eyebrow.amber {
  background: var(--amber-pill); 
  color: #B45309;
}
 
.section-title {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 36px;
  font-size: clamp(20px, 4vw, 26px);
  line-height: 1.5;
  font-weight: 800;
  color: var(--blue-text);
}
 
/* feature grid (Fluid Grid Automático) */
.grid5 {
  display: grid;
  /* Cria colunas automaticamente sem precisar de media query */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}
 
.feat-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 20px 18px;
  transition: border-color 150ms ease-in-out;
  min-width: 0;
}
 
.feat-card:hover {
  border-color: rgb(107, 188, 255);
}
 
.feat-card .emoji { font-size: 26px; margin-bottom: 12px; }
.feat-card h3 { font-size: 16px; margin: 0 0 8px; font-weight: 800; word-wrap: break-word; }
.feat-card p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; word-wrap: break-word; }
 
/* bonus banner */
.bonus-banner-wrap { max-width: 680px; margin: 56px auto 0; padding: 0 24px; }
 
.bonus-tag {
  display: block; width: max-content; max-width: 100%; margin: 0 auto 18px;
  background: var(--amber-pill); color: var(--amber-text);
  font-weight: 800; font-size: 13px; padding: 8px 18px; border-radius: 999px;
  text-align: center;
}
 
.bonus-banner {
  border: 2px solid var(--yellow-border);
  background: var(--yellow-bg);
  border-radius: 20px;
  padding: 30px 24px 34px;
  text-align: center;
}
 
.bonus-banner .included-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg,#22C55E,var(--green-dark));
  color: #fff; font-weight: 800; font-size: 14px;
  padding: 10px 20px; border-radius: 999px; margin-bottom: 18px;
  text-align: center;
}
 
.bonus-banner .save {
  color: var(--green-dark);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 900;
  margin: 0 0 10px;
}
 
.bonus-banner .save-sub {
  color: var(--muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}
 
/* bonus item cards */
.bonus-item {
  max-width: 880px;
  margin: 22px auto 0;
  background: #fff;
  border: 2px solid var(--yellow-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: transform 300ms ease-in-out;
}
 
.bonus-item img {
  width: 170px; 
  height: 130px; 
  object-fit: cover; 
  border-radius: 10px; 
  flex-shrink: 0;
}
 
.bonus-item:hover {
  transform: translateY(-3px);
}
 
.bonus-tagnum {
  display: inline-block;
  background: var(--amber-pill); color: var(--amber-text);
  font-weight: 800; font-size: 12px; padding: 5px 12px; border-radius: 999px;
  margin-bottom: 10px;
}
 
.bonus-item h4 { font-size: 19px; font-weight: 800; color: var(--blue-text); margin: 0 0 8px; word-wrap: break-word; }
.bonus-item p { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0 0 10px; word-wrap: break-word; }
.bonus-item .price-line { font-size: 14px; }
.bonus-item .price-line del { color: #94A3B8; }
.bonus-item .price-line .free { color: var(--green-dark); font-weight: 800; }
 
/* stats / testimonials section */
.testimonial-section {
  background: #F1F4F9;
  padding: 64px 24px;
  margin-top: 56px;
}
 
.testimonial-section .eyebrow { background: var(--blue-light); color: var(--blue-pill-text); }
 
.testimonial-section h2 {
  text-align: center; font-size: clamp(24px, 4vw, 36px); font-weight: 900; margin: 0 0 16px;
}
 
.testimonial-section .lead {
  text-align: center; max-width: 640px; margin: 0 auto 36px;
  color: var(--muted); font-size: 16px; line-height: 1.6;
}
 
/* Stats Row (Fluid Grid Automático) */
.stats-row {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
  gap: 16px;
  max-width: 960px; margin: 0 auto 28px;
}
 
.stat-card {
  background: #fff; border-radius: 14px; padding: 20px;
  text-align: center; box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  min-width: 0;
}
 
.stat-card .icon { font-size: 20px; margin-bottom: 8px; }
.stat-card .num { font-size: 24px; font-weight: 900; }
.stat-card .label { font-size: 13px; color: var(--muted); font-weight: 700; }
 
.rating-pill {
  display: block; width: max-content; max-width: calc(100% - 24px); margin: 0 auto 30px;
  background: #FFF6DF; border: 1px solid #F5D98B;
  color: #8A5A0A; font-weight: 800; font-size: 14px;
  padding: 10px 20px; border-radius: 999px;
  text-align: center;
}
 
.comments-card {
  max-width: 760px; margin: 0 auto; background: #fff;
  border-radius: 16px; padding: 24px; box-shadow: 0 2px 10px rgba(15,23,42,0.05);
}
 
.comments-head {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 800; font-size: 15px; margin-bottom: 18px; color: var(--muted);
  gap: 10px;
  flex-wrap: wrap;
}
 
.comment { padding: 16px 0; border-top: 1px solid #EEF0F4; }
.comment:first-of-type { border-top: none; }
.comment-row { display: flex; gap: 12px; }
 
.avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,#F59E0B,#EF4444);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 14px;
}
 
.comment-body { flex: 1; min-width: 0; }
.comment-body .name { font-weight: 800; font-size: 14.5px; margin-bottom: 2px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.comment-body .name .badge {
  background: var(--blue-light); color: var(--blue-pill-text);
  font-size: 11px; font-weight: 800; padding: 2px 8px; border-radius: 999px; margin-left: 0;
}
.comment-body p { margin: 4px 0 8px; font-size: 14.5px; color: #33415e; line-height: 1.55; word-wrap: break-word; }
.comment-meta { font-size: 12.5px; color: var(--muted); font-weight: 700; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.comment.reply { margin-left: 50px; }
 
/* pricing */
.pricing-section { padding: 64px 24px 20px; text-align: center; }
.pricing-section .eyebrow { background: var(--blue-light); color: var(--blue-pill-text); }
.pricing-section h2 { font-size: clamp(24px, 4vw, 32px); font-weight: 900; margin: 0 0 26px; line-height: 1.35; }
.payment-note { color: var(--muted); font-weight: 700; font-size: 14px; margin-bottom: 18px; }
 
.promo-warning {
  max-width: 640px; margin: 0 auto 26px;
  background: var(--yellow-bg); border: 1px solid var(--yellow-border);
  border-radius: 12px; padding: 14px 18px;
  color: #7A5200; font-weight: 700; font-size: 14.5px;
}
 
.pricing-lead { max-width: 680px; margin: 0 auto 40px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }
 
.plans {
  display: grid; 
  /* Ajuste automático para as colunas. Em telas menores ele quebra para 1 coluna */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap: 24px;
  max-width: 900px; margin: 0 auto; align-items: start; text-align: left;
}
 
.plan-card {
  background: #fff; border: 1px solid var(--card-border); border-radius: 18px;
  padding: 28px;
  transition: transform 300ms ease-in-out;
  min-width: 0;
}
 
.plan-card.premium {
  border: 2px solid var(--green); padding: 30px; position: relative;
  box-shadow: 0 12px 30px rgba(22,163,74,0.12);
}
 
.plan-card.premium:hover {
  transform: translateY(-5px);
}
 
.plan-eyebrow { font-size: 12px; font-weight: 800; color: #94A3B8; letter-spacing: .5px; margin-bottom: 6px; }
.plan-name { font-size: 22px; font-weight: 900; margin: 0 0 6px; }
.plan-was { color: #94A3B8; text-decoration: line-through; font-size: 14px; margin-bottom: 2px; }
.plan-price { font-size: 34px; font-weight: 900; margin: 4px 0 2px; }
.plan-price small { font-size: 18px; font-weight: 800; }
.plan-price.green { color: var(--green-dark); font-size: 38px; }
.plan-price.green small { font-size: 20px; }
.plan-billing { font-size: 13px; color: var(--muted); font-weight: 700; margin-bottom: 20px; }
 
.badges-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.pill-badge { font-size: 11.5px; font-weight: 800; padding: 6px 12px; border-radius: 999px; }
.pill-badge.green { background: linear-gradient(180deg,#22C55E,var(--green-dark)); color: #fff; }
.pill-badge.amber { background: var(--amber-pill); color: #8A5A0A; }
.pill-badge.mint { background: #E7FBEF; color: #0E7C37; }
.pill-badge.blue { background: var(--blue-light); color: var(--blue-pill-text); }
 
.plan-features { list-style: none; margin: 0 0 24px; padding: 0; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; margin-bottom: 12px; color: #334155; }
.plan-features li .check { color: var(--green); font-weight: 900; }
.plan-features.premium li { font-weight: 700; }
 
.plan-btn {
  display: block; text-align: center; width: 100%;
  padding: 16px; border-radius: 999px; font-weight: 800; font-size: 14.5px;
  border: none; cursor: pointer;
  transition: all 300ms ease-in-out;
}
 
.plan-btn.basic { background: #E9EDF3; color: #334155; }
.plan-btn.basic:hover { background: #c0c3c9; }
.plan-btn.basic:focus-visible { outline: 3px solid #334155; outline-offset: 4px;}
 
.plan-btn.premium {
  background: linear-gradient(180deg,#22C55E,var(--green-dark)); color: #fff;
  font-size: 16px; padding: 18px; box-shadow: 0 10px 24px rgba(22,163,74,.3);
}
.plan-btn.premium:hover { background: linear-gradient(180deg,#199246,var(--green-dark)); }
.plan-btn.premium:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
 
.plan-guarantee { text-align: center; font-size: 12.5px; color: var(--muted); font-weight: 700; margin-top: 12px; }
 
/* =========================================
   MODAL / POP-UP DE UPSELL
   ========================================= */
 
/* Overlay Escuro */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75); /* Usando a base da sua cor --ink */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(3px);
  padding: 16px;
  overflow-y: auto;
}
 
.modal-overlay-open {
  display: flex;
}
 
/* Container do Modal */
.modal-container {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  padding: 28px 20px;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
 
/* Botão Fechar */
.close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
 
.close-btn:hover {
  background: var(--card-border);
}
 
/* Cabeçalho do Modal */
.modal-header {
  text-align: center;
}
 
.modal-header h2 {
  font-size: clamp(19px, 4vw, 24px);
  color: var(--ink);
  margin: 12px 0 12px 0;
  line-height: 1.3;
  font-weight: 900;
}
 
.modal-header p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
 
/* Lista de Benefícios */
.features-list {
  list-style: none;
  padding: 16px;
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
 
.features-list li {
  font-size: 14.5px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
 
 
 
/* Caixa de Preço */
.pricing-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.price-text {
  border: solid 2px var(--green);
  padding-block: 16px;
  padding-inline: 24px;
  text-align: center;
  font-weight: 900;
  border-radius: 16px;
  font-size: 15px;
  background-color: #16a34a31;
}
 
.modal-price-text {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
}
 
.modal-strikethrough {
  text-decoration: line-through;
  color: var(--muted);
  margin: 0 4px;
}
 
.modal-highlight {
  color: var(--green-dark);
  font-size: 20px;
  font-weight: 900;
}
 
/* Tag de Economia (Usando seu verde "mint") */
.savings-badge {
  border: solid 1px var(--green);
  background: #E7FBEF;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
}
 
/* Botões de Ação */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}
 
.cta-primary {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
  transition: transform 0.15s, box-shadow 0.15s;
}
 
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
}
 
.cta-primary:active {
  transform: translateY(2px);
  box-shadow: 0 2px 10px rgba(22, 163, 74, 0.2);
}
 
.cta-secondary {
  background: #E9EDF3;
  color: var(--muted);
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
 
.cta-secondary:hover {
  background: var(--card-border);
  color: var(--ink);
}
 
/* Rodapé do Modal */
.modal-footer {
  text-align: center;
}
 
.modal-footer p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700;
}
 
/* FAQ */
.faq-section { padding: 64px 24px 80px; max-width: 820px; margin: 0 auto; }
.faq-section .eyebrow { background: var(--blue-light); color: var(--blue-pill-text); }
.faq-section h2 { text-align: center; font-size: clamp(24px, 4vw, 32px); font-weight: 900; margin: 0 0 34px; }
 
.faq-item {
  background: #fff; border: 1px solid var(--card-border); border-radius: 12px;
  margin-bottom: 14px; overflow: hidden;
}
 
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer; font-weight: 800; font-size: 15px;
  color: var(--blue-text);
  /* Acessibilidade em elementos clicáveis */
  user-select: none;
  gap: 12px;
}
 
.faq-q:focus-visible {
  outline: 2px solid var(--blue-pill-text);
  outline-offset: -2px;
}
 
.faq-q .arrow { transition: transform .25s ease; color: var(--muted); font-size: 14px; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
 
.faq-a { 
  max-height: 0; 
  overflow: hidden; 
  transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1); 
}
 
.faq-a p { padding: 0 20px 20px; margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.faq-item.open .faq-a { max-height: 500px; } /* Ajustado o max-height para comportar textos mais longos */
 
/* =========================================
   MEDIA QUERIES RESPONSIVAS
   ========================================= */
@media (max-width: 860px) {
  /* A maior parte das quebras agora é lidada pelo flex-wrap, clamp e grid-auto-fit */
  .bonus-item { flex-direction: column; }
  .bonus-item img { width: 100%; height: auto; aspect-ratio: 16/9; }
  .comment.reply { margin-left: 20px; }
}
 
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .hero { padding: 40px 16px 20px; }
  .hero-img-card { padding: 10px; border-radius: 16px; }
  .offer-bar { font-size: 13px; padding: 10px 8px; }
  .offer-bar .timer { font-size: 13px; }
  .cta-btn { padding: 18px 16px; }
  .bonus-banner-wrap { padding: 0 16px; }
  .bonus-item { padding: 16px; gap: 16px; }
  .comments-card { padding: 18px; }
  .plan-card, .plan-card.premium { padding: 22px; }
  .modal-container { padding: 24px 16px; }
  hr.section-rule { margin: 36px auto; }
}
 
@media (max-width: 400px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .grid5 { grid-template-columns: repeat(2, 1fr); }
}