/* ==================== DESIGN TOKENS ==================== */
:root {
  --navy: #0f2942; /* cor primária — fundo escuro */
  --navy-panel: #173a5c; /* painéis navy mais claros */
  --navy-deep: #0a1e31; /* navy quase preto (barra topo/footer) */
  --gold: #c9a227; /* cor de destaque — CTAs e ênfase */
  --gold-bright: #e7c24a; /* dourado hover/brilho */
  --cream: #faf7f0; /* fundo neutro claro */
  --cream-soft: #f1ebdd; /* seção alternada suave */
  --ink: #1d2a38; /* texto sobre claro */
  --ink-soft: #4b5a69; /* texto secundário sobre claro */
  --line: #e3dac5; /* linhas/bordas suaves */
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 41, 66, 0.16);
  --radius: 16px;
}

/* ==================== RESET / BASE ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.12;
  font-weight: 900;
}
p {
  font-size: 1.06rem;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 22px;
}
.narrow {
  max-width: 760px;
}

/* ==================== BARRA DE URGÊNCIA ==================== */
.urgency-bar {
  background: linear-gradient(90deg, var(--navy-deep), var(--navy-panel));
  color: var(--cream);
  text-align: center;
  padding: 11px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.urgency-bar .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 0 0 rgba(231, 194, 74, 0.7);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(231, 194, 74, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(231, 194, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(231, 194, 74, 0);
  }
}
.countdown {
  font-variant-numeric: tabular-nums;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ==================== BOTÃO CTA ==================== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  text-decoration: none;
  padding: 20px 34px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  box-shadow:
    0 12px 26px rgba(201, 162, 39, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    filter 0.16s;
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
}
.cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(201, 162, 39, 0.55);
  filter: brightness(1.04);
}
.cta:active {
  transform: translateY(-1px);
}
.cta:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}
.cta .arrow {
  font-size: 1.25em;
  line-height: 1;
}
.cta-note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-top: 14px;
  text-align: center;
}
.cta-note.on-dark {
  color: #b9c6d4;
}

/* ==================== HERO ==================== */
.hero {
  background:
    radial-gradient(
      1100px 500px at 80% -10%,
      rgba(201, 162, 39, 0.18),
      transparent 60%
    ),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--cream);
  padding: 64px 0 76px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  /* linha "fenda de cofrinho" — motivo dos Três Potes */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 26px,
    transparent 26px 46px
  );
  opacity: 0.5;
}
.eyebrow {
  display: inline-block;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 162, 39, 0.4);
  border-radius: 40px;
  padding: 7px 16px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
  max-width: 16ch;
}
.hero h1 .hl {
  color: var(--gold-bright);
  font-style: italic;
}
.hero .sub {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: #d9e2ec;
  max-width: 60ch;
  margin-bottom: 34px;
}
.hero .cta {
  font-size: 1.24rem;
  padding: 22px 40px;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 26px;
  font-size: 0.92rem;
  color: #afc0d2;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-row .ic {
  color: var(--gold-bright);
}

/* ==================== SEÇÕES / RITMO ==================== */
section {
  padding: 76px 0;
}
.sec-light {
  background: var(--cream);
}
.sec-soft {
  background: var(--cream-soft);
}
.sec-navy {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: var(--cream);
}
.sec-navy h2,
.sec-navy h3 {
  color: var(--white);
}
.section-label {
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 14px;
}
h2.sec-title {
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  text-align: center;
  letter-spacing: -0.4px;
  margin-bottom: 16px;
}
.sec-navy .section-label {
  color: var(--gold-bright);
}
.lead-intro {
  text-align: center;
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 auto 10px;
}

h2.sec-title.alinhar-esquerda {
  text-align: left;
}

/* ==================== LEAD / DOR ==================== */
.lead-block {
  max-width: 740px;
  margin: 0 auto;
}
.lead-block p {
  margin-bottom: 22px;
  font-size: 1.14rem;
  color: #25384a;
}
.lead-block p.opening {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--navy);
}
.lead-block .reveal {
  border-left: 4px solid var(--gold);
  padding: 6px 0 6px 22px;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.08), transparent);
  border-radius: 0 8px 8px 0;
}
.lead-block strong {
  color: var(--navy);
}

/* ==================== BULLETS / BENEFÍCIOS ==================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.benefit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius);
  padding: 24px 24px 24px 22px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  transition:
    transform 0.2s,
    border-color 0.2s,
    background 0.2s;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}
.benefit .check {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 4px 10px rgba(201, 162, 39, 0.4);
}
.benefit p {
  font-size: 1rem;
  color: #e4ecf4;
  margin: 0;
}
.benefit p b {
  color: var(--gold-bright);
  font-weight: 700;
}

/* ==================== APRESENTAÇÃO PRODUTO + MOCKUP ==================== */
.product {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: center;
}
.product .copy h2 {
  text-align: left;
}
.product .copy p {
  color: #26394b;
  margin-bottom: 18px;
  font-size: 1.08rem;
}
.product .copy .kicker {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

/* --- Mockup do e-book em CSS puro --- */
.book-stage {
  display: flex;
  justify-content: center;
  perspective: 1600px;
}
.book {
  position: relative;
  width: 290px;
  height: 410px;
  transform: rotateY(-16deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 30px 40px rgba(10, 30, 49, 0.45));
}
.book:hover {
  transform: rotateY(-6deg) rotateX(1deg);
}
.book .cover {
  position: absolute;
  inset: 0;
  border-radius: 6px 12px 12px 6px;
  background:
    radial-gradient(
      120% 90% at 15% 0%,
      rgba(201, 162, 39, 0.28),
      transparent 55%
    ),
    linear-gradient(160deg, var(--navy-panel), var(--navy-deep));
  border: 1px solid rgba(201, 162, 39, 0.35);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.book .cover .margem-topo-auto {
  margin-top: auto;
}
.book .spine {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 16px;
  border-radius: 6px 0 0 6px;
  background: linear-gradient(var(--gold), var(--navy-deep));
  transform: translateZ(-1px);
}
.book .cover::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 60px;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0 14px,
    transparent 14px 26px
  );
  opacity: 0.6;
}
.book .b-eyebrow {
  color: var(--gold-bright);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: auto;
}
.book .b-title {
  font-family: "Fraunces", serif;
  font-weight: 900;
  color: #fff;
  font-size: 2rem;
  line-height: 1.02;
  margin-bottom: 8px;
}
.book .b-title em {
  color: var(--gold-bright);
  font-style: italic;
  display: block;
  font-size: 2.5rem;
}
.book .b-sub {
  color: #cbd8e5;
  font-size: 0.82rem;
  line-height: 1.4;
  border-top: 1px solid rgba(201, 162, 39, 0.35);
  padding-top: 12px;
  margin-top: 12px;
}
.book .b-badge {
  position: absolute;
  top: 20px;
  right: -6px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
  transform: rotate(3deg);
}
.mock-tag {
  text-align: center;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.mock-tag b {
  color: var(--navy);
}

/* ==================== OBJEÇÕES (Q&A) ==================== */
.faq-list {
  max-width: 780px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 6px 18px rgba(15, 41, 66, 0.05);
}
.faq .q {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq .q .mk {
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 1;
  flex: 0 0 auto;
  font-family: "Fraunces", serif;
}
.faq .a {
  color: var(--ink-soft);
  font-size: 1.02rem;
  padding-left: 30px;
}
.faq .a b {
  color: var(--navy);
}

/* ==================== DEPOIMENTOS ==================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}
.testi {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
.testi .stars {
  color: var(--gold-bright);
  letter-spacing: 2px;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.testi .quote {
  color: #e4ecf4;
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 18px;
  flex: 1;
}
.testi .who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding-top: 16px;
}
.testi .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.testi .name {
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
}
.testi .city {
  color: #a9bacb;
  font-size: 0.85rem;
}
.disclaimer {
  text-align: center;
  color: #93a6b8;
  font-size: 0.82rem;
  margin-top: 26px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== PREÇO ==================== */
.price-card {
  max-width: 560px;
  margin: 44px auto 0;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--line);
}
.price-head {
  background: linear-gradient(160deg, var(--navy), var(--navy-deep));
  color: #fff;
  padding: 30px 30px 26px;
  text-align: center;
  position: relative;
}
.price-head .ribbon {
  display: inline-block;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.price-head .anchor {
  color: #b9c6d4;
  font-size: 1.05rem;
}
.price-head .anchor s {
  color: #8fa3b6;
}
.price-body {
  padding: 32px 30px 34px;
  text-align: center;
}
.price-now {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.price-now .cur {
  font-size: 1.4rem;
  color: var(--ink-soft);
  font-weight: 600;
}
.price-now .val {
  font-family: "Fraunces", serif;
  font-weight: 900;
  font-size: 4.4rem;
  color: var(--navy);
  line-height: 1;
}
.price-body .once {
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.price-body .cta {
  width: 100%;
}
.price-list {
  list-style: none;
  text-align: left;
  max-width: 420px;
  margin: 0 auto 26px;
}
.price-list li {
  padding: 9px 0 9px 30px;
  position: relative;
  color: #2a3b4c;
  font-size: 1rem;
  border-bottom: 1px dashed var(--line);
}
.price-list li:last-child {
  border-bottom: none;
}
.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--gold);
  font-weight: 800;
}
.guarantee {
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 560px;
  margin: 26px auto 0;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
}
.guarantee .seal {
  flex: 0 0 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
}
.guarantee p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  margin: 0;
}
.guarantee b {
  color: var(--navy);
}

/* ==================== REFORÇO FINAL / RODAPÉ CTA ==================== */
.final .reinforce {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.final .reinforce p {
  color: #d9e2ec;
  font-size: 1.12rem;
  margin-bottom: 22px;
}
.final .reinforce p b {
  color: var(--gold-bright);
}
.final h2 {
  margin-bottom: 24px;
}
.final .cta {
  font-size: 1.24rem;
}

/* ==================== FOOTER LEGAL ==================== */
.legal {
  background: var(--navy-deep);
  color: #7e90a2;
  padding: 40px 0;
  font-size: 0.85rem;
  text-align: center;
}
.legal .brand {
  font-family: "Fraunces", serif;
  color: var(--cream);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.legal p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.legal a {
  color: #a9bacb;
}

/* ==================== RESPONSIVO ==================== */
@media (max-width: 860px) {
  .product {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product .copy {
    order: 2;
  }
  .book-stage {
    order: 1;
  }
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 600px) {
  section {
    padding: 56px 0;
  }
  .hero {
    padding: 46px 0 60px;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    width: 100%;
    font-size: 1.08rem;
    padding: 18px 22px;
  }
  .hero .cta {
    font-size: 1.12rem;
  }
  .price-now .val {
    font-size: 3.6rem;
  }
  .lead-block p.opening {
    font-size: 1.25rem;
  }
  .urgency-bar {
    font-size: 0.82rem;
    gap: 7px;
  }
  .guarantee {
    flex-direction: column;
    text-align: center;
  }
}
/* Acessibilidade: respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .book {
    transform: none;
  }
}
