/* Tokens extraidos da pagina controle pv.estudosbiblicos.site */
:root {
  --background: #f8f9fc;
  --foreground: #0f1729;
  --card: #ffffff;
  --primary: #2962ff;
  --primary-light: #5c87ff;
  --muted-foreground: #656e80;
  --accent: #ff791a;
  --success: #21c45d;
  --destructive: #ef4444;
  --border: #dfe3ea;
  --gradient-primary: linear-gradient(135deg, #2962ff, #5c87ff);
  --gradient-hero: linear-gradient(180deg, #f8f9fc, #f1f3f9);
  --shadow-card: 0 4px 24px -8px rgba(31, 55, 122, .08);
  --shadow-cta: 0 14px 40px -12px rgba(41, 98, 255, .5);
  --shadow-glow: 0 0 60px rgba(92, 135, 255, .3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: Inter, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.page { background: var(--gradient-hero); }
/* height:auto e obrigatorio: as imagens tem width/height no HTML (contra layout shift)
   e sem isso o max-width encolhe a largura mas a altura fica presa no atributo, esticando. */
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, h3 { margin: 0; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; margin: 0 auto; padding: 0 32px; }
.narrow-3 { width: 100%; max-width: 768px; margin-left: auto; margin-right: auto; }
.narrow-4 { width: 100%; max-width: 896px; margin-left: auto; margin-right: auto; }
.narrow-5 { width: 100%; max-width: 1024px; margin-left: auto; margin-right: auto; }
.narrow-6 { width: 100%; max-width: 1152px; margin-left: auto; margin-right: auto; }
.centered { text-align: center; }
.left { text-align: left; }
.grad {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ink { color: var(--foreground); }
.primary { color: var(--primary); }
.desktop-only { display: block; }
.mobile-only { display: none; }

h2 { font-size: 30px; line-height: 1.125; letter-spacing: -.025em; }
.head { margin: 0 auto; text-align: center; }
.head h2 + .sub, .sub { margin-top: 12px; color: var(--muted-foreground); }
.kicker {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.kicker.danger { color: var(--destructive); }
.kicker.light { color: rgba(255, 255, 255, .85); }

/* CTA */
.cta {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 20px 32px;
  border: 0;
  border-radius: 16px;
  color: #ffffff;
  background: var(--success);
  box-shadow: var(--shadow-cta);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .025em;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .3s ease, background .3s ease;
}
.cta span { margin-left: 8px; transition: transform .3s ease; }
.cta:hover { transform: translateY(-2px); background: #1eb054; }
.cta:hover span { transform: translateX(4px); }
.cta:active { transform: translateY(0); }
.cta-wrap { width: 100%; max-width: 448px; margin: 32px auto 0; }
.cta-wrap.sm { max-width: 384px; margin-top: 24px; }
.cta-note {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 14px;
}
.cta-note svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Cards */
.card { padding: 24px; border-radius: 16px; background: var(--card); box-shadow: var(--shadow-card); }
.card svg { width: 32px; height: 32px; fill: none; stroke: var(--primary); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-top: 12px; font-size: 18px; font-weight: 700; }
.card > p { margin-top: 8px; color: var(--muted-foreground); font-size: 14px; }

/* Topbar */
.topbar {
  padding: 10px 0;
  color: #ffffff;
  background: var(--gradient-primary);
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Hero */
.hero { position: relative; padding-top: 64px; padding-bottom: 64px; text-align: center; }
.secure-badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin: 0 auto 20px;
  color: var(--accent);
}
.secure-badge svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.secure-badge span { font-size: 12px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 {
  max-width: 896px;
  margin: 0 auto;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -.025em;
}
.hero-img { width: 100%; max-width: 672px; margin: 32px auto 0; }
.hero-sub { max-width: 672px; margin: 24px auto 0; color: var(--muted-foreground); font-size: 18px; }
.trust { display: flex; justify-content: center; margin-top: 32px; }
.trust > div + p, .trust p { color: rgba(15, 23, 41, .8); font-size: 14px; font-weight: 600; }
.trust > * { }
.trust { flex-direction: column; align-items: center; gap: 12px; }
.avatars { display: flex; }
.avatars img { width: 36px; height: 36px; margin-left: -12px; border: 2px solid var(--background); border-radius: 50%; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1); object-fit: cover; }
.avatars img:first-child { margin-left: 0; }

/* Discover / themes */
.discover { padding: 64px 32px; }
.discover-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.discover-grid h2 { font-size: 32px; line-height: 1.15; }
.discover-img { display: flex; justify-content: flex-end; }
.discover-img img { width: 100%; max-width: 384px; border-radius: 16px; }
.themes { padding: 64px 32px; }
.themes .head { margin-bottom: 40px; }
.themes h2 { font-size: 30px; }
.theme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.theme-grid img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-card); }
.theme-more { display: flex; align-items: center; justify-content: center; }
.theme-more p { font-size: 24px; font-weight: 800; font-family: "Plus Jakarta Sans", sans-serif; text-align: center; }

/* Material */
.material { padding: 56px 32px; text-align: center; }
.shout {
  margin-bottom: 16px;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.material h2 { font-size: 36px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; text-align: left; }

/* Timer */
.timer-section { padding: 40px 32px; }
.timer-card {
  max-width: 768px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 24px;
  color: #ffffff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
  text-align: center;
}
.timer-card h3 { margin-bottom: 24px; font-size: 30px; }
.timer { display: flex; gap: 12px; align-items: center; justify-content: center; }
.timer > div { display: flex; flex-direction: column; align-items: center; }
.timer strong {
  padding: 16px 24px;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 48px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.timer span { margin-top: 8px; color: rgba(255, 255, 255, .8); font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.timer b { color: rgba(255, 255, 255, .6); font-size: 30px; }
.timer-note { max-width: 576px; margin: 32px auto 0; color: rgba(255, 255, 255, .9); font-size: 16px; }

/* Ideal for */
.ideal { padding: 64px 32px; }
.ideal h2 { font-size: 36px; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 40px; }
.check-grid.single { grid-template-columns: 1fr; max-width: 448px; margin: 32px auto 0; text-align: left; }
.check-grid li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow-card);
  color: rgba(15, 23, 41, .9);
  line-height: 1.375;
}
.tick {
  display: flex;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--success);
}
.tick svg { width: 14px; height: 14px; fill: none; stroke: #ffffff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* Method */
.method { padding: 64px 32px; }
.method h2 { font-size: 36px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.card.step { position: relative; }
.badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Offer summary */
.offer-section { padding: 48px 32px; }
.offer-card { padding: 48px; border-radius: 24px; background: var(--card); box-shadow: var(--shadow-card); text-align: center; }
.offer-card h2 { font-size: 30px; }
.offer-img { width: 100%; max-width: 448px; margin: 32px auto 0; }
.scarcity {
  max-width: 448px;
  margin: 32px auto 0;
  padding: 16px;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  background: rgba(255, 121, 26, .1);
  color: var(--foreground);
  font-size: 14px;
  text-align: left;
}

/* Bonuses */
.bonuses { padding: 64px 32px; }
.bonuses h2 { font-size: 36px; }
.bonus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card.bonus { padding: 32px; }
.card.bonus img { width: 100%; height: 256px; margin-bottom: 24px; border-radius: 12px; object-fit: contain; }
.card .bonus-label { margin-top: 0; color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card.bonus h3 { margin-top: 8px; font-size: 24px; }
.card.bonus > p:not(.bonus-label):not(.value) { margin-top: 12px; color: var(--muted-foreground); font-size: 16px; }
.card .value {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(33, 196, 93, .1);
  color: var(--success);
  font-size: 16px;
  font-weight: 700;
}
.card .value .dot { color: transparent; }

/* Pricing */
.pricing { padding: 64px 32px; scroll-margin-top: 32px; }
.pricing h2 { font-size: 36px; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.price-card h3 { font-size: 24px; font-weight: 700; }
.price-card h3.big { font-size: 30px; font-weight: 800; }
.plan-sub { margin-top: 4px; color: var(--muted-foreground); font-size: 16px; }
.price-card > img { width: 100%; height: 288px; margin: 24px auto 0; object-fit: contain; }
.popular {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.all-bonuses { display: flex; gap: 8px; align-items: center; margin-bottom: 4px; }
.all-bonuses svg { width: 16px; height: 16px; flex: 0 0 auto; fill: none; stroke: var(--accent); stroke-width: 2; stroke-linejoin: round; }
.all-bonuses p { color: var(--muted-foreground); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.plan-list { display: grid; gap: 12px; margin-top: 24px; }
.plan-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.plan-list svg { width: 20px; height: 20px; flex: 0 0 auto; margin-top: 2px; fill: none; stroke: var(--success); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.plan-list li.off span { color: rgba(101, 110, 128, .6); text-decoration: line-through; }
.plan-list li.off svg { stroke: rgba(101, 110, 128, .35); }
.price-block { margin-top: 32px; text-align: center; }
.was { color: var(--muted-foreground); font-size: 14px; text-decoration: line-through; }
.price { font-family: "Plus Jakarta Sans", sans-serif; font-size: 48px; font-weight: 800; line-height: 1.1; }
.pay { color: var(--muted-foreground); font-size: 14px; }
.save {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(33, 196, 93, .1);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
}
.price-cta { margin-top: auto; padding-top: 32px; }

/* Guarantee */
.guarantee-section { padding: 48px 32px; }
.guarantee {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 48px;
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-card);
}
.guarantee-seal { flex: 0 0 auto; width: clamp(140px, 16vw, 170px); height: auto; }
.guarantee h3 { font-size: 30px; font-weight: 700; }
.guarantee p { margin-top: 8px; color: var(--muted-foreground); font-size: 18px; }

/* Reviews */
.reviews { padding: 64px 32px; }
.reviews h2 { font-size: 36px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card.review { display: flex; flex-direction: column; }
.stars { margin-bottom: 12px; color: var(--accent); font-size: 14px; letter-spacing: .1em; }
.card.review > p { margin: 0; color: rgba(15, 23, 41, .9); font-size: 14px; line-height: 1.625; }
.who { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.who .name { font-size: 14px; font-weight: 700; }
.who .role { color: var(--muted-foreground); font-size: 12px; }

/* FAQ */
.faq { padding: 64px 32px; }
.faq h2 { font-size: 36px; }
.accordion { display: grid; gap: 12px; margin-top: 40px; }
.accordion details { padding: 0 24px; border-radius: 16px; background: var(--card); box-shadow: var(--shadow-card); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.chev { width: 16px; height: 16px; flex: 0 0 auto; margin-left: 16px; border-right: 2px solid var(--muted-foreground); border-bottom: 2px solid var(--muted-foreground); transform: rotate(45deg) translate(-3px, -3px); transition: transform .2s ease; }
.accordion details[open] .chev { transform: rotate(225deg) translate(-3px, -3px); }
.accordion div { padding-bottom: 16px; color: var(--muted-foreground); font-size: 14px; line-height: 1.6; }

/* Final CTA */
.final-cta { padding: 64px 0; color: #ffffff; background: var(--gradient-primary); text-align: center; }
.final-cta .pill {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.timer-row { margin: 24px 0; }
.final-cta h2 { font-size: 36px; }
.final-sub { margin-top: 12px; color: rgba(255, 255, 255, .9); font-size: 18px; }

/* Footer */
footer { padding: 48px 0; color: rgba(248, 249, 252, .7); background: var(--foreground); text-align: center; font-size: 14px; }
footer .container > p + p { margin-top: 12px; }
footer .brand { color: var(--background); font-weight: 600; }
footer .small { font-size: 12px; }
footer .legal { max-width: 672px; margin-left: auto; margin-right: auto; line-height: 1.625; }

/* ---------- responsive ---------- */

/* breakpoints da controle: sm 640, md 768, lg 1024 */

@media (max-width: 1023px) {
  .bonus-grid, .review-grid, .price-grid { grid-template-columns: 1fr; }
  .feature-grid, .step-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 60px; }
  .popular { white-space: normal; }
}

@media (max-width: 767px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
  .hero h1 { font-size: 48px; }
}

@media (max-width: 639px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .discover, .themes, .material, .timer-section, .ideal, .method,
  .offer-section, .bonuses, .pricing, .guarantee-section, .reviews, .faq { padding-left: 16px; padding-right: 16px; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .br-desktop { display: none; }
  h2, .material h2, .ideal h2, .method h2, .bonuses h2,
  .pricing h2, .reviews h2, .faq h2, .final-cta h2, .themes h2 { font-size: 30px; }
  .offer-card h2 { font-size: 24px; }
  .shout { font-size: 30px; }
  .feature-grid, .step-grid, .check-grid { grid-template-columns: 1fr; }
  .card h3 { font-size: 24px; }
  .card > p { font-size: 16px; }
  .timer-card { padding: 32px; }
  .timer-card h3 { font-size: 24px; }
  .timer strong { font-size: 36px; padding: 16px 20px; }
  .timer-note { font-size: 18px; }
  .offer-card { padding: 32px; }
  .guarantee { flex-direction: column; padding: 32px; text-align: center; }
  .guarantee-seal { width: 200px; }
  .guarantee h3 { font-size: 24px; }
  .guarantee p { font-size: 16px; }
  .final-sub { font-size: 16px; }
  .price-card > img { height: 256px; }
}
