/* ==========================================================================
   Scripts Prontos de Vendas — página estática (HTML + CSS puro)
   ========================================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --orange: #fa4e05;
  --red: #dc0505;
  --red-bright: #ff3200;
  --green-1: #00ae16;
  --green-2: #00c60f;
  --offer-bg: #ec490b;
  --gray-muted: #9a9a9a;
  --gray-border: #858585;

  --font-display: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --max-width: 780px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

section { padding: 0; }

.on-white { background: var(--white); color: var(--black); }
.on-black { background: var(--black); color: var(--white); }

.accent-orange { color: var(--orange); }
.accent-red { color: var(--red-bright); font-weight: 700; }
.accent-white { color: var(--white); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

/* ---------- Top bar ---------- */
.topbar {
  background: linear-gradient(120deg, var(--orange) 20%, var(--red) 100%);
  text-align: center;
  padding: 14px 16px;
}
.topbar p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

/* ---------- Hero ---------- */
.hero {
  background: radial-gradient(circle at 50% 0%, #1a0a02 0%, #000 60%);
  text-align: center;
}
.hero .container {
  padding-top: 56px;
}
.hero h1 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}
.hero-img {
  max-width: 100%;
  width: 720px;
  margin: 0 auto 8px;
}
.hero-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
}
.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(250, 78, 5, 0.22) 0%, rgba(0, 0, 0, 0.7) 100%);
  border: 1px solid var(--orange);
  border-radius: 999px;
  padding: 8px 14px;
  white-space: nowrap;
}
.badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid var(--white);
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

/* ---------- CTA buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  text-align: center;
  border-radius: 40px;
  padding: 16px 36px;
  border: 1px solid var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(158deg, var(--orange) 36%, var(--red) 88%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(250, 78, 5, 0.35);
}
.btn-secondary {
  background: linear-gradient(158deg, var(--green-1) 36%, var(--green-2) 88%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 198, 15, 0.3);
}
.btn-ghost {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  padding: 10px 24px;
  cursor: default;
}
.btn-wrap { text-align: center; margin: 24px 0; }

/* ---------- Nicho ---------- */
.nicho { text-align: center; }
.nicho h2 { font-size: 26px; }
.nicho-sub {
  font-size: 16px;
  font-weight: 300;
  color: #cfcfcf;
  margin-bottom: 24px;
}
.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tag-list li {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--orange);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 18px;
}

/* ---------- A venda não trava no produto ---------- */
.meta-ads { text-align: center; }
.meta-ads h2 { font-size: 26px; }
.meta-ads p { font-size: 17px; font-weight: 300; }

/* ---------- Benefícios (white section) ---------- */
.beneficios { text-align: center; }
.beneficios h2 { font-size: 22px; }
.card-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.benefit-card {
  background: var(--black);
  color: var(--white);
  border-radius: 11px;
  padding: 20px;
}
.benefit-card p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.35;
  margin: 0;
}
.beneficios .doubt-heading { font-size: 24px; margin-top: 32px; }

.proof-quote {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: #f6f6f6;
  border-radius: 0 10px 10px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
}

/* ---------- Sla / o que vai receber ---------- */
.oferta-conteudo { text-align: center; }
.oferta-conteudo h2 { font-size: 24px; }

/* ---------- Entregáveis ---------- */
.entregavel-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 32px;
  text-align: left;
}
.entregavel-card {
  background: linear-gradient(160deg, #2a1206 0%, #000 65%);
  border: 1px solid var(--orange);
  border-radius: 14px;
  padding: 16px 20px;
}
.entregavel-card p {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  font-weight: 300;
  margin: 0;
}
.entregavel-card p::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
}

/* ---------- Bônus ---------- */
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.bonus-card {
  position: relative;
  background: linear-gradient(160deg, #2a1206 0%, #000 65%);
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 36px 20px 24px;
  text-align: center;
}
.bonus-gift {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 34px;
  line-height: 1;
}
.bonus-mockup {
  background: #111;
  border: 1px solid #3a2013;
  border-radius: 10px;
  overflow: hidden;
  max-width: 320px;
  margin: 0 auto 20px;
}
.bonus-mockup-bar {
  display: flex;
  gap: 5px;
  padding: 8px 10px;
  background: #1c1c1c;
}
.bonus-mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4a4a4a;
}
.bonus-mockup-body {
  display: flex;
  gap: 6px;
  padding: 14px;
}
.bonus-mockup-block {
  flex: 1;
  height: 70px;
  border-radius: 6px;
}
.bonus-mockup-block.block-a { background: linear-gradient(160deg, var(--orange) 0%, #3a1503 100%); }
.bonus-mockup-block.block-b { background: #2a2a2a; }
.bonus-mockup-block.block-c { background: linear-gradient(160deg, #3a3a3a 0%, #161616 100%); }
.bonus-title {
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 12px;
}
.bonus-desc {
  font-size: 15px;
  font-weight: 300;
  color: #d9d9d9;
  max-width: 380px;
  margin: 0 auto 20px;
}
.bonus-price {
  display: inline-block;
  border: 1px solid var(--gray-border);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
}
.bonus-price s { color: var(--gray-muted); }

/* ---------- Oferta final ---------- */
.oferta-final {
  background: linear-gradient(160deg, var(--offer-bg) 0%, #b83206 100%);
  text-align: center;
}
.oferta-final h2 { font-size: 22px; color: var(--white); }
.offer-card {
  background: var(--black);
  border: 1px solid var(--white);
  border-radius: 20px;
  padding: 28px 20px;
  margin-top: 20px;
}
.offer-card-img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto 20px;
  border-radius: 12px;
}
.offer-card h3 {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
}
.offer-card .lifetime-badge {
  display: inline-block;
  margin: 16px 0;
}
.offer-card .price-was {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin: 20px 0 4px;
}
.offer-card .price-was s { opacity: 0.7; }
.offer-card .price-now {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 24px;
}
.offer-card .price-now .currency { font-size: 24px; vertical-align: super; margin-right: 4px; }
.offer-card .payment-note {
  margin: 20px 0 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--gray-muted);
}

/* ---------- Garantia (white) ---------- */
.garantia { text-align: center; }
.garantia h2 { font-size: 24px; }
.garantia p { font-size: 16px; }

/* ---------- Sobre / bio (black) ---------- */
.sobre { text-align: center; }
.sobre-foto {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 50%;
  border: 3px solid var(--orange);
  margin: 0 auto 24px;
}
.sobre h2 { font-size: 24px; }
.sobre p {
  text-align: left;
  font-weight: 300;
  font-size: 16px;
}

/* ---------- FAQ (white) ---------- */
.faq h2 { text-align: center; font-size: 22px; margin-bottom: 24px; }
.faq details {
  border-bottom: 1px solid #e2e2e2;
  padding: 16px 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .icon {
  flex: none;
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}
.faq details[open] summary .icon { transform: rotate(180deg); }
.faq .faq-answer {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 400;
  color: #333;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--gray-border);
  text-align: center;
  padding: 32px 20px 40px;
}
.site-footer h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-muted);
  margin-bottom: 8px;
}
.site-footer p {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ==========================================================================
   Responsive — desktop enhancements
   ========================================================================== */
@media (min-width: 640px) {
  .hero h1 { font-size: 38px; }
  .nicho h2, .meta-ads h2 { font-size: 32px; }
  .beneficios h2 { font-size: 28px; }
  .beneficios .doubt-heading { font-size: 30px; }
  .oferta-conteudo h2 { font-size: 28px; }
  .oferta-final h2 { font-size: 26px; }
  .offer-card .price-now { font-size: 84px; }
  .garantia h2 { font-size: 30px; }
  .sobre h2 { font-size: 30px; }
  .faq h2 { font-size: 28px; }

  .hero-badges { gap: 12px; }
  .hero-badges li { font-size: 15px; gap: 10px; padding: 12px 20px; }
  .badge-check { width: 20px; height: 20px; font-size: 12px; }

  .card-grid { flex-direction: row; flex-wrap: wrap; }
  .benefit-card { flex: 1 1 calc(50% - 6px); }

  .bonus-grid { flex-direction: row; flex-wrap: wrap; }
  .bonus-card { flex: 1 1 calc(50% - 12px); }

  .entregavel-grid { flex-direction: row; flex-wrap: wrap; }
  .entregavel-card { flex: 1 1 calc(50% - 6px); }
}

@media (min-width: 900px) {
  .hero h1 { font-size: 44px; }
  .offer-card .price-now { font-size: 98px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .faq summary .icon { transition: none; }
}
