:root {
  --preto-carvao: #050509;
  --preto-profundo: #020308;
  --bronze: #c08f55;
  --bronze-soft: #d8aa6b;
  --champagne: #f3e2c8;
  --ambar: #f0cda0;
  --texto: #f5f0e8;
  --cinza-fumaca: #15161c;
}

/* RESET BÁSICO */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  background: radial-gradient(circle at 10% 0%, #2c1b11 0, #050509 45%, #020308 100%);
  color: var(--texto);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 90px; /* espaço para barra fixa */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* CENA PRINCIPAL / TEXTURA */

.page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at -10% 0%, rgba(240, 205, 160, 0.35), transparent 55%),
    radial-gradient(circle at 120% 100%, rgba(10, 151, 177, 0.25), transparent 60%),
    linear-gradient(135deg, #020308 0%, #050509 35%, #101623 70%, #2c1b11 100%);
}

/* noise suave */
.page::before {
  content: "";
  position: fixed;
  inset: -50px;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 0);
  background-size: 3px 3px;
  opacity: 0.05;
  mix-blend-mode: soft-light;
  z-index: -2;
}

/* vinheta */
.page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 220px rgba(0, 0, 0, 0.96);
  z-index: -1;
}

/* LAYOUT GERAL */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.6rem;
}

section {
  padding: 3.5rem 0;
  position: relative;
}

/* TITULAÇÃO */

.section-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.9rem;
  text-align: center;
  margin-bottom: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-image: linear-gradient(180deg, #f8e6c7 0%, #d9a764 45%, #925c2f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 10px 30px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(240, 205, 160, 0.4);
}

.section-subtitle {
  text-align: center;
  font-size: 0.98rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  color: rgba(231, 217, 201, 0.82);
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 205, 160, 0.5);
  background: radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.18), transparent 65%),
    rgba(10, 10, 13, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 205, 160, 0.9);
}

/* BOTÕES */

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 205, 160, 0.95);
  /* textura de ouro: gradientes empilhados + listras suaves */
  background-image:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.6), transparent 60%),
    linear-gradient(135deg, #fdf4dc 0%, #f3d39f 30%, #d69f5c 52%, #a86830 72%, #f2d5a6 100%),
    repeating-linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.35) 0,
      rgba(255, 255, 255, 0.35) 1px,
      rgba(255, 255, 255, 0) 1px,
      rgba(255, 255, 255, 0) 5px
    );
  background-blend-mode: normal, soft-light, overlay;
  color: #140c05;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(240, 205, 160, 0.5);
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition:
    transform 0.16s ease-out,
    box-shadow 0.16s ease-out,
    filter 0.16s ease-out;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.75) 50%,
    transparent 100%
  );
  transform: translateX(-130%);
  opacity: 0;
  pointer-events: none;
}

.btn-primary:hover::after {
  opacity: 1;
  transform: translateX(130%);
  transition: transform 0.8s ease-out, opacity 0.2s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.98),
    0 0 38px rgba(240, 205, 160, 0.7);
  filter: brightness(1.03);
}


.btn-primary.btn-block {
  width: 100%;
  justify-content: center;
}

[data-magnetic] {
  will-change: transform;
}

.microcopy {
  font-size: 0.78rem;
  color: rgba(231, 217, 201, 0.68);
  margin-top: 0.75rem;
}

.divider-glow {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(192, 143, 85, 0) 0%,
    rgba(192, 143, 85, 0.85) 50%,
    rgba(192, 143, 85, 0) 100%
  );
  margin: 2.5rem auto 0;
}

/* TOP BAR */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(90deg, rgba(1, 1, 3, 0.96), rgba(5, 6, 8, 0.96));
  border-bottom: 1px solid rgba(192, 143, 85, 0.35);
  backdrop-filter: blur(14px);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.4rem;
  max-width: 1120px;
  margin: 0 auto;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(231, 217, 201, 0.9);
}

.top-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--ambar), #845525);
  box-shadow: 0 0 14px rgba(240, 205, 160, 0.95);
}

.top-bar-cta {
  display: none;
}

/* Topo centralizado no mobile */
@media (max-width: 767px) {
  .top-bar-inner {
    justify-content: center;   /* centraliza conteúdo dentro da barra */
  }

  .top-bar-left {
    margin: 0 auto;
  }
}


/* HERO */

.hero {
  min-height: calc(100vh - 52px);
  display: flex;
  align-items: flex-start;
  position: relative;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* foto de fundo + luzes suaves, sem blocos retangulares */
  background:
    radial-gradient(circle at 75% 10%, rgba(240, 205, 160, 0.45), transparent 55%),
    radial-gradient(circle at 0% 80%, rgba(3, 173, 212, 0.25), transparent 60%),
    linear-gradient(135deg, #050509 0%, #050509 40%, #111827 75%, #2b1810 100%),
    url("URL_BG_HERO_BLACK_DA_DECISAO");
  background-repeat: no-repeat;
  background-position: center, center, center, center right;
  background-size: cover, cover, cover, cover; /* tudo preenchendo a tela */
  mix-blend-mode: normal;
}

.hero-background::after {
  content: "";
  position: absolute;
  inset: 0;
  /* leve véu escuro pra dar contraste no card */
  background:
    radial-gradient(circle at 65% 0%, rgba(255, 255, 255, 0.12), transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.65), transparent 60%);
  mix-blend-mode: soft-light;
  opacity: 0.9;
  pointer-events: none;
}


.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 2.6rem;
  padding-bottom: 3.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1.7rem 2.2rem;
  border-radius: 26px;
  border: 1px solid rgba(240, 205, 160, 0.6);
  background:
    radial-gradient(circle at -10% 0%, rgba(240, 205, 160, 0.24), transparent 62%),
    radial-gradient(circle at 110% 110%, rgba(3, 173, 212, 0.22), transparent 65%),
    rgba(6, 6, 10, 0.93);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.98),
    0 0 40px rgba(240, 205, 160, 0.25);
  backdrop-filter: blur(16px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(240, 205, 160, 0.21);
  pointer-events: none;
}

.hero-logo {
  width: 230px;
  max-width: 75%;
  margin: 0 auto 1.6rem;
  position: relative;
  z-index: 1;
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.3rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  background-image: linear-gradient(180deg, #f8e6c7 0%, #d79f5f 45%, #8a5326 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 14px 40px rgba(0, 0, 0, 0.96),
    0 0 26px rgba(240, 205, 160, 0.55);
}

.hero-subtitle {
  font-size: 1.02rem;
  color: rgba(231, 217, 201, 0.94);
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.hero-text {
  font-size: 0.96rem;
  color: rgba(231, 217, 201, 0.82);
  margin-bottom: 1.7rem;
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 1;
}

.hero .btn-primary {
  margin-top: 0.2rem;
  position: relative;
  z-index: 1;
}

/* EMPATIA */

.section-empatia {
  background: radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(3, 173, 212, 0.16), transparent 60%),
    #090b12;
}

.section-empatia .section-title {
  text-transform: none;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
}

.section-empatia p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 0.98rem;
  color: rgba(231, 217, 201, 0.86);
}

/* PARA QUEM É */

.section-para-quem {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.25), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(3, 173, 212, 0.22), transparent 65%),
    #05070c;
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
  margin-top: 1.8rem;
}

.para-quem-card {
  padding: 1.3rem 1.1rem 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(192, 143, 85, 0.75);
  background:
    radial-gradient(circle at -10% 0%, rgba(240, 205, 160, 0.22), transparent 68%),
    radial-gradient(circle at 120% 130%, rgba(3, 173, 212, 0.2), transparent 68%),
    rgba(12, 18, 30, 0.96);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.96);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.para-quem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 1);
  border-color: rgba(240, 205, 160, 0.96);
  background:
    radial-gradient(circle at -10% 0%, rgba(240, 205, 160, 0.3), transparent 70%),
    radial-gradient(circle at 120% 130%, rgba(3, 173, 212, 0.26), transparent 70%),
    rgba(16, 24, 40, 0.98);
}

.para-quem-card h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.para-quem-card p {
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.84);
}

.para-quem-footer {
  margin-top: 2.4rem;
  font-size: 0.96rem;
  text-align: center;
  color: rgba(231, 217, 201, 0.9);
}

/* O QUE VAI TER ACESSO */

.section-acesso {
  background:
    radial-gradient(circle at 10% 0, rgba(240, 205, 160, 0.18), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(3, 173, 212, 0.22), transparent 70%),
    linear-gradient(160deg, #05060a 0%, #101722 45%, #05060a 100%);
}

.acesso-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2rem;
}

.acesso-card {
  padding: 1.25rem 1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(192, 143, 85, 0.7);
  background:
    radial-gradient(circle at -10% 0%, rgba(240, 205, 160, 0.2), transparent 65%),
    radial-gradient(circle at 120% 120%, rgba(3, 173, 212, 0.2), transparent 65%),
    rgba(13, 14, 20, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.96);
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.acesso-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 1);
  border-color: rgba(240, 205, 160, 0.96);
  background:
    radial-gradient(circle at -10% 0%, rgba(240, 205, 160, 0.28), transparent 70%),
    radial-gradient(circle at 120% 120%, rgba(3, 173, 212, 0.26), transparent 70%),
    rgba(16, 17, 25, 0.99);
}

.acesso-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(240, 205, 160, 0.9);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.75), rgba(240, 205, 160, 0.98));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.9);
  flex-shrink: 0;
}

.acesso-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--champagne);
  font-family: "Playfair Display", "Times New Roman", serif;
}

.acesso-card p {
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.86);
}

/* OFERTA */

.section-oferta {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.25), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(3, 173, 212, 0.2), transparent 70%),
    linear-gradient(180deg, #05060a 0%, #101722 60%, #020308 100%);
}

.bloco-ancora {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.bloco-ancora h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background-image: linear-gradient(180deg, #f8e6c7 0%, #d7a15f 50%, #8a5326 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 12px 32px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(240, 205, 160, 0.5);
  margin-bottom: 0.7rem;
}

.bloco-ancora p {
  font-size: 0.96rem;
  color: rgba(231, 217, 201, 0.88);
  margin-bottom: 0.5rem;
}

.bloco-ancora p strong {
  color: var(--bronze-soft);
}

.valores-real {
  display: inline-block;
  padding: 1.3rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(192, 143, 85, 0.95);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.22), transparent 70%),
    rgba(10, 10, 13, 0.96);
  font-size: 0.95rem;
  text-align: left;
  color: rgba(231, 217, 201, 0.96);
  margin-bottom: 2.4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.98);
}

.valores-real span {
  display: block;
}

.valores-real span + span {
  margin-top: 0.18rem;
}

.valores-real strong {
  color: var(--bronze-soft);
}

.valor-real-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(240, 205, 160, 0.95);
  margin-bottom: 0.4rem;
}

.card-oferta {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  padding: 2.1rem 1.7rem 2.5rem;
  border-radius: 30px;
  border: 1px solid rgba(240, 205, 160, 0.95);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.32), transparent 60%),
    radial-gradient(circle at 120% 120%, rgba(3, 173, 212, 0.26), transparent 70%),
    rgba(6, 6, 10, 0.98);
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 1),
    0 0 70px rgba(240, 205, 160, 0.45);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-oferta::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(240, 205, 160, 0.26);
  pointer-events: none;
}

.card-oferta h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background-image: linear-gradient(180deg, #f8e6c7 0%, #d79f5f 50%, #8a5326 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.card-oferta .sub {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(240, 205, 160, 0.95);
  margin-bottom: 1.1rem;
}

.preco-principal {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--champagne);
  margin-bottom: 0.25rem;
}

.preco-parcelado {
  font-size: 0.98rem;
  color: rgba(231, 217, 201, 0.9);
  margin-bottom: 0.4rem;
}

.preco-parcelado strong {
  color: var(--bronze-soft);
}

.tag-preco {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(240, 205, 160, 0.75);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 205, 160, 0.98);
  background: rgba(5, 6, 8, 0.96);
}

.oferta-unica {
  font-size: 0.88rem;
  color: rgba(241, 205, 170, 0.98);
  margin-bottom: 1.2rem;
}

.oferta-lista {
  list-style: none;
  text-align: left;
  max-width: 430px;
  margin: 0.5rem auto 1.6rem;
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.92);
}

.oferta-lista li {
  margin-bottom: 0.45rem;
  padding-left: 1.1rem;
  position: relative;
}

.oferta-lista li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bronze);
}

.porque-preco {
  max-width: 640px;
  margin: 0 auto 2.4rem;
  padding: 1.6rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(192, 143, 85, 0.8);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.2), transparent 70%),
    rgba(10, 10, 13, 0.97);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.98);
  font-size: 0.92rem;
  color: rgba(231, 217, 201, 0.9);
}

.porque-preco h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.05rem;
  color: var(--champagne);
  margin-bottom: 0.5rem;
}

.porque-preco p + p {
  margin-top: 0.4rem;
}

.quadro-decisao {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.quadro-decisao h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.1rem;
  color: var(--champagne);
  margin-bottom: 1rem;
}

.quadro-decisao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.quadro-card {
  padding: 0.95rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(192, 143, 85, 0.8);
  background: radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.16), transparent 60%),
    rgba(6, 8, 12, 0.98);
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.9);
  text-align: left;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.96);
}

.quadro-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 1);
  border-color: rgba(240, 205, 160, 0.96);
  background: radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.22), transparent 65%),
    rgba(10, 12, 18, 0.99);
}

.quadro-card strong {
  color: var(--bronze-soft);
  display: block;
  margin-bottom: 0.25rem;
}

/* MÓDULOS */

.section-modulos {
  background: #05070c;
}

.modulos-block {
  padding: 2rem 1.7rem;
  border-radius: 26px;
  margin-bottom: 2.6rem;
  border: 1px solid rgba(192, 143, 85, 0.75);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.98);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(3, 173, 212, 0.24), transparent 70%),
    radial-gradient(circle at 0 100%, rgba(240, 205, 160, 0.24), transparent 70%),
    rgba(6, 6, 10, 0.96);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.modulos-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 1);
  border-color: rgba(240, 205, 160, 0.95);
}

.modulos-header {
  position: relative;
  margin-bottom: 1.4rem;
}

.modulos-header h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background-image: linear-gradient(180deg, #f8e6c7 0%, #d7a15f 50%, #8a5326 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.modulos-header p {
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.88);
  margin-top: 0.45rem;
  max-width: 480px;
}

.modulos-thumb {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(192, 143, 85, 0.75);
  background: #000;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.96);
}

.modulos-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* SUPORTE */

.section-suporte {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.26), transparent 65%),
    #101722;
}

.suporte-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.2rem 1.7rem 2.5rem;
  border-radius: 28px;
  border: 1px solid rgba(240, 205, 160, 0.96);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.3), transparent 60%),
    radial-gradient(circle at 120% 120%, rgba(3, 173, 212, 0.22), transparent 72%),
    rgba(6, 8, 13, 0.97);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 1),
    0 0 60px rgba(240, 205, 160, 0.4);
  position: relative;
  overflow: hidden;
  animation: suporteGlow 3.8s ease-in-out infinite alternate;
}

@keyframes suporteGlow {
  from {
    box-shadow:
      0 26px 80px rgba(0, 0, 0, 0.97),
      0 0 34px rgba(240, 205, 160, 0.32);
  }
  to {
    box-shadow:
      0 36px 110px rgba(0, 0, 0, 1),
      0 0 62px rgba(240, 205, 160, 0.5);
  }
}

.suporte-card-inner {
  position: relative;
  z-index: 1;
}

.suporte-card-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}

.suporte-card-header h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.45rem;
  color: var(--champagne);
}

.suporte-card p {
  font-size: 0.94rem;
  color: rgba(231, 217, 201, 0.9);
  margin-bottom: 0.85rem;
}

.suporte-list {
  list-style: none;
  margin-top: 0.8rem;
}

.suporte-list li {
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.9);
  margin-bottom: 0.4rem;
  padding-left: 1.1rem;
  position: relative;
}

.suporte-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--bronze);
}

/* TEMPO */

.section-tempo {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.2), transparent 60%),
    #05070c;
}

.section-tempo p {
  font-size: 0.96rem;
  color: rgba(231, 217, 201, 0.88);
  max-width: 640px;
  margin: 0 auto 0.75rem;
}

/* BIO */

.section-bio {
  background: linear-gradient(160deg, #101722 0%, #05070c 80%);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: center;
  margin-top: 1.2rem;
}

.bio-photo {
  width: 100%;
  max-width: 320px;
  height: 0;
  padding-bottom: 120%;
  border-radius: 26px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(192, 143, 85, 0.85);
  box-shadow:
    0 30px 85px rgba(0, 0, 0, 0.98),
    0 0 38px rgba(240, 205, 160, 0.3);
  background: #000 center/cover no-repeat;
}

.bio-text h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--champagne);
}

.bio-text p {
  font-size: 0.95rem;
  color: rgba(231, 217, 201, 0.88);
  margin-bottom: 0.6rem;
}

/* DEPOIMENTOS */

.section-depo {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.18), transparent 60%),
    #05070c;
}

.depo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.depo-card {
  padding: 1.1rem 1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(192, 143, 85, 0.8);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.22), transparent 60%),
    rgba(12, 10, 16, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.96);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.depo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 32px 85px rgba(0, 0, 0, 1);
  border-color: rgba(240, 205, 160, 0.96);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.28), transparent 65%),
    rgba(16, 14, 22, 0.99);
}

.depo-media {
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(192, 143, 85, 0.85);
  background: #000 center/cover no-repeat;
  aspect-ratio: 16 / 9;
}

.depo-aspas {
  font-size: 1.6rem;
  line-height: 0;
  color: rgba(240, 205, 160, 0.96);
  margin-bottom: 0.4rem;
}

.depo-text {
  font-size: 0.9rem;
  color: rgba(231, 217, 201, 0.9);
  margin-bottom: 0.7rem;
}

.depo-name {
  font-size: 0.85rem;
  color: rgba(240, 205, 160, 0.96);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FAQ */

.section-faq {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 205, 160, 0.24), transparent 60%),
    #020308;
}

.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(192, 143, 85, 0.75);
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.16), transparent 60%),
    rgba(12, 12, 16, 0.98);
  padding: 0.9rem 1rem;
  margin-bottom: 0.85rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.faq-item.open {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.22), transparent 70%),
    rgba(12, 12, 16, 0.99);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.96);
  border-color: rgba(240, 205, 160, 0.96);
  transform: translateY(-2px);
}

.faq-item:hover {
  background:
    radial-gradient(circle at 0 0, rgba(240, 205, 160, 0.2), transparent 70%),
    rgba(12, 12, 16, 0.99);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(231, 217, 201, 0.96);
}

.faq-toggle {
  font-size: 1.1rem;
  color: rgba(240, 205, 160, 0.96);
  transition: transform 0.2s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  margin-top: 0.5rem;
  font-size: 0.88rem;
  color: rgba(231, 217, 201, 0.86);
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

/* CTA FINAL */

.section-cta-final {
  background:
    radial-gradient(circle at 50% 0, rgba(240, 205, 160, 0.22), transparent 60%),
    #020308;
  text-align: center;
}

.section-cta-final p {
  max-width: 560px;
  margin: 0 auto 1.8rem;
  font-size: 0.98rem;
  color: rgba(231, 217, 201, 0.9);
}

/* FOOTER */

footer {
  text-align: center;
  padding: 1.8rem 1.2rem 2.6rem;
  font-size: 0.78rem;
  color: rgba(231, 217, 201, 0.6);
  background: #020308;
}

/* BARRA FIXA – compatível com iPhone com notch / tela maior */

.sticky-offer-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0; /* padrão desktop / android */
  z-index: 50;
  padding: 0.75rem 1.4rem 0.75rem;
  background:
    radial-gradient(circle at 50% 0, rgba(240, 205, 160, 0.26), transparent 75%),
    rgba(5, 6, 8, 0.98);
  border-top: 1px solid rgba(192, 143, 85, 0.65);
  box-shadow: 0 -16px 55px rgba(0, 0, 0, 0.95);
  transform: translateY(0);
  transition: transform 0.25s ease;
}

/* em navegadores que entendem safe-area (Safari iOS) */
@supports (bottom: env(safe-area-inset-bottom)) {
  .sticky-offer-bar {
    bottom: env(safe-area-inset-bottom);   /* cola de verdade na borda útil da tela */
    padding-bottom: 0.75rem;               /* já temos o safe-area no bottom */
  }
}

.sticky-offer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(231, 217, 201, 0.95);
}

.sticky-offer-bar.hide {
  transform: translateY(100%);
}


/* REVEAL
   O conteúdo fica visível por padrão (se o JS não carregar).
   Quem controla animação é só o JavaScript. */

.reveal {
  /* deixamos sem opacity 0 aqui de propósito */
}

/* RESPONSIVO */

@media (min-width: 768px) {
  .top-bar-cta {
    display: inline-flex;
  }

  .hero-inner {
    padding-top: 3rem;
    min-height: calc(100vh - 64px);
  }

  .hero-card {
    max-width: 760px;
    padding: 2.3rem 2.3rem 2.7rem;
  }

  .hero-title {
    font-size: 2.7rem;
  }

  .section-para-quem .container {
    max-width: 980px;
  }

  .para-quem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .acesso-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modulos-block {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.8rem;
  }

  .modulos-block:nth-child(even) {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .bio-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  }

  .depo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quadro-decisao-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .sticky-offer-inner {
    font-size: 0.86rem;
  }
}

/* OURO CLARO + GRANULADO FORTE NOS TÍTULOS */

.section-title,
.hero-title,
.bloco-ancora h2,
.card-oferta h2,
.modulos-header h2 {
  /* gradiente base mais claro */
  background-image:
    linear-gradient(
      180deg,
      #fffaf0 0%,
      #f9e2b8 25%,
      #edc279 55%,
      #c7823a 80%,
      #703716 100%
    ),
    /* brilho suave */
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.7), transparent 55%),
    /* granulado claro (bem forte) */
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.85) 0,      /* ← opacidade alta */
      rgba(255, 255, 255, 0.85) 0.6px,  /* ← linhas bem finas e próximas */
      rgba(255, 255, 255, 0) 0.6px,
      rgba(255, 255, 255, 0) 2px
    ),
    /* granulado escuro mais denso */
    repeating-linear-gradient(
      45deg,
      rgba(0, 0, 0, 0.45) 0,            /* ← sombra do granulado */
      rgba(0, 0, 0, 0.45) 1px,
      rgba(0, 0, 0, 0) 1px,
      rgba(0, 0, 0, 0) 3px
    );
  background-blend-mode: normal, soft-light, overlay, overlay;
  background-size: 260% 260%;          /* ← aumenta pra “espalhar” a textura */
  background-position: 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


