/* ==========================================================================
   TUDO DE BOM EROS — V2 HIGH CONVERSION
   Greek Mythology Aesthetics + Masculine High Performance Conversion
   ========================================================================== */

/* ---------- Fonts ---------- */
/* 1. Display Único (FOGO) */
@font-face {
  font-family: 'Ranemia';
  src: url('assets/fonts/Ranemia.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 2. Fonte Serifada (Títulos, Headings e Citações) */
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/eb-garamond-400-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/eb-garamond-400-italic-latin.woff2') format('woff2');
}

/* 3. Fonte Sem Serifa (Textos, Interface, Botões e Preços) */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/jost-400-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/jost-500-normal-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/jost-600-normal-latin.woff2') format('woff2');
}

/* ---------- Variables ---------- */
:root {
  --bg: #06080f;
  --cream: #ede7da;
  --cream-60: rgba(237, 231, 218, 0.6);
  --cream-72: rgba(237, 231, 218, 0.72);
  --cream-82: rgba(237, 231, 218, 0.82);
  --cream-85: rgba(237, 231, 218, 0.85);
  --gold: #d4a843;
  --gold-light: #f0ce7e;
  --gold-lighter: #f8dc9a;
  --gold-mid: #be9032;
  --gold-gradient: linear-gradient(180deg, #f8dc9a 0%, #d4a843 55%, #9a7426 100%);
  --gold-text-gradient: linear-gradient(90deg, #d4a843 0%, #fef1cf 50%, #d4a843 100%);
  --gold-text-gradient-soft: linear-gradient(90deg, #edd48a 0%, #fff7e0 38%, #f0cd72 70%, #edd48a 100%);
  --gold-line: rgba(212, 168, 67, 0.28);

  /* Fontes Consolidadas: Ranemia (Display), EB Garamond (Serif) e Jost (Sans) */
  --font-ranemia: 'Ranemia', serif;
  --font-serif: 'EB Garamond', serif;
  --font-sans: 'Jost', sans-serif;

  --font-heading: var(--font-serif);
  --font-display: var(--font-serif);
  --font-serif-body: var(--font-serif);
  --font-label: var(--font-sans);

  --container: 1080px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Common UI Components ---------- */
.eyebrow {
  font-family: var(--font-serif-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 4.7px;
  text-transform: uppercase;
  color: var(--gold);
}

.sala-tag {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cream-72);
  margin-bottom: 12px;
}

.sala-tag span {
  color: var(--gold);
}

.sala-tag--center {
  text-align: center;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 46px;
  border: 1px solid var(--gold-light);
  background: var(--gold-gradient);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.55), 0 8px 24px rgba(212, 168, 67, 0.25);
  font-family: var(--font-label);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: #0b0b10;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

.btn-gold::before,
.btn-gold::after {
  content: '◆';
  font-size: 8px;
  color: rgba(11, 11, 16, 0.6);
  flex-shrink: 0;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.55), 0 14px 32px rgba(212, 168, 67, 0.4);
}

/* ---------- Marquee / Top Bar ---------- */
.marquee {
  width: 100%;
  height: 38px;
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid rgba(212, 168, 67, 0.25);
  display: flex;
  align-items: center;
}

.marquee--divider {
  display: none;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold-light);
  white-space: nowrap;
}

.marquee__item::after {
  content: '✦';
  color: var(--gold);
  margin: 0 24px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
  .sticky-offer {
    transition: none;
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: max(740px, calc(100vh - 38px));
  max-height: 920px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: url('assets/images/bgs/webp/01-hero-desktop.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
}

.hero__veil {
  display: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 7, 12, 0.55));
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 600px;
  max-width: 100%;
  margin-left: max(24px, calc((100vw - var(--container)) / 2));
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__title {
  font-weight: 400;
}

.hero__title-line {
  display: block;
  font-family: var(--font-heading);
  font-size: 38px;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 4px;
}

.hero__title-fire {
  display: block;
  font-family: var(--font-ranemia);
  font-weight: 400;
  font-size: 140px;
  line-height: 0.95;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #be9032 0%, #ffe5a7 50%, #d4a843 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__question {
  font-family: var(--font-heading);
  font-size: 42px;
  line-height: 1.1;
  color: var(--cream);
  margin-top: -30px;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: var(--cream-82);
  max-width: 540px;
}

.hero__sub strong {
  color: var(--gold-light);
  font-weight: 600;
}

.hero__product {
  display: none;
}

.hero__sub-br,
.hero__sub-desc {
  display: inline;
}

.sub__featured {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  color: var(--gold-light);
}

.hero__cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.hero__guarantee {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream-72);
}

.hero__guarantee strong {
  font-weight: 600;
  color: var(--gold-light);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.hero__proof-text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream-85);
}

.hero__proof-text strong {
  font-weight: 600;
  color: var(--gold-light);
}

.hero__proof-text--mobile {
  display: none;
}

.hero__proof-text--desktop {
  display: inline;
}

.hero__proof-suffix {
  display: inline;
}

.hero__seals {
  font-family: var(--font-sans);
  font-size: 10.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--cream-60);
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  padding-top: 14px;
  margin-top: 8px;
}

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

/* ---------- Sala I — A Queda / Identificação ---------- */
.ruins-queda {
  position: relative;
  background-color: #06080f;
  background-image: url('assets/images/bgs/webp/03-a-queda-desktop.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.ruins-queda::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.94) 0%, rgba(5, 7, 13, 0.72) 42%, rgba(5, 7, 13, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.98) 0%, transparent 18%, transparent 82%, rgba(5, 7, 13, 0.98) 100%);
  pointer-events: none;
  z-index: 1;
}

.ruins-queda__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.ruins-queda__titulo {
  margin-bottom: 32px;
  line-height: 1.15;
}

/* ==========================================================================
   PADRÃO DE TÍTULOS DE SEÇÃO
   ========================================================================== */

/* ---------- Padrão 1: Títulos em Duas Linhas (Salas I a IV) ---------- */
.sala-title-top,
.ruins-queda__titulo-top,
.versus__title-top,
.formula__titulo-top,
.ruins-semanas__titulo-top {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.2px;
  line-height: 1.15;
  margin-bottom: 3px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.ruins-queda__titulo-top {
  font-size: 38px;
  margin-bottom: 4px;
}

.sala-title-grad,
.ruins-queda__titulo-grad,
.versus__title-grad,
.formula__titulo-grad,
.ruins-semanas__titulo-grad {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(212, 168, 67, 0.18));
}

.ruins-queda__titulo-grad {
  font-size: 46px;
}

/* ---------- Padrão 2: Títulos Corridos com Ênfase Dourada (Mortais, Juramento, Oráculo) ---------- */
.mortais__title,
.juramento__title,
.oraculo__titulo {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--cream);
  margin-top: 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
}

.mortais__title {
  font-size: 36px;
  margin: 12px 0 16px;
  line-height: 1.15;
}

.mortais__title em,
.mortais__title strong,
.juramento__title em,
.juramento__title strong,
.oraculo__titulo em,
.oraculo__titulo strong,
.oraculo__titulo span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: var(--gold-text-gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(212, 168, 67, 0.18));
}

.ruins-queda__p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--cream-82);
  max-width: 620px;
  margin: 0 auto 28px;
  letter-spacing: 0.15px;
}

.ruins-queda__duvida {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  display: inline-block;
  letter-spacing: 0.2px;
}

.ruins-queda__destaque {
  position: relative;
  max-width: 660px;
  margin: 36px auto;
  padding: 28px 36px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.08) 0%, transparent 70%),
    linear-gradient(135deg, rgba(16, 20, 32, 0.85) 0%, rgba(8, 10, 18, 0.90) 100%);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(212, 168, 67, 0.22);
  border-top: 1px solid rgba(212, 168, 67, 0.38);
  border-radius: 8px;
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 30px rgba(212, 168, 67, 0.03);
  text-align: center;
}

.ruins-queda__destaque-title {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  color: #f7e2af;
  line-height: 1.25;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(212, 168, 67, 0.2);
}

.ruins-queda__destaque-text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-style: normal;
  line-height: 1.7;
  color: var(--cream-85);
  letter-spacing: 0.15px;
  margin: 0;
  text-wrap: balance;
}

.ruins-queda__destaque-text strong {
  color: var(--cream);
  font-weight: 600;
}

.ruins-queda__p-mobile,
.ruins-queda__destaque-text--mobile {
  display: none;
}

.ruins-queda__p-desktop {
  display: inline;
}

.ruins-queda__destaque-text--desktop {
  display: block;
}

.ruins-queda__destaque-fechamento {
  font-weight: 500;
  color: var(--cream);
}

.ruins-queda__p--final {
  max-width: 600px;
  margin: 30px auto 26px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-72);
}

.ruins-queda__final-em {
  font-family: var(--font-serif);
  font-size: 18.5px;
  font-style: italic;
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  margin-top: 8px;
}

.ruins-queda__cta {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-light);
  border-bottom: 1px solid rgba(212, 168, 67, 0.6);
  padding-bottom: 5px;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.ruins-queda__cta:hover {
  color: #fff;
  border-color: #fff;
  transform: translateX(3px);
}

/* ---------- Sala III — A Fórmula ---------- */
.formula {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(180, 128, 45, 0.055), transparent 40%),
    linear-gradient(180deg, #090b12 0%, #05070c 100%);
  padding: 110px 0;
  border-bottom: 1px solid var(--gold-line);
}

.formula__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.formula__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 46px;
}

.formula__titulo {
  margin: 12px 0 16px;
  line-height: 1.15;
}

.formula__titulo-grad--mobile {
  display: none;
}

.formula__titulo-grad--desktop {
  display: block;
}

.formula__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-85);
  max-width: 620px;
  margin: 0 auto;
}

.formula__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.formula__card {
  position: relative;
  background: rgba(10, 14, 26, 0.82);
  border: 1px solid rgba(212, 168, 67, 0.18);
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.formula__card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.45);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.formula__card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-bottom: 1px solid rgba(212, 168, 67, 0.14);
}

.formula__card-panel {
  padding: 20px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-grow: 1;
}

.formula__card-role {
  font-family: var(--font-label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1.2;
}

.formula__card-nome {
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 4px;
}

.formula__card-desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-85);
  margin: 0;
}

.formula__sub-mobile,
.formula__desc-mobile {
  display: none;
}

.formula__sub-desktop,
.formula__desc-desktop {
  display: inline;
}

/* ---------- Prova Social Curta / Highlights ---------- */
.ruins-highlights {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, rgba(190, 140, 55, 0.025), transparent 55%),
    #05070c;
  border-bottom: 1px solid var(--gold-line);
  padding: 34px 0;
}

.ruins-highlights__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.ruins-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.ruins-highlights__card {
  background: rgba(8, 11, 20, 0.78);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-left: 2px solid rgba(212, 168, 67, 0.55);
  border-radius: 6px;
  padding: 14px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  align-items: stretch;
  backdrop-filter: blur(4px);
  transition: border-color 0.25s ease;
}

.ruins-highlights__card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  border-left-color: rgba(212, 168, 67, 0.85);
}

.ruins-highlights__media {
  width: 82px;
  height: 100%;
  min-height: 96px;
  border-radius: 4px;
  overflow: hidden;
  background: #05070d;
  flex-shrink: 0;
}

.ruins-highlights__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ruins-highlights__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
}

.ruins-highlights__quote {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.48;
  color: var(--cream);
  letter-spacing: 0.1px;
  margin: 0;
  flex-grow: 1;
}

.ruins-highlights__author {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: 0.3px;
  margin-top: 2px;
}

/* ---------- Sala II — Versus / Julgamento ---------- */
.versus {
  position: relative;
  background-color: #06080f;
  background-image: url('assets/images/bgs/webp/05-o-julgamento-desktop.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.versus::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 13, 0.68) 0%, rgba(5, 7, 13, 0.78) 55%, rgba(5, 7, 13, 0.84) 100%),
    linear-gradient(90deg, rgba(5, 7, 13, 0.55) 0%, rgba(5, 7, 13, 0.20) 50%, rgba(5, 7, 13, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.versus__container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.versus__head {
  text-align: center;
  margin-bottom: 46px;
}

.versus__title {
  margin-top: 12px;
  line-height: 1.15;
}

.versus__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.versus__col {
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.versus__col--bad {
  padding: 34px 28px;
  border: 1px solid rgba(184, 74, 68, 0.16);
  border-top: 2px solid rgba(184, 74, 68, 0.65);
  background: linear-gradient(180deg, rgba(139, 38, 33, 0.05) 0%, rgba(8, 11, 20, 0.92) 100%);
}

.versus__col--good {
  padding: 38px 32px;
  border: 1px solid rgba(212, 168, 67, 0.42);
  border-top: 3px solid var(--gold-light);
  background: linear-gradient(180deg, rgba(212, 168, 67, 0.09) 0%, rgba(13, 17, 34, 0.96) 100%);
  box-shadow: 0 0 45px rgba(212, 168, 67, 0.15), inset 0 0 25px rgba(212, 168, 67, 0.03);
}

.versus__heading {
  font-family: var(--font-heading);
  letter-spacing: 0.2px;
}

.versus__col--bad .versus__heading {
  font-size: 22px;
  font-weight: 500;
  color: rgba(223, 138, 132, 0.85);
  margin-bottom: 22px;
}

.versus__col--good .versus__heading {
  font-size: 26.5px;
  font-weight: 600;
  color: var(--gold-light);
  text-shadow: 0 2px 14px rgba(212, 168, 67, 0.22);
  margin-bottom: 24px;
}

.versus__heading-icon {
  display: inline-block;
  line-height: 1;
}

.versus__heading-icon--bad {
  font-size: 18px;
  color: rgba(201, 92, 86, 0.85);
  vertical-align: baseline;
  margin-right: 4px;
}

.versus__heading-icon--good {
  font-size: 24px;
  color: var(--gold-light);
  filter: drop-shadow(0 0 6px rgba(212, 168, 67, 0.55));
  vertical-align: baseline;
  margin-right: 6px;
}

.versus__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.versus__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  letter-spacing: 0.1px;
}

.versus__text--mobile {
  display: none;
}

.versus__text--desktop {
  display: inline;
  font-size: 16px;
}

.versus__mark--bad {
  color: rgba(201, 92, 86, 0.78);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  flex-shrink: 0;
}

.versus__mark--good {
  color: var(--gold-light);
  text-shadow: 0 0 8px rgba(212, 168, 67, 0.45);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  flex-shrink: 0;
}

.versus__badge {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-light);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #06080f;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}

.versus__statement {
  max-width: 720px;
  margin: 42px auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 21.5px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.45;
  color: #fae3b2;
  background: rgba(14, 18, 30, 0.75);
  border: 1px solid rgba(212, 168, 67, 0.20);
  border-radius: 6px;
  padding: 22px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.versus__statement-br {
  display: none;
}

/* ---------- Sala IV — O Ritual & A Constância ---------- */
.ruins-semanas {
  position: relative;
  background-color: #06080f;
  background-image: url('assets/images/bgs/webp/07-a-constancia-desktop.webp');
  background-position: right 60%;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 95px 0 100px;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.ruins-semanas::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.94) 0%, rgba(5, 7, 13, 0.82) 42%, rgba(5, 7, 13, 0.40) 74%, rgba(5, 7, 13, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.95) 0%, transparent 15%, transparent 85%, rgba(5, 7, 13, 0.95) 100%);
  pointer-events: none;
  z-index: 1;
}

.ruins-semanas__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.ruins-semanas__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 44px;
}

.ruins-semanas__titulo {
  margin: 12px 0 16px;
  line-height: 1.15;
}

.ruins-semanas__titulo-grad--mobile {
  display: none;
}

.ruins-semanas__titulo-grad--desktop {
  display: block;
}

.ruins-semanas__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--cream-85);
  max-width: 620px;
  margin: 0 auto;
}

.ruins-scene__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

.ruins-card {
  background: rgba(10, 14, 28, 0.82);
  border: 1px solid rgba(212, 168, 67, 0.20);
  padding: 28px 24px 30px;
  border-radius: 6px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.ruins-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 67, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.ruins-card__num {
  font-family: var(--font-label);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.ruins-card__sep {
  display: none;
}

.ruins-card__titulo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}

.ruins-card__texto {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-85);
  margin: 0;
}

.ruins-card__texto--mobile {
  display: none;
}

.ruins-card__texto--desktop {
  display: inline;
}

.ruins-semanas__cta-wrap {
  margin-top: 38px;
  text-align: center;
}

/* ---------- Sala V — A Oferenda (Oferta EROS) ---------- */
.oferta {
  position: relative;
  background-color: #060810;
  background-image: url('assets/images/bgs/webp/16-a-oferenda-desktop.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--gold-line);
  padding: 85px 0 95px;
  overflow: hidden;
}

/* véu localizado apenas atrás do topo */
.oferta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 50% 12%,
      rgba(4, 7, 15, 0.58) 0%,
      rgba(4, 7, 15, 0.28) 24%,
      transparent 48%
    );
  z-index: 0;
}

.oferta__container {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.oferta__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.oferta__title {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: 0.2px;
  margin: 10px 0 14px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.oferta__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: var(--gold-text-gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.70)) drop-shadow(0 0 14px rgba(237, 212, 138, 0.22));
}

.oferta__sub {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--cream-82);
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* Visibilidade de Textos Responsivos Sala V */
.oferta__sub-desktop,
.oferta__desc-desktop,
.oferta__name-desktop,
.oferta__econ-desktop,
.oferta__total-desktop,
.oferta__inst-desktop {
  display: inline;
}

.oferta__sub-mobile,
.oferta__desc-mobile,
.oferta__name-mobile,
.oferta__econ-mobile,
.oferta__total-mobile,
.oferta__inst-mobile {
  display: none;
}

/* Layout 2 Colunas Desktop */
.oferta__layout {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 44px;
  align-items: center;
}

/* Coluna Esquerda: Produto EROS + Pedestal Integrados */
.oferta__visual {
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oferenda-product-visual {
  position: absolute;
  bottom: -135px;
  width: 150%;
  max-width: 150%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.oferenda-product-visual img {
  width: 100%;
  height: auto;
  max-height: 895px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.85)) drop-shadow(0 2px 14px rgba(212, 168, 67, 0.16));
}

/* Coluna Direita: 3 Kits + CTA + Microtrust */
.oferta__selection {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oferta__kit-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.oferta__kit-option {
  position: relative;
  background: rgba(12, 16, 32, 0.88);
  border: 1px solid rgba(212, 168, 67, 0.22);
  padding: 18px 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: all 0.22s ease;
  width: 100%;
}

.oferta__kit-option:hover {
  border-color: rgba(212, 168, 67, 0.55);
  background: rgba(16, 22, 42, 0.95);
  transform: translateY(-2px);
}

.oferta__kit-option--active {
  border: 2px solid var(--gold);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.14) 0%, rgba(12, 16, 34, 0.98) 70%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 22px rgba(212, 168, 67, 0.14);
}

/* Kit 60 Dias em Destaque */
.oferta__kit-option--featured {
  border-color: var(--gold-mid);
  padding-top: 24px;
  margin-top: 4px;
}

.oferta__kit-option--featured.oferta__kit-option--active {
  border: 2px solid var(--gold-light);
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.18) 0%, rgba(15, 20, 42, 0.98) 70%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 30px rgba(212, 168, 67, 0.22);
  transform: scale(1.02);
}

.oferta__badge-featured {
  position: absolute;
  top: -11px;
  left: 18px;
  background: var(--gold-gradient);
  color: #0b0b10;
  font-family: var(--font-label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}

/* Radio Indicator */
.oferta__kit-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 67, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.oferta__kit-option--active .oferta__kit-radio {
  border-color: var(--gold);
  background: rgba(212, 168, 67, 0.2);
}

.oferta__kit-radio-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.oferta__kit-option--active .oferta__kit-radio-dot {
  opacity: 1;
  transform: scale(1);
}

/* Info do Kit */
.oferta__kit-info {
  flex-grow: 1;
}

.oferta__kit-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 2px;
}

.oferta__kit-name {
  font-family: var(--font-heading);
  font-size: 21px;
  color: var(--cream);
  font-weight: 700;
}

.oferta__kit-days {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--gold);
}

.oferta__kit-desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream-72);
  margin-bottom: 2px;
}

.oferta__kit-economy {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-light);
  margin-top: 2px;
  letter-spacing: 0.1px;
}

/* Preço do Kit com Hierarquia Clara */
.oferta__kit-pricing {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.oferta__kit-main-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.oferta__kit-currency {
  font-size: 15px;
  color: var(--gold);
}

.oferta__kit-val {
  color: var(--cream);
  font-size: 28px;
  font-weight: 700;
}

.oferta__kit-per {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--gold-light);
  font-weight: 500;
  white-space: nowrap;
}

.oferta__kit-total-line {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--cream);
  font-weight: 600;
  letter-spacing: 0.1px;
}

.oferta__kit-installments {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream-60);
}

/* Botão CTA Direto & Microtrust */
.oferta__cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.oferta__cta-btn {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 18px 24px;
  text-align: center;
  text-transform: uppercase;
}

.oferta__trust-seals {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--cream-72);
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.oferta__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cream-72);
  font-weight: 500;
}

.oferta__trust-icon {
  width: 13px;
  height: 13px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.oferta__trust-sep {
  color: var(--gold-mid);
  opacity: 0.6;
  font-size: 8px;
}

/* ---------- Sala VI — Os Mortais (Depoimentos) ---------- */
.mortais {
  position: relative;
  background-color: #06080f;
  background-image: url('assets/images/bgs/webp/12-os-mortais-desktop.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.mortais::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.88) 42%, rgba(5, 7, 13, 0.96) 100%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.90) 0%, rgba(5, 7, 13, 0.3) 15%, rgba(5, 7, 13, 0.3) 85%, rgba(5, 7, 13, 0.90) 100%);
  backdrop-filter: blur(5px);
  pointer-events: none;
  z-index: 1;
}

.mortais__container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.mortais__title {
  margin: 12px 0 16px;
  line-height: 1.15;
}

.mortais__subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--cream-85);
  margin-top: 12px;
  line-height: 1.5;
}

/* --- Slider & Cards Full Width --- */
.mortais__slider-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.mortais__slider {
  display: flex;
  gap: 24px;
  padding: 16px 0 28px;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  will-change: transform;
}

.mortais__slider:active {
  cursor: grabbing;
}

.mortais__slide-card {
  flex: 0 0 380px;
  min-width: 330px;
  max-width: 420px;
  scroll-snap-align: start;
  background: rgba(9, 12, 22, 0.92);
  border: 1px solid rgba(212, 168, 67, 0.18);
  border-radius: 8px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mortais__slide-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.65);
}

.mortais__card-media {
  position: relative;
  width: 100%;
  height: 275px;
  overflow: hidden;
  background: #05070d;
  border-bottom: 1px solid rgba(212, 168, 67, 0.14);
}

.mortais__card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.mortais__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(5, 7, 13, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(212, 168, 67, 0.22);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-lighter);
}

.mortais__badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.8);
  flex-shrink: 0;
}

.mortais__card-body {
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.mortais__card-quote {
  font-family: var(--font-serif), 'EB Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.36;
  letter-spacing: 0.01em;
  color: var(--gold-lighter);
  margin: 0 0 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mortais__card-text {
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-85);
  margin-bottom: 20px;
  flex-grow: 1;
}

.mortais__card-footer {
  padding-top: 14px;
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.mortais__author {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mortais__author-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 14.5px;
  color: var(--cream);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mortais__author-loc {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
  margin-top: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mortais__cycle-pill {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--gold);
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.16);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mortais__cycle-prefix {
  color: rgba(245, 240, 232, 0.45);
  font-size: 9.5px;
  margin-right: 3px;
}

/* --- Nav Buttons --- */
.mortais__nav-btn {
  position: absolute;
  top: calc(50% - 10px);
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(10, 14, 25, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.38);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

.mortais__nav-btn:hover {
  background: var(--gold);
  color: #0b0b10;
  border-color: var(--gold-light);
  transform: translateY(-50%) scale(1.08);
}

.mortais__nav-btn:active {
  transform: translateY(-50%) scale(0.96);
}

.mortais__nav-btn--prev {
  left: max(16px, calc((100vw - 1280px) / 2));
}

.mortais__nav-btn--next {
  right: max(16px, calc((100vw - 1280px) / 2));
}

.mortais__more-wrap {
  display: none;
}

/* --- Conversão Pós-Depoimentos --- */
.mortais__cta-block {
  text-align: center;
  margin-top: 56px;
  padding: 42px 24px 10px;
  border-top: 1px solid rgba(212, 168, 67, 0.12);
  position: relative;
}

.mortais__cta-heading {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 6px;
}

.mortais__cta-heading span {
  font-style: italic;
  font-weight: 600;
  background: var(--gold-text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(212, 168, 67, 0.25));
}

.mortais__cta-sub {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--cream-85);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}

.mortais__cta-btn {
  margin: 0 auto;
}

/* ---------- Sala VII — O Oráculo (FAQ) ---------- */
.oraculo {
  position: relative;
  background-color: #06080f;
  background-image: url('assets/images/bgs/webp/14-o-oraculo-desktop.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 110px 0;
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}

.oraculo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(205, 153, 70, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(5, 7, 13, 0.72) 0%, rgba(5, 7, 13, 0.82) 45%, rgba(5, 7, 13, 0.90) 100%);
  pointer-events: none;
  z-index: 1;
}

.oraculo__container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.oraculo__head {
  text-align: center;
  margin-bottom: 40px;
}

.oraculo__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oraculo__item {
  background: rgba(7, 9, 14, 0.88);
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.oraculo__item[open] {
  border-color: rgba(212, 168, 67, 0.55);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.oraculo__q {
  padding: 20px 24px;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  transition: color 0.2s ease;
}

.oraculo__q:hover {
  color: var(--gold-lighter);
}

.oraculo__q::-webkit-details-marker {
  display: none;
}

.oraculo__num {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.oraculo__a {
  padding: 0 24px 22px 52px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--cream-82);
}

/* ---------- Sala VIII — O Juramento (Garantia) ---------- */
.juramento {
  position: relative;
  background:
    radial-gradient(circle at 50% 0%, rgba(180, 128, 45, 0.05), transparent 42%),
    linear-gradient(180deg, #090b12 0%, #05070c 100%);
  padding: 110px 0;
  border-top: 1px solid rgba(206, 157, 70, 0.10);
  border-bottom: 1px solid rgba(206, 157, 70, 0.08);
  overflow: hidden;
}

.juramento__container {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.juramento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.juramento__card {
  background: rgba(12, 16, 32, 0.82);
  border: 1px solid var(--gold-line);
  padding: 40px 28px;
  text-align: center;
  border-radius: 6px;
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.juramento__card:hover {
  border-color: rgba(212, 168, 67, 0.35);
  transform: translateY(-3px);
}

.juramento__card-head {
  display: contents;
}

.juramento__seal {
  font-family: var(--font-serif);
  font-size: 42px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.juramento__card-title {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 14px;
}

.juramento__card-text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--cream-82);
}

.juramento__text-desktop {
  display: inline;
}

.juramento__text-mobile {
  display: none;
}

/* ---------- O Chamado — Chamada Final & Footer ---------- */
.final {
  position: relative;
  background-color: #06080f;
  background-image: url('assets/images/bgs/webp/09-o-chamado-desktop.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 520px;
  max-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--gold-line);
}

.final::before {
  display: none;
}

.final__container {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.final__content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final__tag {
  align-self: center;
  margin-bottom: 12px;
}

.final__title {
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1.18;
  font-weight: 500;
  color: var(--cream);
  text-align: center;
  margin: 8px 0 16px;
}

.final__title em,
.final__title span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.5px;
  background: var(--gold-text-gradient-soft);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 18px rgba(212, 168, 67, 0.18));
  margin-top: 4px;
}

.final__sub {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--cream-85);
  text-align: center;
  text-wrap: balance;
  margin: 0 auto 32px;
  max-width: 580px;
}

.final__cta {
  align-self: center;
}

.final__cta-br-mobile {
  display: none;
}

.site-footer {
  background: #03050a;
  border-top: 1px solid rgba(205, 157, 70, 0.10);
  padding: 40px 0;
  font-size: 13px;
  color: var(--cream-60);
}

.site-footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--gold);
}

.site-footer .legal {
  max-width: 500px;
  line-height: 1.6;
}

/* ---------- Sticky Offer Bar (Glass Dark Premium) ---------- */
.sticky-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 28px);
  width: calc(100% - 24px);
  max-width: 520px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  padding: 8px 14px;
  border-radius: 20px;
  z-index: 9999;

  /* Fallback and Dark Glass */
  background: rgba(8, 10, 16, 0.96);
  background: linear-gradient(135deg, rgba(18, 20, 28, 0.86) 0%, rgba(6, 8, 15, 0.78) 100%);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);

  /* Subtle Gold Border & Shadow */
  border: 1px solid rgba(218, 168, 70, 0.20);
  box-shadow:
    0 16px 50px rgba(0, 0, 0, 0.50),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  /* Animation State */
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.sticky-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 32%);
  z-index: 1;
}

.sticky-offer.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.sticky-offer__product {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
}

.sticky-offer__img {
  width: auto;
  height: 50px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
  flex-shrink: 0;
}

.sticky-offer__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  min-width: 0;
}

.sticky-offer__badge {
  font-family: var(--font-label);
  font-size: 8.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  line-height: 1.1;
}

.sticky-offer__title {
  font-family: var(--font-heading);
  font-size: 13.5px;
  color: var(--cream);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-offer__pricing {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--cream-72);
  line-height: 1.2;
  white-space: nowrap;
}

.sticky-offer__unit {
  color: var(--gold-light);
  font-weight: 600;
}

.sticky-offer__cta {
  position: relative;
  z-index: 2;
  background: var(--gold-gradient);
  color: #0b0b10;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 168, 67, 0.25);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.sticky-offer__cta:active {
  transform: scale(0.97);
  filter: brightness(0.92);
}

.sticky-offer--pre .sticky-offer__pricing {
  display: none;
}

.sticky-offer--pre .sticky-offer__title {
  font-size: 13px;
  font-weight: 500;
}

/* ---------- Sticky Offer Bar — Tablet Scale (768px - 1024px) ---------- */
@media (min-width: 768px) and (max-width: 1024px) {
  .sticky-offer {
    width: min(680px, calc(100vw - 32px));
    max-width: 680px;
    bottom: 16px;
    padding: 9px 16px 9px 14px;
    border-radius: 20px;
    gap: 14px;
  }
  .sticky-offer__product {
    gap: 12px;
  }
  .sticky-offer__img {
    height: 50px;
    max-width: 38px;
  }
  .sticky-offer__badge {
    font-size: 9px;
  }
  .sticky-offer__title {
    font-size: 15px;
  }
  .sticky-offer__pricing {
    font-size: 11.5px;
  }
  .sticky-offer__cta {
    padding: 12px 18px;
    min-height: 46px;
    font-size: 11.5px;
    letter-spacing: 0.07em;
    border-radius: 13px;
  }
}

/* ---------- Sticky Offer Bar — Desktop Scale (>= 1025px) ---------- */
@media (min-width: 1025px) {
  .sticky-offer {
    width: min(800px, calc(100vw - 48px));
    max-width: 800px;
    bottom: 20px;
    padding: 10px 18px 10px 16px;
    border-radius: 22px;
    gap: 18px;
    background: linear-gradient(135deg, rgba(18, 20, 28, 0.80) 0%, rgba(6, 8, 15, 0.68) 100%);
    box-shadow:
      0 18px 55px rgba(0, 0, 0, 0.45),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  .sticky-offer__product {
    gap: 14px;
  }
  .sticky-offer__info {
    gap: 2px;
  }
  .sticky-offer__img {
    height: 54px;
    max-width: 42px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.65));
  }
  .sticky-offer__badge {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
  .sticky-offer__title {
    font-size: 16px;
  }
  .sticky-offer--pre .sticky-offer__title {
    font-size: 17px;
  }
  .sticky-offer__pricing {
    font-size: 12px;
  }
  .sticky-offer__cta {
    padding: 13px 24px;
    min-height: 48px;
    min-width: 180px;
    font-size: 12.5px;
    letter-spacing: 0.08em;
    border-radius: 14px;
  }
}

/* ---------- Hero Large Desktop (Full HD / >= 1600px) ---------- */
@media (min-width: 1600px) {
  .hero__photo {
    background-position: center 28%;
  }
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 900px) {
  .hero__content {
    margin-left: 0;
    padding: 60px 20px;
    width: 100%;
    text-align: center;
    align-items: center;
  }
  .hero__title-fire {
    font-size: 100px;
  }
  .hero__question {
    font-size: 32px;
  }
  .hero__cta-wrap {
    align-items: center;
  }
  .hero__seals {
    justify-content: center;
  }
  .formula__cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .ruins-highlights__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ruins-highlights__card {
    grid-template-columns: 76px 1fr;
    gap: 12px;
    padding: 12px;
  }
  .ruins-highlights__media {
    width: 76px;
    min-height: 84px;
  }
  .ruins-highlights__quote {
    font-size: 14px;
    line-height: 1.48;
  }
  .versus__grid {
    grid-template-columns: 1fr;
  }
  .versus__badge {
    margin: -10px auto;
  }
  .ruins-scene__cards {
    grid-template-columns: 1fr;
  }
  .oferta__layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .oferta__kit-option--featured.oferta__kit-option--active {
    transform: none;
  }
  .juramento__grid {
    grid-template-columns: 1fr;
  }
  .mortais__slide-card {
    flex: 0 0 340px;
  }
  .mortais__card-media {
    height: 245px;
  }
  .mortais__nav-btn--prev {
    left: 12px;
  }
  .mortais__nav-btn--next {
    right: 12px;
  }
}

/* ---------- Mobile Backgrounds & Overlays (<= 767px) ---------- */
@media (max-width: 767px) {
  /* Marquee: oculta no topo da Hero e passa a funcionar como faixa divisora */
  .marquee--top {
    display: none;
  }
  .marquee--divider {
    display: flex;
    height: 36px;
    background: #000;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
  }

  /* Hero Mobile Redesign: Promessa -> Produto -> Tese -> Ação -> Prova Social */
  .hero {
    min-height: 784px;
    min-width: 100%;
    background-image: url(assets/images/bgs/webp/01-hero-mobile.webp);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: flex-start;
    padding: 24px 0 18px;
    border-bottom: none;
    max-height: 784px;
  }
  .hero__photo {
    display: none;
  }
  .hero__veil {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(
      to bottom,
      transparent 0%,
      transparent 48%,
      rgba(2, 5, 12, 0.15) 58%,
      rgba(2, 5, 12, 0.58) 75%,
      rgba(2, 5, 12, 0.88) 100%
    );
    opacity: 1;
  }
  .hero__content {
    margin-left: 0;
    padding: 10px 16px 16px;
    width: 100%;
    text-align: center;
    align-items: center;
    gap: 0;
  }
  .hero__title {
    margin-bottom: 0;
  }
  .hero__title-line {
    font-size: 23px;
    line-height: 1.15;
    margin-bottom: 2px;
  }
  .hero__title-fire {
    font-size: clamp(68px, 24vw, 105px);
    line-height: 1.1;
    letter-spacing: 0.5px;
  }
  .hero__question {
    font-size: 23px;
    line-height: 1.15;
    margin-top: -20px;
    margin-bottom: 0;
  }
  .hero__product {
    display: block;
    width: 300px;
    max-width: 100%;
    aspect-ratio: 300 / 450;
    position: relative;
    max-height: 400px;
  }
  .hero__sub {
    font-size: 15px;
    line-height: 1.45;
    max-width: 320px;
    margin: 10px auto 14px;
    text-wrap: balance;
    margin-top: -20px;
    margin-bottom: 5px;
  }
  .sub__featured {
    font-family: var(--font-serif);
    font-size: 18.5px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 0;
    color: var(--cream);
    display: block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
    padding-bottom: 10px;
  }
  .hero__sub-br,
  .hero__sub-desc {
    display: none;
  }
  .hero__cta-wrap {
    width: 100%;
    align-items: center;
    gap: 0;
    margin-top: 2px;
    margin-bottom: 20px;
  }
  .hero__cta-wrap .btn-gold,
  .hero-cta {
    width: 100%;
    max-width: 320px;
    font-size: 17px;
    line-height: 1.15;
    text-wrap: balance;
    padding: 15px 18px;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.28), 0 2px 8px rgba(0, 0, 0, 0.6);
  }
  .hero__guarantee {
    display: none;
  }
  .hero__proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 4px;
    margin-bottom: 6px;
  }
  .hero__stars {
    display: none;
  }
  .hero__proof-text {
    font-family: var(--font-sans);
    font-size: 13.5px;
    letter-spacing: 0.3px;
    color: var(--cream-82);
  }
  .hero__proof-text strong {
    font-weight: 600;
    color: var(--gold-light);
  }
  .hero__proof-text--desktop {
    display: none;
  }
  .hero__proof-text--mobile {
    display: inline;
  }
  .hero__seals {
    display: none;
  }

  .ruins-queda {
    background-image: url('assets/images/bgs/webp/04-a-queda-mobile.webp');
    background-position: center top;
    padding: 60px 0 54px;
  }
  .ruins-queda::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.94) 0%, rgba(5, 7, 13, 0.82) 40%, rgba(5, 7, 13, 0.74) 70%, rgba(5, 7, 13, 0.98) 100%);
  }
  /* ---------- Padrão 1 Mobile (Salas I a IV) ---------- */
  .sala-title-top,
  .ruins-queda__titulo-top,
  .versus__title-top,
  .formula__titulo-top,
  .ruins-semanas__titulo-top {
    font-size: 24px;
    margin-bottom: 2px;
  }

  .ruins-queda__titulo-top {
    font-size: 26px;
  }

  .sala-title-grad,
  .ruins-queda__titulo-grad,
  .versus__title-grad,
  .formula__titulo-grad,
  .formula__titulo-grad--mobile,
  .ruins-semanas__titulo-grad,
  .ruins-semanas__titulo-grad--mobile {
    font-size: 32px;
    line-height: 1.12;
  }

  .ruins-queda__titulo-grad {
    font-size: 34px;
  }

  /* ---------- Padrão 2 Mobile (Mortais, Oráculo, Juramento) ---------- */
  .mortais__title,
  .juramento__title {
    font-size: 24px;
    line-height: 1.22;
  }

  .oraculo__titulo {
    font-size: 28px;
    line-height: 1.22;
  }

  .juramento__title em,
  .juramento__title strong {
    display: block;
    font-size: 30px;
    margin-top: 4px;
  }

  .mortais__title em,
  .mortais__title strong {
    display: block;
    font-size: 32px;
    margin-top: 3px;
  }

  .oraculo__titulo em,
  .oraculo__titulo strong,
  .oraculo__titulo span {
    font-size: 32px;
  }

  .ruins-queda__redundancia {
    display: none;
  }
  .ruins-queda__p-desktop,
  .ruins-queda__destaque-text--desktop {
    display: none;
  }
  .ruins-queda__p-mobile {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 6px;
  }
  .ruins-queda__destaque-text--mobile {
    display: block;
    font-size: 14.5px;
    line-height: 1.6;
  }
  .ruins-queda__p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 6px;
  }
  .ruins-queda__duvida {
    display: block;
    margin-top: 4px;
    font-size: 17.5px;
  }
  .ruins-queda__destaque {
    padding: 20px 20px;
    margin: 22px auto;
  }
  .ruins-queda__destaque-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .ruins-queda__destaque-text {
    font-size: 14.5px;
    line-height: 1.6;
  }
  .ruins-queda__p--final {
    margin: 24px auto 20px;
  }
  .ruins-queda__final-em {
    font-size: 19px;
    line-height: 1.35;
    margin-top: 0;
    text-wrap: balance;
  }
  .ruins-queda__cta {
    display: none;
  }

  .versus {
    background-image: url('assets/images/bgs/webp/06-o-julgamento-mobile.webp');
    background-position: center top;
    padding: 56px 0 46px;
  }
  .versus::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.78) 50%, rgba(5, 7, 13, 0.95) 100%);
  }
  .versus__col {
    padding: 20px 18px;
  }
  .versus__heading {
    text-align: center;
    justify-content: center;
  }
  .versus__col--good .versus__heading {
    font-size: 21px;
    margin-bottom: 16px;
  }
  .versus__col--bad .versus__heading {
    font-size: 19px;
    margin-bottom: 14px;
  }
  .versus__heading-icon--good {
    font-size: 20px;
  }
  .versus__col--bad .versus__heading-icon,
  .versus__heading-icon--bad {
    display: none;
  }
  .versus__list {
    align-items: center;
    gap: 14px;
  }
  .versus__item {
    font-size: 14.5px;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
  .versus__mark--good {
    font-size: 16px;
  }
  .versus__mark--bad {
    font-size: 14px;
  }
  .versus__item--desktop-only {
    display: none;
  }
  .versus__text--desktop {
    display: none;
  }
  .versus__text--mobile {
    display: inline;
  }
  .versus__badge {
    width: 32px;
    height: 32px;
    font-size: 10.5px;
    margin: -14px auto;
    position: relative;
    z-index: 3;
  }
  .versus__statement {
    display: block;
    font-size: 17px;
    line-height: 1.4;
    padding: 16px 18px;
    margin: 24px auto 0;
    text-align: center;
    text-wrap: balance;
  }
  .versus__statement-br {
    display: block;
  }

  .formula {
    padding: 44px 0 46px;
  }
  .formula__head {
    margin: 0 auto 22px;
  }
  .formula__titulo {
    margin: 8px 0 8px;
  }
  .formula__titulo-grad--desktop {
    display: none;
  }
  .formula__titulo-grad--mobile {
    display: block;
  }
  .formula__sub {
    font-size: 14.5px;
    font-weight: 400;
    color: var(--cream-82);
    margin-top: 6px;
    line-height: 1.5;
  }
  .formula__sub-desktop,
  .formula__desc-desktop {
    display: none;
  }
  .formula__sub-mobile,
  .formula__desc-mobile {
    display: inline;
  }
  .formula__cards {
    gap: 12px;
    grid-template-columns: 1fr;
  }
  .formula__card {
    border-radius: 6px;
  }
  .formula__card-img {
    height: 96px;
    object-fit: cover;
    object-position: center;
  }
  .formula__card-panel {
    padding: 12px 14px 13px;
    gap: 3px;
  }
  .formula__card-role {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
  .formula__card-nome {
    font-size: 18px;
    margin-bottom: 2px;
  }
  .formula__card-desc {
    font-size: 13.5px;
    line-height: 1.48;
  }

  .ruins-semanas {
    background-image: url('assets/images/bgs/webp/08-a-constancia-mobile.webp');
    background-position: center top;
    padding: 48px 0 46px;
  }
  .ruins-semanas::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.90) 0%, rgba(5, 7, 13, 0.55) 40%, rgba(5, 7, 13, 0.30) 70%, rgba(5, 7, 13, 0.85) 100%);
  }
  .ruins-semanas__head {
    margin: 0 auto 20px;
  }
  .ruins-semanas__titulo {
    margin: 8px 0 0;
  }
  .ruins-semanas__titulo-grad--desktop {
    display: none;
  }
  .ruins-semanas__titulo-grad--mobile {
    display: block;
  }
  .ruins-semanas__sub {
    display: none;
  }
  .ruins-scene__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    max-width: 480px;
    margin: 0 auto;
  }
  .ruins-card {
    background: rgba(10, 14, 28, 0.84);
    border: 1px solid rgba(212, 168, 67, 0.20);
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 18px;
    text-align: left;
  }
  .ruins-card__header {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
  }
  .ruins-card__num {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0;
    display: inline;
    letter-spacing: 0.5px;
  }
  .ruins-card__sep {
    color: var(--gold-light);
    opacity: 0.6;
    font-size: 14px;
    font-weight: 700;
    display: inline;
  }
  .ruins-card__titulo {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0;
    display: inline;
    line-height: 1.25;
  }
  .ruins-card__texto {
    font-size: 13.5px;
    line-height: 1.48;
    color: var(--cream-85);
  }
  .ruins-card__texto--desktop {
    display: none;
  }
  .ruins-card__texto--mobile {
    display: inline;
  }
  .ruins-semanas__cta-wrap {
    margin-top: 22px;
  }
  .ruins-semanas__cta-wrap .btn-gold {
    width: 100%;
    max-width: 320px;
    font-size: 16.5px;
    line-height: 1.18;
    text-wrap: balance;
    padding: 15px 20px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.28), 0 2px 8px rgba(0, 0, 0, 0.6);
  }

  /* Visibilidade de Textos Sala V no Mobile */
  .oferta__sub-desktop,
  .oferta__desc-desktop,
  .oferta__name-desktop,
  .oferta__econ-desktop,
  .oferta__total-desktop,
  .oferta__inst-desktop {
    display: none;
  }

  .oferta__sub-mobile,
  .oferta__desc-mobile,
  .oferta__name-mobile,
  .oferta__econ-mobile,
  .oferta__total-mobile,
  .oferta__inst-mobile {
    display: inline;
  }

  .oferta {
    background-image: url('assets/images/bgs/webp/16-a-oferenda-mobile.webp');
    background-position: center bottom;
    background-size: cover;
    padding: 60px 0 20px;
  }
  .oferta::before {
    background: linear-gradient(
      180deg,
      rgba(5, 7, 13, 0.72) 0%,
      rgba(5, 7, 13, 0.65) 25%,
      rgba(5, 7, 13, 0.76) 52%,
      rgba(5, 7, 13, 0.58) 72%,
      rgba(5, 7, 13, 0.20) 86%,
      rgba(5, 7, 13, 0) 100%
    );
    max-height: 100vh;
  }
  .oferta__head {
    margin-bottom: 24px;
    text-align: center;
  }
  .oferta__title {
    font-size: 26px;
  }
  .oferta__title em {
    font-size: 29px;
  }
  .oferta__sub {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Reordenação Mobile: Título/sub -> Cards (1) -> CTA e Benefícios (2) -> Imagem Pedestal (3) */
  .oferta__layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .oferta__selection {
    display: contents;
  }
  .oferta__kit-list {
    order: 1;
    gap: 12px;
    width: 100%;
  }
  .oferta__cta-wrap {
    order: 2;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .oferta__visual {
    order: 3;
    min-height: auto;
    width: 100%;
    margin: 8px auto 0;
    display: flex;
    justify-content: center;
  }
  .oferenda-product-visual {
    position: relative;
    bottom: auto;
    width: min(85vw, 360px);
    max-width: 100%;
    margin: 0 auto;
    margin-top: -100px;
    display: flex;
    justify-content: center;
  }
  .oferenda-product-visual img {
    max-width: 120%;
    width: 120%;
    height: auto;
    max-height: inherit;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.85)) drop-shadow(0 2px 14px rgba(212, 168, 67, 0.18));
    flex-shrink: 0;
  }
  .oferta__cta-btn {
    width: 100%;
    max-width: 360px;
    padding: 17px 24px;
    font-size: 15px;
    letter-spacing: 0.05em;
  }
  .oferta__trust-seals {
    margin-top: 14px;
    font-size: 10.5px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .oferta__trust-seals .oferta__trust-sep:last-of-type,
  .oferta__trust-seals .oferta__trust-sep:last-child {
    display: none;
  }

  /* Estilização dos Cards no Mobile */
  .oferta__kit-option {
    padding: 14px 14px;
    gap: 10px;
  }
  .oferta__kit-option--featured {
    padding-top: 22px;
    margin-top: 6px;
  }
  .oferta__badge-featured {
    top: -10px;
    left: 14px;
    font-size: 9px;
    padding: 2.5px 8px;
    letter-spacing: 1px;
  }
  .oferta__kit-header {
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: baseline;
  }
  .oferta__kit-name {
    font-size: 18px;
  }
  .oferta__kit-days {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .oferta__kit-desc {
    font-size: 12.5px;
  }
  .oferta__kit-economy {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-light);
  }
  .oferta__kit-main-price {
    font-size: 22px;
  }
  .oferta__kit-main-price .oferta__kit-val {
    font-size: 24px;
  }
  .oferta__kit-per {
    font-size: 11.5px;
  }
  .oferta__kit-total-line {
    font-size: 11.5px;
    color: var(--cream-82);
  }
  .oferta__kit-installments {
    font-size: 10.5px;
    color: var(--cream-60);
  }

  /* ---------- Sala VI — Os Mortais (Mobile: Lista Vertical de 3 Cards + Revelar Mais) ---------- */
  .mortais {
    background-image: url('assets/images/bgs/webp/13-os-mortais-mobile.webp');
    background-position: center top;
    padding: 70px 0 60px;
  }
  .mortais::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.95) 0%, rgba(5, 7, 13, 0.85) 50%, rgba(5, 7, 13, 0.80) 100%);
    backdrop-filter: blur(4px);
  }
  .mortais__container {
    padding: 0 16px;
  }
  .mortais__slider-wrapper {
    padding: 0 16px;
    max-width: 540px;
    margin: 0 auto;
    overflow: visible;
  }
  .mortais__nav-btn {
    display: none;
  }
  .mortais__slider {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0 0;
    width: 100%;
    transform: none !important;
    cursor: default;
    user-select: auto;
  }

  /* Exibir inicialmente apenas os 3 primeiros cards no mobile */
  .mortais__slider:not(.mortais__slider--expanded) .mortais__slide-card:nth-child(n+4) {
    display: none;
  }

  /* Card Compacto no Mobile (30-35% imagem à esquerda / 65-70% conteúdo à direita) */
  .mortais__slide-card {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: rgba(10, 14, 26, 0.92);
    border: 1px solid rgba(212, 168, 67, 0.20);
    border-radius: 6px;
    padding: 10px;
    gap: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
  }

  .mortais__card-media {
    flex: 0 0 32%;
    width: 32%;
    max-width: 115px;
    min-width: 90px;
    height: auto;
    min-height: 100%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #05070d;
    border-bottom: none;
    border: 1px solid rgba(212, 168, 67, 0.15);
  }

  .mortais__card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    display: block;
  }

  .mortais__badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 4px;
    padding: 2px 4px;
    background: rgba(5, 7, 13, 0.90);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 168, 67, 0.28);
    border-radius: 4px;
    font-size: 7.5px;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    white-space: nowrap;
  }

  .mortais__badge-dot {
    width: 4px;
    height: 4px;
    background: #22c55e;
    box-shadow: 0 0 4px rgba(34, 197, 94, 0.8);
    flex-shrink: 0;
  }

  .mortais__card-body {
    flex: 1 1 68%;
    min-width: 0;
    padding: 2px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .mortais__card-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 700;
    font-size: 17px;
    text-wrap: balance;
    color: var(--gold-light);
    margin: 0 0 4px;
  }

  .mortais__card-text {
    font-family: var(--font-sans);
    font-size: 13.5px;
    line-height: 1.48;
    color: var(--cream);
    letter-spacing: 0.1px;
    margin-bottom: 8px;
  }

  .mortais__card-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 6px;
    border-top: 1px solid rgba(212, 168, 67, 0.14);
    margin-top: auto;
  }

  .mortais__author {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 6px;
    flex-direction: row;
  }

  .mortais__author-name {
    font-size: 11.5px;
    font-weight: 600;
    color: var(--cream);
    white-space: normal;
  }

  .mortais__author-loc {
    font-size: 10.5px;
    color: var(--cream-60);
    margin-top: 0;
    white-space: normal;
  }

  .mortais__cycle-pill {
    font-size: 9.5px;
    padding: 2px 6px;
    border-radius: 3px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.20);
    color: var(--gold-light);
    width: fit-content;
  }

  .mortais__cycle-prefix {
    font-size: 9px;
    color: var(--cream-60);
  }

  /* Botão Secundário Discreto "VER MAIS RELATOS ↓" */
  .mortais__more-wrap {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 8px;
    width: 100%;
  }

  .mortais__more-btn {
    background: rgba(12, 16, 32, 0.7);
    border: 1px solid rgba(212, 168, 67, 0.38);
    color: var(--gold-light);
    font-family: var(--font-label);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 10px 22px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s ease;
    width: 100%;
    max-width: 280px;
  }

  .mortais__more-btn:active {
    background: rgba(212, 168, 67, 0.15);
    border-color: var(--gold);
    color: var(--cream);
    transform: scale(0.98);
  }

  .mortais__cta-block {
    margin-top: 36px;
    padding: 28px 14px 0;
  }
  .mortais__cta-heading {
    font-size: 21px;
  }
  .mortais__cta-sub {
    font-size: 14.5px;
    margin-bottom: 20px;
  }

  .oraculo {
    background-image: url('assets/images/bgs/webp/15-o-oraculo-mobile.webp');
    background-position: center top;
    padding: 80px 0;
  }
  .oraculo::before {
    background:
      linear-gradient(180deg, rgba(5, 7, 13, 0.92) 0%, rgba(5, 7, 13, 0.88) 50%, rgba(5, 7, 13, 0.97) 100%);
  }
  .oraculo__q {
    padding: 16px 18px;
    font-size: 17.5px;
    gap: 12px;
  }
  .oraculo__a {
    padding: 0 18px 18px 42px;
    font-size: 14.5px;
  }

  /* ---------- Sala VIII — O Juramento (Mobile: Compacto, Ícone ao Lado do Título, Alinhado à Esquerda) ---------- */
  .juramento {
    padding: 50px 0 45px;
  }
  .juramento__head {
    margin-bottom: 24px;
    text-align: center;
  }
  .juramento__grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .juramento__card {
    padding: 14px 16px;
    text-align: left;
    align-items: flex-start;
    border-radius: 6px;
    background: rgba(12, 16, 32, 0.88);
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .juramento__card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    width: 100%;
  }
  .juramento__seal {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 0;
    flex-shrink: 0;
    color: var(--gold);
  }
  .juramento__card-title {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 0;
    text-align: left;
    color: var(--cream);
  }
  .juramento__card-text {
    font-size: 13px;
    line-height: 1.45;
    text-align: left;
    color: var(--cream-82);
  }
  .juramento__text-desktop {
    display: none;
  }
  .juramento__text-mobile {
    display: inline;
  }

  .final {
    background-image: url('assets/images/bgs/webp/10-o-chamado-mobile.webp');
    background-position: center bottom;
    background-size: cover;
    min-height: 835px;
    padding: 70px 0 490px;
    text-align: center;
    position: relative;
  }
  .final__content {
    max-width: 100%;
    text-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .final__tag {
    align-self: center;
  }
  .final__title {
    font-size: 28px;
    line-height: 1.22;
  }
  .final__title em,
  .final__title span {
    font-size: 32px;
  }
  .final__sub {
    font-size: 14.5px;
    line-height: 1.5;
    text-wrap: balance;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .final__cta {
    width: 100%;
    max-width: 290px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.28;
    padding: 14px 22px;
    text-align: center;
    text-wrap: balance;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.35);
  }
  .final__cta-br-mobile {
    display: inline;
  }

  /* Separação Visual Mais Clara entre o Fechamento Emocional e o Rodapé */
  .site-footer {
    position: relative;
    z-index: 10;
    background: #030509;
    border-top: 1px solid rgba(212, 168, 67, 0.25);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.85);
  }
  .site-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.65), transparent);
  }
  /* Sticky Pré-oferta no mobile: quebra equilibrada em até 2 linhas sem truncamento */
  .sticky-offer--pre .sticky-offer__title {
    white-space: normal;
    text-wrap: balance;
    overflow: visible;
    text-overflow: clip;
    min-width: 0;
    height: auto;
    line-height: 1.25;
  }

  .site-footer__grid {
    flex-direction: column;
  }

}

@media (max-width: 400px) {
  /* Títulos Padronizados para Telas até 400px */
  .sala-title-top,
  .ruins-queda__titulo-top,
  .versus__title-top,
  .formula__titulo-top,
  .ruins-semanas__titulo-top {
    font-size: 21px;
    margin-bottom: 2px;
  }

  .sala-title-grad,
  .ruins-queda__titulo-grad,
  .versus__title-grad,
  .formula__titulo-grad,
  .formula__titulo-grad--mobile,
  .ruins-semanas__titulo-grad,
  .ruins-semanas__titulo-grad--mobile {
    font-size: 30px;
    line-height: 1.12;
  }

  .juramento__title,
  .oraculo__titulo {
    font-size: 21px;
  }

  .juramento__title em,
  .juramento__title strong,
  .oraculo__titulo em,
  .oraculo__titulo strong {
    font-size: 26px;
  }
}

@media (max-width: 390px) {
  .sticky-offer {
    padding: 7px 10px;
    gap: 8px;
  }
  .sticky-offer__product {
    gap: 8px;
  }
  .sticky-offer__img {
    height: 44px;
    max-width: 32px;
  }
  .sticky-offer__title {
    font-size: 12.5px;
  }
  .sticky-offer__pricing {
    font-size: 10.5px;
  }
  .sticky-offer__cta {
    padding: 10px 11px;
    font-size: 10.5px;
    letter-spacing: 0.04em;
  }
}

@media (max-width: 350px) {
  .sticky-offer__img {
    height: 38px;
    max-width: 28px;
  }
  .sticky-offer__badge {
    font-size: 7.5px;
    letter-spacing: 0.1em;
  }
  .sticky-offer__title {
    font-size: 11.5px;
  }
  .sticky-offer__pricing {
    font-size: 9.5px;
  }
  .sticky-offer__cta {
    padding: 9px 8px;
    font-size: 9.5px;
    letter-spacing: 0.02em;
    border-radius: 11px;
  }
}
