/* ========== THEME ==========\ */
:root {
  --primary-900: #2E2352;
  --primary-800: #4A3B83;
  --primary-700: #5E4AA8;
  --primary-500: #8E79E6;
  --accent-200: #E5D7F3;
  --text: #F6F5FB;
  --text-dim: #E9E6F4;
  --card-bg: rgba(255, 255, 255, .06);
  --card-br: rgba(255, 255, 255, .16);
  --blur-bg: rgba(10, 7, 30, .78);
  --radius: 18px;
  --shadow-1: 0 10px 28px rgba(0, 0, 0, .35);
  --shadow-2: 0 30px 80px rgba(0, 0, 0, .55);
  --grad-hero:
    radial-gradient(1200px 600px at 20% -10%, rgba(142, 121, 230, .22), transparent 60%),
    radial-gradient(800px 600px at 100% 0%, rgba(94, 74, 168, .35), transparent 55%),
    linear-gradient(180deg, #2E2352 0%, #241B47 100%);
  --grad-btn: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  --grad-btn-hover: linear-gradient(135deg, #9d89ff 0%, #6c58c9 100%);
}

/* ========== BASE ==========\ */
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--grad-hero);
  background-attachment: fixed;
  color: var(--text);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 2.5px 2.5px;
  opacity: .15;
  mix-blend-mode: overlay;
  pointer-events: none;
}

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

.container {
  width: min(1120px, 92vw);
  margin-inline: auto
}

:focus-visible {
  outline: 3px solid var(--primary-500);
  outline-offset: 2px
}

/* ========== HEADER ==========\ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--blur-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .25)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center
}

.logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .08)
}

.logo span {
  font-weight: 800;
  letter-spacing: .3px
}

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center
}

/* ========== TYPO ==========\ */
.kicker {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent-200);
  font-weight: 800;
  font-size: 13px
}

h1,
h2 {
  line-height: 1.08;
  margin: 10px 0 16px
}

h1 {
  font-size: clamp(30px, 4.4vw, 56px);
  background: linear-gradient(180deg, #fff, #dcd5ff 70%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

h2 {
  font-size: clamp(22px, 3.2vw, 34px);
  background: linear-gradient(180deg, #fff, #efe9ff 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

p {
  color: var(--text-dim);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7
}

.small {
  font-size: 14px;
  color: var(--text-dim)
}

.tiny {
  font-size: 12px;
  color: var(--text-dim)
}

/* ========== LAYOUT ==========\ */
.section {
  padding: 56px 0
}

.section--hero {
  padding: 72px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.grid {
  display: grid;
  gap: 32px
}

.grid--2 {
  grid-template-columns: 1fr;
  align-items: center
}

@media (min-width:900px) {
  .grid--2 {
    grid-template-columns: 1.1fr .9fr
  }
}

.split {
  display: grid;
  gap: 24px
}

@media (min-width:900px) {
  .split {
    grid-template-columns: 1fr 1fr
  }
}

@media (min-width:900px) {
  .split.split--align {
    align-items: flex-start;
    gap: 32px
  }

  .split.split--align>div:first-child {
    max-width: 62ch
  }

  .split.split--reverse>:first-child {
    order: 2
  }

  .split.split--reverse>:last-child {
    order: 1
  }
}

/* ========== COMPONENTES ==========\ */
.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--grad-btn);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .2px;
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transform: translateX(-120%);
  width: 120%
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .5);
  background: var(--grad-btn-hover)
}

.btn:hover::after {
  animation: shine 1s ease forwards
}

@keyframes shine {
  to {
    transform: translateX(100%)
  }
}

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--text)
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--card-br);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
  border-color: rgba(255, 255, 255, .24)
}

.list {
  display: grid;
  gap: 12px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none
}

.list li::before {
  content: "✅";
  margin-right: 10px
}

.hero-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-2)
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: conic-gradient(from 120deg, #947DFF, #6E58C9, #947DFF);
  filter: blur(14px);
  opacity: .5;
  z-index: -1
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

figure.captioned {
  margin: 0
}

figure.captioned img {
  border-radius: 16px;
  box-shadow: var(--shadow-2);
  transition: transform .25s ease
}

figure.captioned:hover img {
  transform: translateY(-4px)
}

figure.captioned figcaption {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 8px
}

.ebook-price {
  font-size: 18px;
  color: #fff;
  font-weight: 800
}

/* ========== AUTHOR (limpo) ==========\ */
.author-visual {
  display: grid;
  gap: 28px
}

.author-portrait {
  position: relative;
  margin: 0
}

.author-portrait .frame {
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.author-portrait .frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 40%;
  transform: scale(1.05);
}

/* headline sem marcador/realce extra */
.author-visual .headline-pop {
  padding-bottom: 0
}

.author-visual .headline-pop::after {
  content: none !important;
  display: none !important
}

.author-visual .hl {
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important
}

/* layout desktop: mais espaço para o texto, foto menor */
@media (min-width:900px) {
  .author-visual {
    grid-template-columns: 1.4fr .6fr
  }

  .author-copy {
    max-width: 64ch;
    padding-top: 56px
  }

  .author-visual .author-portrait {
    width: clamp(240px, 23vw, 340px);
    justify-self: end
  }
}

/* mobile: foto ocupa largura total */
@media (max-width:899px) {
  .author-visual .author-portrait {
    width: 100%
  }
}

/* ========== “DOR/IDENTIFICAÇÃO” FOTO MENOR ==========\ */
@media (min-width:900px) {
  .split.split--align .author-photo {
    max-width: 520px;
    justify-self: end
  }

  .split.split--align .author-photo img {
    height: auto;
    border-radius: 16px
  }
}

/* === Grade de tópicos em “cards” === */
.topics {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

@media (min-width:760px) {
  .topics {
    grid-template-columns: 1fr 1fr
  }
}

.topics li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: var(--shadow-1);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.topics li::before {
  content: "✅";
  margin: 0
}

.topics li:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .24);
  box-shadow: var(--shadow-2)
}

/* ========== BONUS (centralizado) ==========\ */
.bonus {
  gap: 28px
}

.bonus .lead {
  max-width: 65ch
}

.bonus--center {
  display: grid;
  grid-template-columns: min(880px, 100%);
  justify-content: center;
  gap: 28px;
  text-align: left
}

.bonus--center h2,
.bonus--center .lead {
  text-align: center
}

.bonus--center .card {
  border-radius: 18px
}

.bonus--center .bonus-card {
  grid-column: auto;
  width: 100%;
  max-width: 880px;
  margin-inline: auto;
  text-align: center
}

.bonus-card {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 22px 24px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .45)
}

.bonus-card .chip {
  margin-bottom: 10px
}

.bonus-card .bonus-title {
  margin: 6px 0 6px;
  font-size: clamp(18px, 2.4vw, 22px);
  background: linear-gradient(180deg, #fff, #efe9ff 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.bonus-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(142, 121, 230, .25), rgba(94, 74, 168, .35));
  border: 1px solid rgba(255, 255, 255, .22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .35), 0 0 36px rgba(142, 121, 230, .45);
  margin-bottom: 10px
}

.bonus-tag::before {
  content: "★";
  font-size: 12px;
  opacity: .95
}

/* ========== REVEAL / MOTION ==========\ */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(.98)
}

.reveal.in {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity .7s ease, transform .7s cubic-bezier(.21, .9, .24, 1)
}

.float {
  animation: float 6s ease-in-out infinite
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    transition: none !important;
    animation: none !important
  }
}

/* ========== FOOTER ==========\ */
.footer {
  color: var(--text-dim);
  font-size: 14px
}

.footer.enhanced {
  position: relative;
  padding: 36px 0 0
}

.footer-glow {
  position: absolute;
  inset: 0 0 auto 0;
  height: 8px;
  background: linear-gradient(90deg, rgba(142, 121, 230, 0), rgba(142, 121, 230, .55), rgba(94, 74, 168, 0));
  filter: blur(6px);
  opacity: .9;
  pointer-events: none
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding-bottom: 8px;
  align-items: start
}

@media (min-width:900px) {
  .footer-grid {
    grid-template-columns: minmax(300px, 1.5fr) 1fr 1fr
  }
}

.footer-grid h4 {
  margin: 0 0 12px;
  font-size: 16px;
  color: #fff
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.footer-grid a {
  color: var(--text-dim);
  text-decoration: none;
  position: relative;
  transition: color .25s ease
}

.footer-grid a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0%;
  background: linear-gradient(90deg, #fff, #bfb4ff);
  transition: width .25s ease
}

.footer-grid a:hover {
  color: #fff
}

.footer-grid a:hover::after {
  width: 100%
}

.footer-brand p.small {
  max-width: 46ch
}

.trust-row {
  margin-top: 6px;
  padding-top: 10px;
  border-top: none
}

.trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-size: 14px
}

.trust .lock {
  display: inline-flex;
  gap: 6px;
  align-items: center
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9b8bff;
  box-shadow: 0 0 0 3px rgba(155, 139, 255, .15)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 0 40px;
  border-top: none;
  flex-wrap: wrap
}

.footer-contact,
.footer-contact * {
  display: none !important
}

/* ========== AJUSTES DE ESPAÇAMENTO (desktop) ==========\ */
@media (min-width:900px) {
  .section {
    padding-top: 80px;
    padding-bottom: 80px
  }

  .section--hero {
    padding-top: 96px;
    padding-bottom: 72px
  }
}

/* ========== BLOCO FINAL (foto à esquerda + texto à direita) ==========\ */
@media (min-width:900px) {
  .split .hero-photo+div {
    padding-top: 28px
  }
}

/* BLOCO FINAL — descer mais o texto (foto à esquerda) */
@media (min-width: 900px) {
  .split .hero-photo+div {
    /* escolha 1: fixo */
    padding-top: 56px;
  }
}

/* 1) GUIA BÔNUS — centralizado no meio */
#bonus .container {
  display: grid;
  justify-content: center;
  /* centraliza o conteúdo dentro do container */
}

#bonus .bonus--center {
  grid-template-columns: min(880px, 100%);
  justify-items: center;
  /* centraliza tudo na coluna única */
  text-align: center;
}

#bonus .bonus--center .bonus-tag {
  margin-inline: auto;
  /* selo centralizado */
}

/* 2) “Você sente que perdeu…” — descer o bloco de texto (desktop) */
@media (min-width: 900px) {
  .split.split--align>div:first-child {
    padding-top: 44px;
    /* ajuste fino: aumente/diminua se quiser */
  }
}