/* ===================================================
   MÉTODO CICLO NOVO - STYLE
   Paleta: Preto fosco + Dourado fosco + Branco gelo
   =================================================== */

:root {
  --preto: #0B0B0B;
  --preto-suave: #141414;
  --preto-card: #181818;
  --dourado: #C8A96B;
  --dourado-claro: #DCC089;
  --dourado-escuro: #8E764A;
  --branco: #F5F5F5;
  --cinza: #9A9A9A;
  --cinza-borda: #2A2A2A;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;

  --shadow-gold: 0 8px 32px rgba(200, 169, 107, 0.15);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--preto);
  color: var(--branco);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ================ UTILITÁRIOS ================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  text-align: center;
}

.section-title em {
  font-style: italic;
  color: var(--dourado);
  font-weight: 500;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--cinza);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

.gold {
  color: var(--dourado);
}

.divider-gold {
  width: 60px;
  height: 1px;
  background: var(--dourado);
  margin: 0 auto 32px;
  position: relative;
}

.divider-gold::before,
.divider-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--dourado);
  border-radius: 50%;
  transform: translateY(-50%);
}

.divider-gold::before { left: -10px; }
.divider-gold::after { right: -10px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--dourado);
  text-align: center;
  margin-bottom: 20px;
  display: block;
}

/* ================ BOTÕES ================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 44px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--dourado) 0%, var(--dourado-claro) 50%, var(--dourado) 100%);
  background-size: 200% 100%;
  color: var(--preto);
  box-shadow: 0 10px 40px rgba(200, 169, 107, 0.25);
}

.btn-primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(200, 169, 107, 0.4);
}

.btn-primary::after {
  content: '→';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: translateX(6px);
}

.btn-outline {
  background: transparent;
  color: var(--dourado);
  border: 1px solid var(--dourado);
}

.btn-outline:hover {
  background: var(--dourado);
  color: var(--preto);
}

/* ================ HEADER / LOGO ================ */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 0;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--branco);
}

.logo-text span {
  color: var(--dourado);
  font-style: italic;
}

.logo-img {
  max-height: 50px;
  width: auto;
}

/* ================ HERO ================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(200, 169, 107, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(200, 169, 107, 0.04) 0%, transparent 50%),
    var(--preto);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 169, 107, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 107, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  text-align: left;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
}

.hero-title em {
  font-style: italic;
  color: var(--dourado);
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--cinza);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin-bottom: 32px;
}

.hero-form input {
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--cinza-borda);
  color: var(--branco);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s ease;
}

.hero-form input:focus {
  border-color: var(--dourado);
}

.hero-form input::placeholder {
  color: var(--cinza);
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--cinza);
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-trust span {
  color: var(--dourado);
  font-weight: 600;
}

/* HERO IMAGE */
.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--preto-card) 0%, var(--preto) 100%);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
}

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

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  border-top: 1px solid var(--dourado);
  border-left: 1px solid var(--dourado);
  z-index: 2;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 80px;
  height: 80px;
  border-bottom: 1px solid var(--dourado);
  border-right: 1px solid var(--dourado);
  z-index: 2;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at center, rgba(200, 169, 107, 0.1) 0%, transparent 70%),
    var(--preto-suave);
}

/* ================ AUTORIDADE ================ */
.autoridade {
  background: var(--preto-suave);
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
}

.autoridade-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.autoridade-img {
  aspect-ratio: 3 / 4;
  background: var(--preto-card);
  border: 1px solid var(--cinza-borda);
  overflow: hidden;
  position: relative;
}

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

.autoridade-content h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.autoridade-content h2 em {
  font-style: italic;
  color: var(--dourado);
}

.autoridade-content p {
  color: var(--cinza);
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.autoridade-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--cinza-borda);
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza);
}

/* ================ O QUE É O MÉTODO ================ */
.metodo {
  background: var(--preto);
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.metodo-card {
  background: var(--preto-suave);
  border: 1px solid var(--cinza-borda);
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s ease;
}

.metodo-card:hover {
  border-color: var(--dourado);
  transform: translateY(-4px);
}

.metodo-card-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dourado);
  margin-bottom: 24px;
}

.metodo-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.metodo-card p {
  color: var(--cinza);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ================ PARA QUEM É ================ */
.para-quem {
  background: var(--preto-suave);
  border-top: 1px solid var(--cinza-borda);
}

.para-quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.para-quem-card {
  padding: 48px 40px;
  border: 1px solid var(--cinza-borda);
  background: var(--preto);
}

.para-quem-card.sim {
  border-color: var(--dourado);
  background: linear-gradient(180deg, rgba(200, 169, 107, 0.04) 0%, transparent 100%);
}

.para-quem-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--cinza-borda);
}

.para-quem-card.sim h3 {
  color: var(--dourado);
}

.para-quem-list {
  list-style: none;
}

.para-quem-list li {
  padding: 14px 0;
  display: flex;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--branco);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.para-quem-list li::before {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.para-quem-card.sim li::before {
  content: '✓';
  color: var(--dourado);
}

.para-quem-card.nao li::before {
  content: '✕';
  color: #5A5A5A;
}

.para-quem-card.nao li {
  color: var(--cinza);
}

/* ================ MÓDULOS ================ */
.modulos {
  background: var(--preto);
}

.modulos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.modulo-item {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--preto-suave);
  border: 1px solid var(--cinza-borda);
  transition: all 0.4s ease;
}

.modulo-item:hover {
  border-color: var(--dourado);
}

.modulo-numero {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 500;
  color: var(--dourado);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.modulo-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.modulo-content p {
  color: var(--cinza);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ================ BÔNUS ================ */
.bonus {
  background: var(--preto-suave);
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
  position: relative;
  overflow: hidden;
}

.bonus::before {
  content: 'BÔNUS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 22rem;
  font-weight: 700;
  color: rgba(200, 169, 107, 0.025);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.bonus-card {
  background: var(--preto);
  border: 1px solid var(--cinza-borda);
  padding: 36px;
  position: relative;
  transition: all 0.4s ease;
}

.bonus-card:hover {
  border-color: var(--dourado);
  transform: translateY(-3px);
}

.bonus-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  padding: 6px 14px;
  border: 1px solid var(--dourado);
}

.bonus-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding-right: 80px;
}

.bonus-card p {
  color: var(--cinza);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bonus-valor {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--dourado);
  padding-top: 16px;
  border-top: 1px solid var(--cinza-borda);
}

.bonus-valor span {
  text-decoration: line-through;
  opacity: 0.7;
}

/* ================ DEPOIMENTOS ================ */
.depoimentos {
  background: var(--preto);
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.depoimento-card {
  background: var(--preto-suave);
  border: 1px solid var(--cinza-borda);
  padding: 40px;
  position: relative;
}

.depoimento-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  left: 24px;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--dourado);
  line-height: 1;
  opacity: 0.4;
}

.depoimento-texto {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--branco);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.depoimento-autor {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--cinza-borda);
}

.depoimento-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dourado), var(--dourado-escuro));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--preto);
  flex-shrink: 0;
}

.depoimento-info h4 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.depoimento-info p {
  font-size: 0.82rem;
  color: var(--cinza);
  letter-spacing: 0.04em;
}

/* ================ NÚMEROS / RESULTADOS ================ */
.numeros {
  background: var(--preto-suave);
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
  padding: 80px 0;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.numero-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--cinza-borda);
}

.numero-item:last-child {
  border-right: none;
}

.numero-valor {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.numero-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cinza);
}

/* ================ OFERTA / PREÇO ================ */
.oferta {
  background: var(--preto);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.oferta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(200, 169, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.oferta-box {
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(180deg, var(--preto-suave) 0%, var(--preto-card) 100%);
  border: 1px solid var(--dourado);
  padding: 60px 50px;
  position: relative;
  z-index: 2;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.oferta-box::before,
.oferta-box::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--dourado);
  border-style: solid;
}

.oferta-box::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
}

.oferta-box::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
}

.oferta-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  padding: 8px 20px;
  border: 1px solid var(--dourado);
  margin-bottom: 32px;
}

.oferta-titulo {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

.oferta-subtitulo {
  color: var(--cinza);
  margin-bottom: 40px;
  font-size: 0.98rem;
}

.preco-de {
  font-size: 1.05rem;
  color: var(--cinza);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.preco-por {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.preco-por .moeda {
  font-size: 1.6rem;
  vertical-align: top;
  margin-right: 6px;
  font-style: italic;
}

.preco-por .centavos {
  font-size: 1.8rem;
  vertical-align: top;
}

.preco-parcelas {
  font-size: 0.92rem;
  color: var(--cinza);
  margin-bottom: 36px;
}

.preco-parcelas strong {
  color: var(--branco);
}

.oferta .btn-primary {
  width: 100%;
  padding: 22px;
  font-size: 1rem;
}

.oferta-pagamentos {
  margin-top: 24px;
  font-size: 0.78rem;
  color: var(--cinza);
  letter-spacing: 0.08em;
}

/* ================ CONTADOR (KIWIFY STYLE) ================ */
.contador-bar {
  background: linear-gradient(90deg, var(--dourado-escuro), var(--dourado), var(--dourado-escuro));
  color: var(--preto);
  padding: 12px 24px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 90;
  flex-wrap: wrap;
}

.contador-bar strong {
  font-weight: 700;
}

.contador-bar .hide-mobile {
  display: inline;
}

.contador-clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.contador-clock span {
  background: var(--preto);
  color: var(--dourado);
  padding: 4px 8px;
  min-width: 32px;
  display: inline-block;
  text-align: center;
}

.contador-clock i {
  font-style: normal;
}

/* ================ GARANTIA ================ */
.garantia {
  background: var(--preto-suave);
  border-top: 1px solid var(--cinza-borda);
  border-bottom: 1px solid var(--cinza-borda);
}

.garantia-box {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 50px;
  border: 1px solid var(--dourado);
  background: var(--preto);
  position: relative;
}

.garantia-selo {
  width: 140px;
  height: 140px;
  border: 2px solid var(--dourado);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  position: relative;
  flex-shrink: 0;
}

.garantia-selo::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  opacity: 0.5;
}

.garantia-selo .dias {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--dourado);
  line-height: 1;
}

.garantia-selo .texto {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-top: 4px;
}

.garantia-content h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.garantia-content h3 em {
  font-style: italic;
  color: var(--dourado);
}

.garantia-content p {
  color: var(--cinza);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ================ FAQ ================ */
.faq {
  background: var(--preto);
}

.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--cinza-borda);
}

.faq-item:first-child {
  border-top: 1px solid var(--cinza-borda);
}

.faq-pergunta {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--branco);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-pergunta:hover {
  color: var(--dourado);
}

.faq-pergunta .icon {
  font-size: 1.5rem;
  color: var(--dourado);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.aberto .faq-pergunta .icon {
  transform: rotate(45deg);
}

.faq-resposta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-resposta-inner {
  padding: 0 0 28px;
  color: var(--cinza);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.aberto .faq-resposta {
  max-height: 400px;
}

/* ================ CTA FINAL ================ */
.cta-final {
  background: var(--preto-suave);
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid var(--cinza-borda);
}

.cta-final h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.2;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final h2 em {
  font-style: italic;
  color: var(--dourado);
}

.cta-final p {
  color: var(--cinza);
  margin-bottom: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ================ FOOTER ================ */
.site-footer {
  background: var(--preto);
  border-top: 1px solid var(--cinza-borda);
  padding: 60px 0 110px;
  text-align: center;
}

.site-footer .logo-text {
  margin-bottom: 24px;
  display: inline-block;
}

.footer-links {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--cinza);
  font-size: 0.88rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--dourado);
}

.footer-copy {
  color: var(--cinza);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding-top: 30px;
  border-top: 1px solid var(--cinza-borda);
  line-height: 1.7;
}

/* ================ WHATSAPP BOTÃO FLUTUANTE ================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid #25D366;
  border-radius: 50%;
  opacity: 0;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ================ VSL (PÁGINA 2) ================ */
.hero-vsl {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-vsl .hero-title {
  text-align: center;
}

.hero-vsl .hero-subtitle {
  margin: 0 auto 50px;
  text-align: center;
}

.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--preto-card);
  border: 1px solid var(--cinza-borda);
  margin-bottom: 40px;
  overflow: hidden;
}

.vsl-frame::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 60px;
  height: 60px;
  border-top: 1px solid var(--dourado);
  border-left: 1px solid var(--dourado);
}

.vsl-frame::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 60px;
  height: 60px;
  border-bottom: 1px solid var(--dourado);
  border-right: 1px solid var(--dourado);
}

.vsl-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background:
    radial-gradient(circle at center, rgba(200, 169, 107, 0.15) 0%, transparent 60%),
    var(--preto-suave);
  cursor: pointer;
  position: relative;
}

.vsl-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--dourado);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.vsl-play-btn:hover {
  transform: scale(1.05);
}

.vsl-play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 24px solid var(--preto);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}

.vsl-label {
  color: var(--cinza);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.btn-vsl-revelar {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-vsl-revelar.visivel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.vsl-aviso {
  color: var(--cinza);
  font-size: 0.85rem;
  margin-top: 16px;
  font-style: italic;
}

.vsl-aviso.escondido {
  display: none;
}

/* ================ PÁGINA 3 - CINEMATOGRÁFICO ================ */
.hero-cinema {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-cinema-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-cinema-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--preto) 30%, transparent 70%),
    linear-gradient(180deg, transparent 60%, var(--preto) 100%);
  z-index: 2;
}

.hero-cinema-bg img {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-cinema-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding-top: 100px;
}

.hero-cinema-title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-cinema-title em {
  font-style: italic;
  color: var(--dourado);
  font-weight: 500;
}

/* ================ PÁGINA 4 - PROVA SOCIAL ================ */
.hero-prova {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(200, 169, 107, 0.06) 0%, transparent 60%),
    var(--preto);
}

.hero-prova-bullets {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.hero-prova-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--branco);
}

.hero-prova-bullet::before {
  content: '✦';
  color: var(--dourado);
  font-size: 1rem;
}

.hero-prova-depo {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 40px;
  border: 1px solid var(--cinza-borda);
  background: var(--preto-suave);
  position: relative;
}

.hero-prova-depo .depoimento-texto {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.hero-prova-depo .depoimento-autor {
  justify-content: center;
  border-top: none;
  padding-top: 0;
}

.hero-prova .btn {
  margin-top: 48px;
}

/* ================ REVEAL ON SCROLL ================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visivel {
  opacity: 1;
  transform: translateY(0);
}

/* ================ RESPONSIVE / MOBILE ================ */
@media (max-width: 968px) {
  .section { padding: 70px 0; }

  .hero { padding: 120px 0 60px; min-height: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .hero-content .eyebrow { text-align: center; }

  .hero-title { font-size: 2.2rem; }

  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .hero-form { margin-left: auto; margin-right: auto; }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-image-wrap {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  .autoridade-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .autoridade-img {
    max-width: 340px;
    margin: 0 auto;
  }

  .autoridade-stats {
    gap: 16px;
  }

  .metodo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .para-quem-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .para-quem-card { padding: 36px 28px; }

  .modulos-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .modulo-item {
    padding: 24px;
    gap: 18px;
  }

  .modulo-numero {
    font-size: 2rem;
    min-width: 50px;
  }

  .bonus-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bonus::before { font-size: 12rem; }

  .bonus-card { padding: 28px 24px; }

  .bonus-card h3 { padding-right: 0; margin-top: 40px; }

  .bonus-tag { top: 20px; left: 24px; right: auto; }

  .depoimentos-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .depoimento-card { padding: 32px 28px; }

  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .numero-item {
    border-right: none;
    padding: 20px 12px;
  }

  .numero-valor { font-size: 2.4rem; }

  .oferta { padding: 70px 0; }

  .oferta-box { padding: 40px 28px; }

  .preco-por { font-size: 3rem; }

  .garantia-box {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
    text-align: center;
  }

  .garantia-selo {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }

  .contador-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.78rem;
    padding: 10px 14px;
  }

  .contador-bar .hide-mobile { display: none; }

  .contador-clock { font-size: 0.9rem; }
  .contador-clock span { padding: 3px 6px; min-width: 26px; }

  .site-header { padding: 18px 0; }
  .logo-text { font-size: 1.2rem; }

  .footer-links { gap: 20px; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  /* Hero cinema mobile */
  .hero-cinema-bg img {
    width: 100%;
    opacity: 0.35;
  }

  .hero-cinema-bg::before {
    background: linear-gradient(180deg, rgba(11,11,11,0.7) 0%, var(--preto) 100%);
  }

  .hero-cinema-content {
    text-align: center;
    max-width: 100%;
    padding-top: 80px;
  }

  /* Hero prova mobile */
  .hero-prova-bullets {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  /* VSL mobile */
  .vsl-play-btn {
    width: 70px;
    height: 70px;
  }

  .vsl-play-btn::after {
    border-left-width: 18px;
    border-top-width: 11px;
    border-bottom-width: 11px;
  }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero { padding: 100px 0 50px; }
  .hero-title { font-size: 1.9rem; }
  .section-title { font-size: 1.7rem; }
  .preco-por { font-size: 2.6rem; }
  .oferta-titulo { font-size: 1.5rem; }
  .btn { padding: 17px 30px; font-size: 0.85rem; }
}
