html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  margin: 0;
  background: #000;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

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

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

.hero-grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid-bg > div {
  position: relative;
}

.cover-stage {
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.cover-glow {
  background:
    radial-gradient(circle at 50% 45%, rgba(229, 9, 20, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 60%);
}

.cover-book {
  width: min(520px, 92%);
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.55));
}

.heroine-reference {
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(229, 9, 20, 0.09),
      transparent 30rem
    ),
    #050505;
}

.cta-reference {
  text-decoration: none;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.check-card {
  min-height: 138px;
  padding: 22px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  border: 1px solid #1a1a1c;
  border-radius: 1rem;
  background: #09090b;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.check-card:hover {
  transform: translateY(-3px);
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.check-card > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(229, 9, 20, 0.28);
  border-radius: 0.75rem;
  color: #e50914;
  background: rgba(229, 9, 20, 0.08);
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.check-card h3 {
  margin: 2px 0 8px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.check-card p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.75rem;
  line-height: 1.65;
}

.check-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(16, 185, 129, 0.32);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.065), #09090b 48%);
}

.check-card-featured > span {
  border-color: rgba(16, 185, 129, 0.3);
  color: #34d399;
  background: rgba(16, 185, 129, 0.09);
}

.author-frame {
  min-height: 560px;
}

.author-frame > img {
  min-height: 560px;
  object-position: center 28%;
}

.author-gradient {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0));
}

.stat-card {
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid #27272a;
  border-radius: 0.9rem;
  background: #09090b;
}

.stat-card strong {
  color: #e50914;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.stat-card span {
  color: #71717a;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.offer-shell {
  padding: clamp(22px, 5vw, 48px);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(229, 9, 20, 0.12),
      transparent 18rem
    ),
    #070708;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.025) inset,
    0 24px 70px rgba(0, 0, 0, 0.52),
    0 0 45px rgba(229, 9, 20, 0.08);
}

.offer-cover {
  width: min(370px, 100%);
  margin-inline: auto;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.48));
}

.guarantee-seal {
  width: 210px;
  height: 210px;
  margin-inline: auto;
  display: grid;
  place-content: center;
  position: relative;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 50%;
  color: #fff;
  background:
    radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 68%), #080a09;
  box-shadow: 0 0 45px rgba(16, 185, 129, 0.1);
  text-align: center;
}

.guarantee-seal::before,
.guarantee-seal::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(16, 185, 129, 0.25);
  border-radius: inherit;
}

.guarantee-seal::before {
  inset: 11px;
}

.guarantee-seal::after {
  inset: 24px;
}

.guarantee-seal span,
.guarantee-seal small {
  position: relative;
  z-index: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.guarantee-seal span {
  color: #34d399;
  font-size: 4rem;
  line-height: 0.86;
}

.guarantee-seal small {
  margin-top: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #1a1a1c;
  border-radius: 1rem;
  background: #080809;
}

.faq-item[open] {
  border-color: rgba(229, 9, 20, 0.32);
}

.faq-item summary {
  padding: 19px 22px;
  position: relative;
  color: #fff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 21px;
  color: #e50914;
  font-size: 1.25rem;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: #a1a1aa;
  font-size: 0.78rem;
  line-height: 1.7;
}

.cookie-banner {
  width: min(300px, calc(100% - 28px));
  padding: 16px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  border: 1px solid #27272a;
  border-radius: 1rem;
  color: #a1a1aa;
  background: rgba(9, 9, 11, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cookie-banner.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.66rem;
  line-height: 1.6;
}

.cookie-banner div {
  margin-top: 12px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.cookie-banner button {
  padding: 6px 10px;
  border-radius: 0.35rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#cookie-decline {
  border: 1px solid #3f3f46;
  color: #a1a1aa;
  background: transparent;
}

#cookie-accept {
  border: 1px solid #e50914;
  color: #fff;
  background: #e50914;
}

.mobile-checkout {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1023px) {
  .cover-stage {
    min-height: 470px;
  }

  .cover-book {
    width: min(470px, 94%);
  }

  .author-frame,
  .author-frame > img {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 72px;
  }

  .cover-stage {
    min-height: 390px;
  }

  .cover-book {
    width: min(390px, 102%);
  }

  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .check-card-featured {
    grid-column: auto;
  }

  .author-frame,
  .author-frame > img {
    min-height: 460px;
  }

  .cookie-banner {
    right: 14px;
    bottom: 86px;
    left: 14px;
    width: auto;
  }

  .mobile-checkout {
    min-height: 54px;
    padding: 13px 18px;
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 70;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #fff;
    background: #e50914;
    box-shadow: 0 12px 34px rgba(229, 9, 20, 0.35);
    font-family: "Montserrat", sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-checkout.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.hero-photo {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  background: #000;
}

.manifesto-quote {
  padding: clamp(28px, 5vw, 52px);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 9, 20, 0.32);
  border-radius: 1.5rem;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(229, 9, 20, 0.15),
      transparent 18rem
    ),
    #09090b;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
}

.manifesto-quote > span {
  position: absolute;
  top: -26px;
  right: 22px;
  color: rgba(229, 9, 20, 0.16);
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
}

.manifesto-quote p {
  margin: 0;
  position: relative;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.28;
  text-transform: uppercase;
}

.manifesto-quote footer {
  margin-top: 24px;
  color: #34d399;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.reality-card {
  min-height: 198px;
  padding: 22px 18px;
  border: 1px solid #1a1a1c;
  border-radius: 1rem;
  background: #09090b;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.reality-card:hover {
  transform: translateY(-4px);
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
}

.reality-card > span {
  color: #e50914;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
}

.reality-card h3 {
  margin: 28px 0 10px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.reality-card p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.7rem;
  line-height: 1.6;
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pillar-card {
  padding: 28px;
  border: 1px solid #27272a;
  border-radius: 1rem;
  background: linear-gradient(145deg, #0b0b0d, #070708);
}

.pillar-card-featured {
  border-color: rgba(229, 9, 20, 0.45);
  box-shadow: 0 0 32px rgba(229, 9, 20, 0.1);
}

.pillar-card small {
  color: #e50914;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pillar-card h3 {
  margin: 14px 0 9px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar-card p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.76rem;
  line-height: 1.65;
}

@media (max-width: 1023px) {
  .reality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reality-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .hero-photo {
    max-height: none;
  }

  .reality-grid,
  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .reality-card,
  .reality-card:last-child {
    min-height: auto;
    grid-column: auto;
  }
}

/* Conteúdo sempre visível; a página não depende de JavaScript para renderizar. */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.hero-v3 {
  isolation: isolate;
}

.hero-v3-heading {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.hero-v3-heading h1 {
  margin: 24px 0 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-v3-heading h1 span {
  display: block;
  margin-block: 8px;
  color: #e50914;
}

.hero-v3-heading > p {
  max-width: 780px;
  margin: 24px auto 0;
  color: #a1a1aa;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
  line-height: 1.75;
}

.hero-v3-main {
  margin-top: clamp(38px, 6vw, 70px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.hero-v3-visual {
  position: relative;
}

.hero-v3-photo-shell {
  overflow: hidden;
  position: relative;
  border: 1px solid #27272a;
  border-radius: 1.5rem;
  background: #050505;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.62),
    0 0 50px rgba(229, 9, 20, 0.08);
}

.hero-v3-photo-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.025) inset;
}

.hero-v3-photo {
  width: 100%;
  height: auto;
}

.hero-v3-authority {
  max-width: 250px;
  padding: 16px 18px;
  position: absolute;
  right: -18px;
  bottom: 34px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: 1rem;
  background: rgba(9, 9, 11, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}

.hero-v3-authority strong {
  color: #34d399;
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-v3-authority span {
  margin-top: 3px;
  color: #a1a1aa;
  font-size: 0.64rem;
  line-height: 1.45;
}

.hero-v3-copy {
  padding-block: 12px;
}

.hero-v3-eyebrow {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid rgba(229, 9, 20, 0.24);
  border-radius: 0.4rem;
  color: #e50914;
  background: rgba(229, 9, 20, 0.08);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-v3-copy h2 {
  margin: 22px 0 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-v3-copy h2 span {
  color: #e50914;
}

.hero-v3-copy > p {
  margin: 18px 0 0;
  color: #a1a1aa;
  font-size: 0.82rem;
  line-height: 1.75;
}

.hero-v3-benefits {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.hero-v3-benefits > div {
  padding: 15px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid #27272a;
  border-radius: 0.9rem;
  background: #09090b;
}

.hero-v3-benefits b {
  color: #e50914;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
}

.hero-v3-benefits p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.71rem;
  line-height: 1.55;
}

.hero-v3-benefits strong {
  color: #fff;
}

.hero-v3-cta {
  width: 100%;
  margin-top: 26px;
  padding: 16px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  color: #fff;
  background: #e50914;
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.3);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 200ms ease,
    background-color 200ms ease;
}

.hero-v3-cta:hover {
  background: #ff1e27;
  transform: translateY(-2px);
}

.hero-v3-copy .hero-v3-microcopy {
  margin-top: 12px;
  color: #52525b;
  font-size: 0.58rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .hero-v3-main {
    grid-template-columns: 1fr;
  }

  .hero-v3-visual {
    width: min(570px, 100%);
    margin-inline: auto;
  }

  .hero-v3-copy {
    max-width: 700px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .hero-v3-heading {
    text-align: left;
  }

  .hero-v3-heading h1 {
    font-size: clamp(1.8rem, 9.5vw, 2.6rem);
    line-height: 1.02;
  }

  .hero-v3-heading > p {
    margin-top: 18px;
    font-size: 0.78rem;
  }

  .hero-v3-main {
    margin-top: 32px;
    gap: 34px;
  }

  .hero-v3-authority {
    right: 12px;
    bottom: 18px;
    max-width: 210px;
  }

  .hero-v3-copy h2 {
    font-size: 1.6rem;
  }
}

.hero-v3-mobile-cta {
  display: none;
}

@media (max-width: 767px) {
  .hero-v3-mobile-cta {
    width: 100%;
    margin-top: 22px;
    padding: 15px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #fff;
    background: #e50914;
    box-shadow: 0 10px 26px rgba(229, 9, 20, 0.28);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}
