:root {
  --navy-950: #0b0e1a;
  --navy-900: #111627;
  --navy-800: #1a2035;
  --gold-500: #c9a84c;
  --gold-400: #e8c96d;
  --gold-200: #f5e9c8;
  --cream-100: #f0e6d0;
  --white: #ffffff;
  --text-soft: rgba(240, 230, 208, 0.72);
  --text-faint: rgba(240, 230, 208, 0.5);
  --border: rgba(201, 168, 76, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Montserrat", sans-serif;
  color: var(--cream-100);
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.08), transparent 28%),
    linear-gradient(180deg, #0b0e1a 0%, #0d1222 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

p {
  margin: 0 0 1rem;
  line-height: 1.85;
  color: var(--text-soft);
}

strong {
  color: var(--cream-100);
}

.site-shell {
  position: relative;
  z-index: 1;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 4.5rem 0;
}

.section--narrow {
  width: min(calc(100% - 2rem), 980px);
}

.section--band {
  width: 100%;
  padding-inline: 1rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(17, 22, 39, 0.72);
}

.section--band > * {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.section--offer {
  padding-top: 5.5rem;
  padding-bottom: 6rem;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.hero__content,
.hero__media {
  position: relative;
}

.eyebrow,
.section-label,
.pillar-card__tag,
.pillar-card__ref,
.author__meta p,
.price-box__label,
.guarantee,
.footer p {
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow,
.section-label,
.pillar-card__tag,
.author__meta p {
  color: var(--gold-500);
}

.eyebrow {
  margin-bottom: 1.5rem;
  font-size: 0.72rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  color: var(--white);
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 em,
h2 em {
  color: var(--gold-400);
  font-style: italic;
}

h2 {
  max-width: 14ch;
  margin-bottom: 1.4rem;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.subtitle {
  max-width: 34rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2.6vw, 1.08rem);
  color: var(--text-soft);
}

.hero__actions,
.offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--navy-950);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 12px 32px rgba(201, 168, 76, 0.2);
}

.btn--ghost {
  color: var(--cream-100);
  background: rgba(255, 255, 255, 0.02);
}

.btn--large {
  width: 100%;
}

.hero__bullets {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text-soft);
  font-size: 0.96rem;
}

.hero__bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.hero__media {
  display: flex;
  justify-content: center;
}

.book-card {
  width: min(100%, 430px);
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  box-shadow: var(--shadow);
}

.book-card img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 3rem;
}

.divider span {
  width: min(100px, 22vw);
  height: 1px;
  background: var(--border);
}

.divider i {
  width: 10px;
  height: 10px;
  background: var(--gold-500);
  transform: rotate(45deg);
}

.diagnostic {
  border-left: 1px solid var(--border);
  padding-left: 1.35rem;
}

.stats,
.pillars {
  display: grid;
  gap: 1px;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: var(--border);
}

.stat-card,
.pillar-card {
  background: var(--navy-900);
}

.stat-card {
  padding: 2rem 1.2rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 4rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-500);
}

.stat-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--text-faint);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section__header {
  max-width: 720px;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem 1.6rem;
}

.pillar-card__index {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.08);
}

.pillar-card__tag,
.pillar-card__ref,
.author__meta p,
.price-box__label,
.guarantee {
  font-size: 0.7rem;
}

.pillar-card h3 {
  margin-top: 0.55rem;
  margin-bottom: 0.7rem;
  max-width: 12ch;
  font-size: 2rem;
  line-height: 1.02;
}

.pillar-card__ref {
  margin-bottom: 0.9rem;
  color: var(--gold-400);
}

.audience {
  margin-top: 2.2rem;
  border-top: 1px solid var(--border);
}

.audience-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}

.checkmark {
  width: 22px;
  height: 22px;
  margin-top: 0.2rem;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  position: relative;
}

.checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 7px;
  height: 4px;
  border-left: 1px solid var(--gold-500);
  border-bottom: 1px solid var(--gold-500);
  transform: rotate(-45deg);
}

.author {
  display: grid;
  gap: 2rem;
  margin-top: 2.4rem;
}

.author__photo {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow);
}

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

.author__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.author__meta {
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--border);
}

.author__meta h3 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.author__list {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.author__list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.author__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-500);
}

.offer {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.offer h2,
.offer > p {
  margin-inline: auto;
}

.quote {
  margin: 2rem 0;
  padding: 0.6rem 0 0.6rem 1.2rem;
  border-left: 2px solid var(--gold-500);
  text-align: left;
}

.quote p {
  margin-bottom: 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.35;
  color: var(--cream-100);
  font-style: italic;
}

.quote footer {
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.price-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: min(100%, 390px);
  margin: 0 auto 1.4rem;
  padding: 2rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(17, 22, 39, 0.96), rgba(10, 13, 24, 0.96));
  box-shadow: var(--shadow);
}

.price-box strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.4rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold-500);
}

.price-box__detail,
.guarantee,
.footer p {
  color: var(--text-faint);
}

.guarantee {
  margin: 0.2rem 0 0;
}

.footer {
  padding: 0 1rem 2rem;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.72rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .section {
    padding: 6.5rem 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
    gap: 3.5rem;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }

  .author {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    align-items: start;
  }

  .btn--large {
    width: auto;
    min-width: 320px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .btn,
  .btn--large,
  .btn--ghost,
  .btn--primary {
    width: 100%;
  }

  .hero__actions,
  .offer__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .book-card {
    width: min(100%, 320px);
  }
}

/* ==========================================================
   Ajustes mobile-first solicitados
   - Hero centralizado no celular
   - Imagem logo após o texto "Hugo Mendonça..."
   - Textos centralizados em todas as seções
   ========================================================== */

body {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(201, 168, 76, 0.1), transparent 30%),
    radial-gradient(circle at 50% 20%, rgba(42, 91, 158, 0.34), transparent 38%),
    linear-gradient(180deg, #090d18 0%, #102a56 50%, #0b0e1a 100%);
}

p {
  margin-left: auto;
  margin-right: auto;
}

.hero {
  min-height: auto;
  grid-template-areas:
    "eyebrow"
    "media"
    "content";
  justify-items: center;
  align-content: start;
  gap: 1.15rem;
  padding-top: 1.35rem;
  padding-bottom: 3.5rem;
  text-align: center;
}

.hero__eyebrow {
  grid-area: eyebrow;
  max-width: 30ch;
  margin: 0 auto;
  line-height: 1.65;
}

.hero__content {
  grid-area: content;
  width: 100%;
  max-width: 560px;
  text-align: center;
}

.hero__media {
  grid-area: media;
  width: 100%;
  margin: 0 auto 0.35rem;
}

h1,
h2,
h3,
.subtitle,
.section__header,
.diagnostic,
.pillar-card,
.audience-item,
.author,
.author__content,
.author__meta,
.offer,
.price-box,
.footer {
  text-align: center;
}

h1,
h2,
.subtitle,
.section__header,
.diagnostic,
.offer > p,
.pillar-card h3,
.author__content,
.author__meta,
.price-box {
  margin-left: auto;
  margin-right: auto;
}

h1 {
  max-width: 10.5ch;
}

h2 {
  max-width: 14ch;
}

.subtitle {
  max-width: 32rem;
}

.hero__actions,
.offer__actions {
  justify-content: center;
}

.hero__bullets {
  justify-items: center;
}

.hero__bullets li {
  justify-content: center;
  text-align: center;
}

.hero__bullets li::before {
  flex: 0 0 9px;
}

.book-card {
  width: min(74vw, 250px);
  padding: 0.45rem;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

.book-card img {
  border-radius: 17px;
}

.diagnostic {
  max-width: 780px;
  padding: 1.5rem 0;
  border-left: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__header {
  max-width: 760px;
}

.pillar-card h3 {
  max-width: 12ch;
}

.audience {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.audience-item {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 0.85rem;
}

.audience-item p {
  margin-bottom: 0;
}

.author {
  justify-items: center;
}

.author__photo {
  width: min(100%, 340px);
  margin-left: auto;
  margin-right: auto;
}

.author__content {
  align-items: center;
  max-width: 680px;
}

.author__list li {
  padding-left: 0;
}

.author__list li::before {
  position: static;
  margin-right: 0.35rem;
}

.quote {
  padding: 1.2rem 0.5rem;
  border-left: 0;
  border-top: 2px solid var(--gold-500);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    min-height: 100svh;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 420px);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "eyebrow media"
      "content media";
    align-items: center;
    justify-items: center;
    gap: 1.5rem 3.5rem;
    padding-top: 6.5rem;
    padding-bottom: 6.5rem;
  }

  .hero__eyebrow {
    align-self: end;
  }

  .hero__content {
    align-self: start;
  }

  .book-card {
    width: min(100%, 430px);
    padding: 0.8rem;
    border-radius: calc(var(--radius-lg) + 6px);
    box-shadow: var(--shadow);
  }

  .book-card img {
    border-radius: var(--radius-lg);
  }

  .author {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .section {
    width: min(calc(100% - 1.4rem), var(--max-width));
    padding: 3.25rem 0;
  }

  .hero {
    padding-top: 1.35rem;
    padding-bottom: 3.5rem;
  }

  .eyebrow,
  .section-label,
  .pillar-card__tag,
  .pillar-card__ref,
  .author__meta p,
  .price-box__label,
  .guarantee,
  .footer p {
    letter-spacing: 0.16em;
  }

  .eyebrow {
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .subtitle {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .hero__actions,
  .offer__actions {
    width: min(100%, 315px);
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    min-height: 50px;
    padding: 0.9rem 1rem;
    font-size: 0.72rem;
  }

  .hero__bullets {
    margin-top: 1.25rem;
    gap: 0.7rem;
  }

  .hero__bullets li {
    font-size: 0.9rem;
  }

  .stats,
  .pillars {
    margin-top: 2rem;
  }

  .stat-card,
  .pillar-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .author__photo {
    width: min(100%, 300px);
  }
}


/* ==========================================================
   V2 - Hero premium inspirado no mockup aprovado
   - Livro novo em destaque, com bordas visuais mescladas ao fundo
   - Botões retangulares, sem formato pílula
   - Composição centralizada e mobile-first
   ========================================================== */

:root {
  --hero-bg-top: #030912;
  --hero-bg-mid: #071425;
  --hero-bg-blue: #0d213a;
  --hero-gold-strong: #f0c85c;
}

body {
  text-align: center;
  background:
    radial-gradient(circle at 50% 7%, rgba(240, 200, 92, 0.14), transparent 22rem),
    radial-gradient(circle at 50% 20%, rgba(57, 83, 116, 0.38), transparent 27rem),
    radial-gradient(circle at 50% 42%, rgba(13, 48, 84, 0.62), transparent 34rem),
    linear-gradient(180deg, var(--hero-bg-top) 0%, var(--hero-bg-mid) 42%, #07101d 76%, #050912 100%);
}

.site-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(90deg, rgba(255,255,255,0.035), transparent 18%, transparent 82%, rgba(255,255,255,0.03));
  opacity: 0.65;
}

.hero.section {
  width: min(calc(100% - 1.1rem), 960px);
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "media"
    "content";
  justify-items: center;
  align-content: start;
  gap: 0.95rem;
  padding-top: clamp(1.6rem, 7vw, 4.5rem);
  padding-bottom: clamp(3rem, 9vw, 6rem);
  text-align: center;
}

.hero__eyebrow {
  grid-area: eyebrow;
  max-width: min(92vw, 44rem);
  margin: 0 auto 0.25rem;
  color: var(--hero-gold-strong);
  font-size: clamp(0.64rem, 2.3vw, 0.86rem);
  line-height: 1.55;
  letter-spacing: clamp(0.16em, 1.1vw, 0.26em);
  text-shadow: 0 0 26px rgba(240, 200, 92, 0.18);
}

.hero__media {
  grid-area: media;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: -0.2rem auto -0.2rem;
  isolation: isolate;
}

.book-card {
  position: relative;
  width: min(104vw, 390px);
  max-width: none;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.book-card::before {
  content: "";
  position: absolute;
  inset: 8% 2% 10%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 58%, rgba(232, 201, 109, 0.28), transparent 26%),
    radial-gradient(ellipse at 50% 45%, rgba(78, 105, 136, 0.28), transparent 56%);
  filter: blur(24px);
  opacity: 0.8;
}

.book-card::after {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  bottom: 4%;
  height: 18%;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(232, 201, 109, 0.22), rgba(0, 0, 0, 0) 68%);
  filter: blur(18px);
  opacity: 0.85;
}

.book-card img {
  width: 100%;
  border-radius: 0;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 48px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 28px rgba(232, 201, 109, 0.11));
  -webkit-mask-image: radial-gradient(ellipse 84% 80% at 50% 50%, #000 0 74%, rgba(0,0,0,0.94) 84%, rgba(0,0,0,0.38) 94%, transparent 100%);
  mask-image: radial-gradient(ellipse 84% 80% at 50% 50%, #000 0 74%, rgba(0,0,0,0.94) 84%, rgba(0,0,0,0.38) 94%, transparent 100%);
}

.hero__content {
  grid-area: content;
  width: 100%;
  max-width: 720px;
  text-align: center;
}

h1 {
  max-width: 9.3ch;
  margin-inline: auto;
  font-size: clamp(3.3rem, 15vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.58);
}

h1 em {
  color: var(--hero-gold-strong);
  font-style: italic;
  text-shadow:
    0 10px 34px rgba(0, 0, 0, 0.5),
    0 0 24px rgba(232, 201, 109, 0.08);
}

.subtitle {
  max-width: min(93vw, 40rem);
  margin: 1.18rem auto 1.75rem;
  color: rgba(244, 238, 222, 0.82);
  font-size: clamp(1rem, 3.65vw, 1.28rem);
  line-height: 1.62;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

.hero__actions,
.offer__actions {
  justify-content: center;
}

.hero__actions {
  width: min(100%, 348px);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.btn,
.btn--large,
.btn--ghost,
.btn--primary {
  border-radius: 2px;
}

.btn {
  min-height: 57px;
  padding: 1rem 1.05rem;
  font-size: 0.76rem;
  letter-spacing: 0.19em;
}

.btn--primary {
  border-color: rgba(255, 224, 125, 0.72);
  color: #07101d;
  background: linear-gradient(180deg, #f6d56d 0%, #d7ad44 100%);
  box-shadow:
    0 17px 36px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(232, 201, 109, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn--ghost {
  color: rgba(250, 244, 229, 0.92);
  border-color: rgba(232, 201, 109, 0.75);
  background: linear-gradient(180deg, rgba(7, 18, 33, 0.72), rgba(3, 8, 16, 0.76));
  box-shadow:
    0 15px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.hero__bullets {
  width: min(100%, 390px);
  margin: 1.45rem auto 0;
  display: grid;
  justify-items: center;
  gap: 0.72rem;
}

.hero__bullets li {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  color: rgba(244, 238, 222, 0.82);
  font-size: clamp(0.93rem, 3.35vw, 1.12rem);
  line-height: 1.35;
  text-align: left;
}

.hero__bullets li::before {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 20px rgba(240, 200, 92, 0.42);
}

.section,
.section__header,
.diagnostic,
.pillar-card,
.audience-item,
.author,
.author__content,
.author__meta,
.offer,
.price-box,
.footer,
p,
h2,
h3 {
  text-align: center;
}

@media (max-width: 390px) {
  .book-card {
    width: min(110vw, 372px);
  }

  h1 {
    font-size: clamp(3rem, 14.2vw, 3.65rem);
  }

  .hero__actions {
    width: min(100%, 326px);
  }
}

@media (min-width: 768px) {
  .hero.section {
    width: min(calc(100% - 3rem), 1040px);
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "eyebrow"
      "media"
      "content";
    align-items: start;
    justify-items: center;
    gap: 1rem;
    padding-top: clamp(3.2rem, 5vw, 5.5rem);
    padding-bottom: 6rem;
  }

  .hero__eyebrow {
    align-self: auto;
    max-width: 58rem;
  }

  .hero__content {
    align-self: auto;
    max-width: 860px;
  }

  .book-card {
    width: min(69vw, 620px);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(4.6rem, 7.8vw, 7rem);
  }

  .subtitle {
    font-size: clamp(1.06rem, 1.65vw, 1.34rem);
  }

  .hero__actions {
    width: min(100%, 610px);
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    min-height: 60px;
  }
}

@media (min-width: 1120px) {
  .hero.section {
    width: min(calc(100% - 4rem), 1180px);
  }

  .book-card {
    width: min(54vw, 650px);
  }
}


/* ==========================================================
   V3 - Ajuste de quebra de frases no mobile
   - Evita palavras isoladas após ponto final em telas pequenas
   - Mantém o comportamento inline no desktop
   ========================================================== */

.mobile-sentence-break {
  display: inline;
}

.sentence-nowrap {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .mobile-sentence-break {
    display: block;
  }

  .subtitle .mobile-sentence-break {
    margin-top: 0.12rem;
  }

  h2 .mobile-sentence-break {
    margin-top: 0.08rem;
  }
}

/* ==========================================================
   V4 - Separação visual dos títulos em duas cores
   - A parte dourada dos títulos sempre inicia em uma nova linha
   - Evita texto branco e dourado misturados na mesma linha
   ========================================================== */

h1 em,
h2 em {
  display: block;
}

h1 em {
  margin-top: 0.02em;
}

h2 em {
  margin-top: 0.04em;
}

@media (max-width: 767px) {
  h1 em,
  h2 em {
    display: block;
  }
}


/* ==========================================================
   V6 - Ajustes finos solicitados
   - Botão "Conheça o Autor" removido no HTML
   - Preço atualizado para R$ 37 no HTML
   - Garantia removida dos textos comerciais
   - Números de destaque com fonte mais limpa e normal
   - CTA principal centralizado sozinho após remoção do botão secundário
   ========================================================== */

.stat-card strong,
.price-box strong,
.pillar-card__index {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.stat-card strong {
  font-size: clamp(2.45rem, 6.2vw, 3.55rem);
}

.price-box strong {
  font-size: clamp(2.9rem, 7vw, 4.35rem);
}

.pillar-card__index {
  font-weight: 500;
}

.hero__actions {
  width: min(100%, 348px);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .hero__actions {
    width: min(100%, 360px);
    grid-template-columns: 1fr;
  }
}


/* ==========================================================
   V7 - CTA intermediário e checkout real
   - Todos os botões de compra abrem o checkout da Kiwify em nova aba
   - Novo botão entre Público Qualificado e Autoridade
   ========================================================== */

.audience-cta {
  width: min(100%, 348px);
  margin: 2.4rem auto 0;
}

.audience-cta .btn {
  width: 100%;
}

@media (min-width: 768px) {
  .audience-cta {
    width: min(100%, 360px);
    margin-top: 3rem;
  }
}
