:root {
  --navy: #070f16;
  --navy-2: #0c1a24;
  --navy-3: #142636;
  --navy-4: #1c3346;
  --gold: #d4af37;
  --gold-2: #f0d78c;
  --gold-3: #c9a227;
  --cream: #f4efe4;
  --cream-2: #e8dfcc;
  --ink: #12161b;
  --muted: #9aa8b3;
  --line: rgba(240, 215, 140, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--cream);
  background: var(--navy);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, calc(100% - 40px));
}

#topo,
#metodo,
#dentro,
#provas,
#depoimentos,
#oferta {
  scroll-margin-top: 76px;
}

.skip {
  position: absolute;
  left: -999px;
}

.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 80;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 10px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s, padding 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 15, 22, 0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
  padding: 8px 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 650;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  line-height: 1.15;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.28));
}

.header-cta.btn {
  display: inline-flex;
  flex-shrink: 0;
  padding: 7px 12px;
  font-size: 0.75rem;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.22);
}

.header-cta.btn:hover {
  transform: translateY(-1px) scale(1.02);
}

@media (max-width: 639px) {
  .brand {
    font-size: 0;
    gap: 0;
  }

  .header-cta.btn {
    padding: 8px 12px;
    font-size: 0.72rem;
  }
}

@media (min-width: 860px) {
  .site-header {
    padding: 16px 0;
  }

  .site-header.is-scrolled {
    padding: 10px 0;
  }

  .brand {
    font-size: 0.92rem;
    gap: 10px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  .header-cta.btn {
    padding: 10px 18px;
    font-size: 0.86rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 15px 26px;
  font-weight: 650;
  letter-spacing: 0.02em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn--gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #1a1408;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.28);
}

.btn--gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
}

.btn--lg {
  padding: 18px 32px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 120px 0 72px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 15, 22, 0.35) 0%, rgba(7, 15, 22, 0.2) 35%, rgba(7, 15, 22, 0.72) 70%, #070f16 100%),
    url("../assets/hero-amanhecer.jpg") center / cover no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: auto 18% -80px 18%;
  height: 220px;
  background: radial-gradient(circle, rgba(240, 215, 140, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: end;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
  display: block;
}

.lead {
  max-width: 36rem;
  color: #fff;
  font-size: 1.08rem;
  margin: 0 0 28px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 599px) {
  .hero {
    padding-top: 104px;
    padding-bottom: 48px;
  }

  .hero .book {
    width: min(220px, 64vw);
  }

  .book-stage {
    min-height: 340px;
  }
}

.micro {
  color: #fff;
  font-size: 0.84rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.35;
}

.micro span:last-child {
  white-space: nowrap;
}

@media (min-width: 720px) {
  .micro {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0 10px;
  }

  .micro span:first-child::after {
    content: "·";
    margin-left: 10px;
    color: var(--gold);
  }
}

.trust-bar {
  background: var(--navy-2);
  color: #fff;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.trust-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 860px) {
  .trust-bar ul {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px 12px 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.trust-bar__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(240, 215, 140, 0.12);
  color: var(--gold-2);
}

.trust-bar__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trust-bar__text strong {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.2;
  color: #fff;
}

.trust-bar__text small {
  font-size: 0.75rem;
  color: var(--gold-2);
  line-height: 1.2;
}

.voices {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .voices {
    grid-template-columns: repeat(3, 1fr);
  }
}

.voice {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 22px;
  box-shadow: 0 16px 40px rgba(18, 22, 27, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 280px;
  position: relative;
}

.voice::before {
  content: "“";
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 0.5;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.voice p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.28;
  font-style: italic;
  flex: 1;
}

.voice footer {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(18, 22, 27, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.voice footer b {
  display: block;
  font-size: 0.92rem;
  font-style: normal;
  font-family: var(--font);
}

.voice footer small {
  color: #6a737b;
  font-size: 0.8rem;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #1a1408;
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
}

.proof-stats {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

@media (min-width: 800px) {
  .proof-stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  min-height: 200px;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  color: var(--gold-2);
  line-height: 1;
  font-weight: 500;
  margin-bottom: 10px;
}

.stat h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.book-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.book {
  width: min(280px, 72vw);
  aspect-ratio: 2 / 3;
  position: relative;
  transform: rotateY(-18deg) rotateZ(3deg);
  transform-style: preserve-3d;
  border-radius: 4px 10px 10px 4px;
  box-shadow:
    18px 28px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(240, 215, 140, 0.18);
  overflow: hidden;
  background: #0b1218;
}

.book img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.glow-card {
  position: absolute;
  inset: 18% 10% auto;
  height: 58%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22), transparent 68%);
  filter: blur(18px);
  z-index: 0;
}

/* Sections */
.section {
  padding: 88px 0;
  position: relative;
}

.section--cream {
  background: var(--cream);
  color: var(--ink);
}

.section--navy {
  background: var(--navy-2);
}

.section--quote {
  padding: 0;
}

.kicker {
  color: var(--gold-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section--cream .kicker {
  color: #8a6d1c;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  font-weight: 650;
}

h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section--cream h2 em {
  color: #8a6d1c;
}

.sub {
  margin: 0 0 40px;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.05rem;
}

.section--cream .sub {
  color: #4d575f;
}

/* Pain */
.pain-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: 0 16px 40px rgba(18, 22, 27, 0.08);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-card span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #efe6cf;
  color: #8a6d1c;
  font-weight: 700;
}

.pain-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.pain-card p {
  margin: 0;
  color: #5a636b;
}

/* Cycle */
.cycle {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

@media (min-width: 800px) {
  .cycle {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.cycle__step {
  background: var(--navy-3);
  border: 1px solid var(--line);
  padding: 28px 22px;
  position: relative;
}

@media (min-width: 800px) {
  .cycle__step:first-child {
    border-radius: 20px 0 0 20px;
  }
  .cycle__step:last-child {
    border-radius: 0 20px 20px 0;
  }
}

@media (max-width: 799px) {
  .cycle__step {
    border-radius: 16px;
  }
}

.cycle__step strong {
  display: block;
  color: var(--gold-2);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cycle__step p {
  margin: 0;
  color: #d5dde3;
}

/* Quote band */
.quote-band {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.quote-band__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 15, 22, 0.88) 0%, rgba(7, 15, 22, 0.55) 50%, rgba(7, 15, 22, 0.35) 100%),
    url("../assets/caminho-silhueta.jpg") center / cover no-repeat;
}

.quote-band blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 18ch;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.12;
  font-style: italic;
}

.quote-band p {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  color: #d2d8dc;
  margin: 18px 0 0;
}

/* Pillars */
.pillars {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .pillars {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar {
  padding: 26px 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--line);
  min-height: 250px;
}

.pillar b {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.pillar p {
  margin: 0;
  color: var(--muted);
}

.halt {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

@media (min-width: 800px) {
  .halt {
    grid-template-columns: repeat(4, 1fr);
  }
}

.halt article {
  text-align: center;
  padding: 22px 12px 20px;
  border-radius: 18px;
  background: rgba(240, 215, 140, 0.06);
  border: 1px solid var(--line);
}

.halt b {
  display: block;
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold-2);
  line-height: 1;
  font-weight: 500;
}

.halt span {
  display: block;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 6px 0 4px;
}

.halt small {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Chapters */
.chapters {
  display: grid;
  gap: 12px;
}

@media (min-width: 800px) {
  .chapters {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .chapter:last-child {
    grid-column: 1 / -1;
  }
}

.chapter {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 16px 16px 14px;
  box-shadow: 0 12px 32px rgba(18, 22, 27, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.chapter__num {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-2);
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.chapter__body {
  min-width: 0;
  padding-top: 2px;
}

.chapter h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  line-height: 1.28;
  color: var(--ink);
}

.chapter p {
  margin: 0;
  color: #5c656d;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Tools */
.tools {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .tools {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: stretch;
  }
}

.tool-photo {
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  background: url("../assets/diario-amanhecer.jpg") center / cover no-repeat;
}

.tool-list {
  display: grid;
  gap: 12px;
}

.tool {
  background: var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.tool h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.tool p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.checks li {
  position: relative;
  padding: 8px 0 8px 28px;
}

.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

.section--cream .checks li::before {
  border-color: #8a6d1c;
}

/* Split who */
.who {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .who {
    grid-template-columns: 1fr 1fr;
  }
}

.who article {
  border-radius: var(--radius);
  padding: 28px;
}

.who article:first-child {
  background: var(--navy-3);
  border: 1px solid var(--line);
}

.who article:last-child {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.who h3 {
  margin-top: 0;
}

.who ul {
  margin: 0;
  padding-left: 18px;
  color: #d2d8dc;
}

.who article:last-child ul {
  color: var(--muted);
}

/* Offer */
.offer {
  display: grid;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 40%),
    var(--navy-3);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .offer {
    grid-template-columns: 0.9fr 1.1fr;
    padding: 40px;
  }
}

.offer-books {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.offer-books .book {
  width: min(240px, 70%);
  z-index: 1;
}

.price-block .from {
  color: var(--muted);
  text-decoration: line-through;
  margin: 0 0 4px;
}

.price-block .now {
  font-size: clamp(3.6rem, 9vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0 0 8px;
  color: #fff;
}

.price-block .now > span:first-child {
  font-size: 0.38em;
  vertical-align: super;
  margin-right: 4px;
  letter-spacing: 0;
  font-weight: 650;
}

.price-block .note {
  color: var(--muted);
  margin: 0 0 22px;
}

.guarantee {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 14px 16px 14px 14px;
  border-radius: 20px;
  background: rgba(240, 215, 140, 0.07);
  border: 1px solid var(--line);
}

.guarantee__seal {
  position: relative;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  background:
    radial-gradient(circle at 32% 28%, #f6e4a8, #d4af37 58%, #a78420 100%);
  color: #1a1408;
  box-shadow:
    0 0 0 4px var(--navy-3),
    0 0 0 6px #e4c36a,
    0 10px 24px rgba(0, 0, 0, 0.35);
}

.guarantee__seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(26, 20, 8, 0.35);
  pointer-events: none;
}

.guarantee__seal b {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 0.85;
  color: #1a1408;
}

.guarantee__seal span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.guarantee__text {
  min-width: 0;
}

.guarantee__text strong {
  display: block;
  color: #fff;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
  white-space: nowrap;
}

.guarantee__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.4;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(18, 22, 27, 0.1);
}

.faq-item__q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 36px 18px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: inherit;
  position: relative;
}

.faq-item__q::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  color: #8a6d1c;
  font-size: 1.4rem;
}

.faq-item.is-open .faq-item__q::after {
  content: "–";
}

.faq-item__a {
  display: none;
  padding: 0 0 18px;
  color: #4f585f;
}

.faq-item.is-open .faq-item__a {
  display: block;
}

/* Final */
.final {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.final__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, #070f16 0%, rgba(7, 15, 22, 0.55) 40%, rgba(7, 15, 22, 0.72) 100%),
    url("../assets/hero-amanhecer.jpg") center 60% / cover no-repeat;
}

.final .container {
  position: relative;
  z-index: 1;
}

.final h2 {
  max-width: 16ch;
  margin-inline: auto;
}

.final .lead {
  margin-inline: auto;
}

/* Footer */
.site-footer {
  padding: 36px 0 120px;
  color: #fff;
  border-top: 1px solid var(--line);
  background: var(--navy);
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 720px) {
  .site-footer {
    padding: 40px 0 48px;
  }

  .footer-top {
    flex-direction: row;
    align-items: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.28));
}

.footer-brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-brand__text strong {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: #fff;
  white-space: nowrap;
}

.footer-brand__text span {
  font-size: 0.82rem;
  color: var(--gold-2);
}

.footer-copy {
  margin: 16px 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal {
  margin: 10px 0 0;
  max-width: 52rem;
  font-size: 0.7rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}

/* WhatsApp testimonials carousel */
.wa-carousel {
  position: relative;
  margin: 8px -8px 0;
}

.wa-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 12px 0 8px;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.wa-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.wa-carousel__track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding: 8px max(20px, calc(50% - min(158px, 38vw)));
}

.wa-slide {
  margin: 0;
  flex: 0 0 min(316px, 78vw);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  text-align: center;
  opacity: 0.42;
  transform: scale(0.9);
  filter: saturate(0.75);
  transition: opacity 0.45s, transform 0.45s, filter 0.45s;
}

.wa-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

.wa-phone {
  position: relative;
  border-radius: 34px;
  padding: 11px 10px 14px;
  background:
    linear-gradient(180deg, #24384a 0%, #0d1822 100%);
  border: 1px solid rgba(240, 215, 140, 0.38);
  box-shadow:
    0 28px 55px rgba(7, 15, 22, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wa-phone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 86px;
  height: 4px;
  border-radius: 99px;
  background: rgba(240, 215, 140, 0.35);
  transform: translateX(-50%);
}

.wa-phone__screen {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 9 / 17.4;
  background: #e5ddd5;
}

.wa-phone__screen img {
  width: 100%;
  height: 114%;
  object-fit: cover;
  object-position: top center;
}

.wa-badge {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 8px;
  border-radius: 999px;
  background: rgba(7, 15, 22, 0.78);
  color: #25d366;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.wa-slide figcaption {
  margin: 14px 8px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.3;
  color: #2a333a;
}

.wa-nav {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 50%;
  background: rgba(7, 15, 22, 0.82);
  color: var(--gold-2);
  box-shadow: 0 10px 24px rgba(7, 15, 22, 0.28);
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.wa-nav:hover {
  transform: scale(1.06);
  background: #0d1b26;
  border-color: var(--gold);
}

.wa-nav--prev {
  left: max(0px, calc(50% - min(210px, 48vw) - 28px));
}

.wa-nav--next {
  right: max(0px, calc(50% - min(210px, 48vw) - 28px));
}

.wa-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.wa-carousel__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(18, 22, 27, 0.22);
  transition: width 0.25s, background 0.25s;
}

.wa-carousel__dots button.is-active {
  width: 26px;
  background: var(--gold);
}

.wa-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 699px) {
  .wa-nav {
    top: 36%;
    width: 40px;
    height: 40px;
  }

  .wa-nav--prev {
    left: 6px;
  }

  .wa-nav--next {
    right: 6px;
  }

  .wa-carousel__viewport {
    mask-image: none;
  }

  .wa-cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-slide,
  .wa-nav,
  .wa-carousel__dots button {
    transition: none;
  }

  .wa-carousel__viewport {
    scroll-behavior: auto;
  }
}

/* Sticky bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  padding: 10px 16px calc(8px + env(safe-area-inset-bottom));
  background: rgba(7, 15, 22, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}

@media (min-width: 860px) {
  .sticky-cta {
    display: none;
  }
}

.sticky-cta__inner {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.sticky-cta .btn {
  width: 100%;
}

.sticky-cta__note {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-align: center;
  line-height: 1;
}

/* Exit popup */
.exit {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  padding-bottom: calc(18px + env(safe-area-inset-bottom));
}

.exit[hidden] {
  display: none;
}

.exit__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 14, 0.72);
  backdrop-filter: blur(10px);
}

.exit__card {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  display: grid;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.16), transparent 42%),
    var(--navy-2);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

@media (min-width: 760px) {
  .exit__card {
    grid-template-columns: 0.42fr 1fr;
    overflow: hidden;
  }
}

.exit__close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
}

.exit__book {
  display: none;
  background:
    linear-gradient(180deg, rgba(7, 15, 22, 0.2), rgba(7, 15, 22, 0.55)),
    url("../assets/hero-amanhecer.jpg") center / cover no-repeat;
  place-items: center;
  padding: 28px 18px;
}

@media (min-width: 760px) {
  .exit__book {
    display: grid;
  }
}

.exit__book img {
  width: min(210px, 100%);
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 16px 24px 40px rgba(0, 0, 0, 0.45);
  transform: rotate(-4deg);
}

.exit__body {
  padding: 28px 22px 22px;
}

@media (min-width: 760px) {
  .exit__body {
    padding: 36px 32px 28px;
  }
}

.exit__kicker {
  margin: 0 0 10px;
  color: var(--gold-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exit__body h2 {
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  margin: 0 0 12px;
  color: #fff;
}

.exit__body h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-2);
}

.exit__lead {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.exit__thoughts {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exit__thoughts li {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-2);
  font-size: 0.82rem;
  font-style: italic;
}

.exit__price {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.exit__price strong {
  color: #fff;
  font-size: 1.25rem;
}

.exit__skip {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.exit__micro {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

body.exit-open {
  overflow: hidden;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn {
    transition: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
