/* ============================================================
   MESA CRISTALINA METATRÔNICA
   css/style.css — Design System Premium: Luxury Dark + Glassmorphism + Gold
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  /* Backgrounds tonais */
  --bg-abyss:   #050010;
  --bg-cold:    #0C001A;
  --bg-night:   #100020;
  --bg-deep:    #160828;
  --bg-mid:     #1A0533;
  --bg-rich:    #2D0B55;
  --bg-vivid:   #3D1A6E;

  /* Gold palette */
  --gold:       #C9A84C;
  --gold-lt:    #E8C96A;
  --gold-pale:  #F5E4A8;

  /* Cream / text */
  --cream:      #F5F0FF;
  --cream-80:   rgba(245,240,255,0.8);
  --cream-60:   rgba(245,240,255,0.6);
  --cream-40:   rgba(245,240,255,0.4);

  /* Glass */
  --glass-5:    rgba(255,255,255,0.05);
  --glass-8:    rgba(255,255,255,0.08);
  --border-glass: rgba(255,255,255,0.08);
  --border-gold:  rgba(201,168,76,0.25);

  /* Legado — mantidos para compatibilidade interna */
  --dourado:    #C9A84C;
  --dourado-lt: #E8C96A;
  --branco-soft: #F5F0FF;
  --quase-preto: #050010;
  --escuro:     #1A0533;
  --roxo-deep:  #2D0B55;
  --roxo-mid:   #3D1A6E;
  --glass:      rgba(255,255,255,0.05);
  --glass-b:    rgba(255,255,255,0.08);
  --gold-glow:  rgba(201,168,76,0.25);
  --gold-glow-s: rgba(201,168,76,0.12);
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---- Grain noise overlay — profundidade sutil no fundo ---- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}

body {
  background-color: var(--bg-abyss);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a        { text-decoration: none; }
ul       { list-style: none; margin: 0; padding: 0; }
button   { font-family: inherit; }
.hidden  { display: none !important; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-abyss); }
::-webkit-scrollbar-thumb { background: var(--bg-vivid); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---- Selection ---- */
::selection { background: rgba(201,168,76,0.25); color: #fff; }

/* ============================================================
   LAYOUT — Container e width caps
   ============================================================ */
.site-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (min-width: 768px) {
  .site-container { padding-left: 2.5rem; padding-right: 2.5rem; }
}

.w-narrow { max-width: 48rem; margin: 0 auto; }
.w-medium { max-width: 56rem; margin: 0 auto; }
.w-wide   { max-width: 64rem; margin: 0 auto; }
.w-xwide  { max-width: 72rem; margin: 0 auto; }
.w-tight  { max-width: 42rem; margin: 0 auto; }
.w-form   { max-width: 36rem; margin: 0 auto; }

/* ---- Helpers ---- */
.layer       { position: relative; z-index: 10; }
.text-center { text-align: center; }

/* ---- Grids ---- */
.grid-2       { display: grid; gap: 1.5rem; }
.grid-2-wide  { display: grid; gap: 2rem; }
.grid-2-tight { display: grid; gap: 1rem; }
.grid-3       { display: grid; gap: 1.25rem; }
.grid-3-fixed { display: grid; gap: 1.5rem; }
.grid-4       { display: grid; gap: 1.25rem; }
.grid-levels  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }

@media (min-width: 480px) { .grid-levels { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) {
  .grid-levels { grid-template-columns: repeat(5, 1fr); }
  .grid-2, .grid-2-wide, .grid-2-tight { grid-template-columns: repeat(2, 1fr); }
  .grid-3       { grid-template-columns: repeat(2, 1fr); }
  .grid-3-fixed { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

@media (min-width: 640px)  { .benefit-card--wide { grid-column: span 2; } }
@media (min-width: 1024px) { .benefit-card--wide { grid-column: span 3; } }
@media (min-width: 1280px) { .benefit-card--wide { grid-column: span 2; } }

.stack-3 > * + * { margin-top: .75rem; }
.stack-4 > * + * { margin-top: 1rem; }
.stack-5 > * + * { margin-top: 1.25rem; }

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.section-header    { text-align: center; margin-bottom: 3rem; }
.section-header-sm { text-align: center; margin-bottom: 2.5rem; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--cream);
  margin: 1rem 0 0;
  line-height: 1.2;
  font-weight: 300;
  letter-spacing: -0.03em;
}
@media (min-width: 768px)  { .section-title { font-size: 3.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3.75rem; } }

.section-title--sm {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.875rem;
  color: var(--cream);
  margin: 1rem 0 0;
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) { .section-title--sm { font-size: 2.5rem; } }

.section-lead {
  color: var(--cream-80);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.section-lead-sm {
  color: var(--cream-80);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.subsection-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ============================================================
   SECTION DIVIDER — linha dourada fina, centralizada
   ============================================================ */
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
  border: none;
  opacity: 0.6;
}

/* ============================================================
   SECTION EYEBROW — linha dourada + texto uppercase Inter 600
   ============================================================ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
  border-radius: 1px;
}

/* ============================================================
   FADE-IN ANIMATION (Intersection Observer)
   ============================================================ */
.fade-in-element {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease-out, transform .65s ease-out;
}
.fade-in-element.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}

#navbar.scrolled {
  background: rgba(5, 0, 16, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(201,168,76,.2);
}

.glass-nav {
  background: rgba(5, 0, 16, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .nav-inner { height: 5rem; } }

.nav-logo { display: flex; align-items: center; gap: .5rem; }
.nav-logo-star { color: var(--gold); font-size: 1.5rem; line-height: 1; }
.nav-logo-text {
  display: none;
}
@media (min-width: 768px) {
  .nav-logo-text {
    display: inline;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: .03em;
  }
}

.nav-cta-desktop { display: none; }
@media (min-width: 768px) { .nav-cta-desktop { display: inline-block; } }

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--cream);
  padding: .5rem;
  border-radius: .5rem;
  min-width: 44px;
  min-height: 44px;
}
@media (min-width: 768px) { .menu-btn { display: none; } }

.icon-svg   { width: 1.5rem; height: 1.5rem; }
.mobile-nav { display: block; }
@media (min-width: 768px) { .mobile-nav { display: none !important; } }

#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding-top: 0;
  padding-bottom: 0;
}
#mobile-menu.open {
  max-height: 200px;
  padding-top: .75rem;
  padding-bottom: 1rem;
  display: block !important;
}
#mobile-menu .site-container { padding-top: .5rem; padding-bottom: 1rem; }

/* ============================================================
   BOTÕES
   ============================================================ */

/* Botão primário — gradiente dourado com shimmer no hover */
.btn-cta-primary {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 60%, var(--gold) 100%);
  background-size: 200% auto;
  color: #1A0A2E !important;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  border: none;
  min-height: 44px;
  transition: background-position .4s ease, transform .25s ease-out, box-shadow .25s ease-out;
  position: relative;
  overflow: hidden;
}
.btn-cta-primary:hover {
  background-position: right center;
  color: #1A0A2E !important;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(201,168,76,.4), 0 0 0 1px rgba(201,168,76,.3);
}
.btn-cta-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(201,168,76,.3);
}

/* Botão nav */
.btn-cta-nav {
  display: inline-block;
  padding: .55rem 1.4rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-lt) 100%);
  color: var(--bg-rich) !important;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .03em;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: transform .25s ease-out, box-shadow .25s ease-out;
}
.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,168,76,.35);
}

/* Botão secundário — border dourada com hover fill */
.btn-cta-secondary {
  display: inline-block;
  padding: .9rem 2.4rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--gold);
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .02em;
  cursor: pointer;
  min-height: 44px;
  transition: background .25s ease, color .25s ease, transform .25s ease-out, box-shadow .25s ease-out;
}
.btn-cta-secondary:hover {
  background: var(--gold);
  color: var(--bg-rich);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201,168,76,.3);
}

/* Full-width buttons */
#mobile-menu .btn-cta-primary { display: block; text-align: center; width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(61,26,110,.6) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(45,11,85,.5) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-deep) 35%, var(--bg-abyss) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  padding-top: 4rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.65) 100%);
}

/* Linha decorativa dourada */
.hero-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ---- Stars ---- */
.stars-container { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.stars { position: absolute; border-radius: 50%; }

.stars-small {
  width: 1px; height: 1px; background: #fff;
  box-shadow:
     6vw  4vh 0 0 #fff,  14vw  8vh 0 0 #fff,  22vw  3vh 0 0 #fff,
    31vw 11vh 0 0 #fff,  39vw  6vh 0 0 #fff,  47vw  2vh 0 0 #fff,
    55vw 13vh 0 0 #fff,  63vw  7vh 0 0 #fff,  71vw  4vh 0 0 #fff,
    79vw 10vh 0 0 #fff,  87vw  5vh 0 0 #fff,  95vw  9vh 0 0 #fff,
     3vw 20vh 0 0 #fff,  11vw 25vh 0 0 #fff,  19vw 18vh 0 0 #fff,
    28vw 22vh 0 0 #fff,  36vw 29vh 0 0 #fff,  44vw 17vh 0 0 #fff,
    52vw 24vh 0 0 #fff,  60vw 19vh 0 0 #fff,  68vw 27vh 0 0 #fff,
    76vw 21vh 0 0 #fff,  84vw 15vh 0 0 #fff,  92vw 23vh 0 0 #fff,
     8vw 35vh 0 0 #fff,  16vw 39vh 0 0 #fff,  24vw 33vh 0 0 #fff,
    33vw 42vh 0 0 #fff,  41vw 37vh 0 0 #fff,  49vw 44vh 0 0 #fff,
    57vw 31vh 0 0 #fff,  65vw 40vh 0 0 #fff,  73vw 36vh 0 0 #fff,
    81vw 43vh 0 0 #fff,  89vw 38vh 0 0 #fff,  97vw 32vh 0 0 #fff,
     5vw 52vh 0 0 #fff,  13vw 58vh 0 0 #fff,  21vw 55vh 0 0 #fff,
    29vw 63vh 0 0 #fff,  37vw 49vh 0 0 #fff,  45vw 57vh 0 0 #fff,
    53vw 64vh 0 0 #fff,  61vw 51vh 0 0 #fff,  69vw 59vh 0 0 #fff,
    77vw 53vh 0 0 #fff,  85vw 62vh 0 0 #fff,  93vw 47vh 0 0 #fff,
     2vw 72vh 0 0 #fff,  10vw 78vh 0 0 #fff,  18vw 69vh 0 0 #fff,
    26vw 75vh 0 0 #fff,  34vw 82vh 0 0 #fff,  42vw 70vh 0 0 #fff,
    50vw 80vh 0 0 #fff,  58vw 74vh 0 0 #fff,  66vw 83vh 0 0 #fff,
    74vw 77vh 0 0 #fff,  82vw 68vh 0 0 #fff,  90vw 85vh 0 0 #fff;
  animation: pulse-a 4s ease-in-out infinite alternate;
}

.stars-medium {
  width: 2px; height: 2px; background: #fff;
  box-shadow:
     9vw 16vh 0 0 #fff,  23vw 10vh 0 0 #fff,  37vw 21vh 0 0 #fff,
    51vw  8vh 0 0 #fff,  65vw 18vh 0 0 #fff,  78vw 12vh 0 0 #fff,
    91vw  6vh 0 0 #fff,  15vw 34vh 0 0 #fff,  30vw 28vh 0 0 #fff,
    46vw 41vh 0 0 #fff,  60vw 38vh 0 0 #fff,  74vw 45vh 0 0 #fff,
    88vw 31vh 0 0 #fff,   4vw 57vh 0 0 #fff,  20vw 62vh 0 0 #fff,
    35vw 50vh 0 0 #fff,  50vw 67vh 0 0 #fff,  64vw 55vh 0 0 #fff,
    79vw 71vh 0 0 #fff,  93vw 60vh 0 0 #fff,  12vw 80vh 0 0 #fff,
    27vw 88vh 0 0 #fff,  43vw 76vh 0 0 #fff,  58vw 83vh 0 0 #fff,
    72vw 91vh 0 0 #fff,  86vw 79vh 0 0 #fff;
  animation: pulse-b 6s ease-in-out infinite alternate;
}

.stars-large {
  width: 3px; height: 3px; background: #fff;
  box-shadow:
    18vw 14vh 0 0 #fff,  42vw  5vh 0 0 #fff,  67vw 22vh 0 0 #fff,
    85vw  9vh 0 0 #fff,  10vw 46vh 0 0 #fff,  33vw 53vh 0 0 #fff,
    56vw 61vh 0 0 #fff,  76vw 48vh 0 0 #fff,  22vw 74vh 0 0 #fff,
    48vw 82vh 0 0 #fff,  71vw 89vh 0 0 #fff,  92vw 67vh 0 0 #fff;
  animation: pulse-c 8s ease-in-out infinite alternate;
}

@keyframes pulse-a {
  0%   { opacity: .2;  }
  40%  { opacity: .9;  }
  70%  { opacity: .5;  }
  100% { opacity: .25; }
}
@keyframes pulse-b {
  0%   { opacity: .65; }
  30%  { opacity: .2;  }
  65%  { opacity: .95; }
  100% { opacity: .5;  }
}
@keyframes pulse-c {
  0%   { opacity: .95; }
  50%  { opacity: .3;  }
  100% { opacity: .85; }
}

@media (prefers-reduced-motion: reduce) {
  .stars-small, .stars-medium, .stars-large { animation: none; opacity: .5; }
}

/* ---- Particles ---- */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-up 9s ease-in infinite;
}
.particle:nth-child(1) { left:  9%; animation-delay: 0s;   animation-duration: 10s; width: 2px; height: 2px; }
.particle:nth-child(2) { left: 24%; animation-delay: 1.8s; animation-duration:  8s; }
.particle:nth-child(3) { left: 43%; animation-delay: 3.4s; animation-duration: 11s; width: 4px; height: 4px; }
.particle:nth-child(4) { left: 60%; animation-delay: 0.6s; animation-duration:  9s; }
.particle:nth-child(5) { left: 76%; animation-delay: 2.5s; animation-duration:  7s; width: 2px; height: 2px; }
.particle:nth-child(6) { left: 89%; animation-delay: 4.2s; animation-duration: 10s; }

@keyframes float-up {
  0%   { bottom: -10px; opacity: 0;    transform: translateX(0)    scale(.5); }
  8%   {                opacity: .7;  }
  85%  {                opacity: .25; }
  100% { bottom: 102%;  opacity: 0;    transform: translateX(25px) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .particle { animation: none; opacity: 0; }
}

/* ---- Hero content ---- */
.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.25rem 4rem;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .hero-container { padding: 8rem 2.5rem 6rem; } }

.hero-eyebrow { margin-bottom: 0; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  color: var(--cream);
  line-height: 1.15;
  margin: 0 auto 1.5rem;
  max-width: 64rem;
  font-weight: 300;
}
@media (min-width: 768px)  { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem;  } }

.hero-title-accent { color: var(--gold); font-style: italic; }

.hero-lead {
  font-size: 1rem;
  color: var(--cream-80);
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
@media (min-width: 768px)  { .hero-lead { font-size: 1.1rem; } }
@media (min-width: 1024px) { .hero-lead { font-size: 1.2rem; } }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 3rem;
}

.badge-hero {
  display: inline-flex;
  align-items: center;
  padding: .45rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 100px;
  font-size: .85rem;
  color: var(--cream);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 44px;
}
.badge-icon { color: var(--gold); margin-right: .5rem; }

.scroll-hint {
  margin-top: 4rem;
  opacity: .5;
  animation: bounce-hint 2s ease-in-out infinite;
}
.scroll-hint svg { width: 1.5rem; height: 1.5rem; color: var(--gold); margin: 0 auto; }

@keyframes bounce-hint {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint { animation: none; }
  @keyframes bounce-hint {}
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
#trust-strip {
  background: #080015;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.trust-track {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  color: rgba(245,240,255,.5);
  letter-spacing: .02em;
  white-space: nowrap;
}

.trust-star {
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
}

.trust-sep {
  color: rgba(245,240,255,.18);
  font-size: .9rem;
  line-height: 1;
}

@media (max-width: 479px) {
  .trust-sep { display: none; }
  .trust-track { gap: .5rem .75rem; }
}

/* ============================================================
   SECTION BACKGROUNDS — sistema alternado tonal
   ============================================================ */
#identificacao {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(61,26,110,.12) 0%, transparent 60%),
    var(--bg-night);
  position: relative;
}
#verdade {
  background:
    radial-gradient(ellipse at 20% 60%, rgba(201,168,76,.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(61,26,110,.2) 0%, transparent 55%),
    var(--bg-rich);
  position: relative;
  overflow: hidden;
}
#o-que-e {
  background:
    radial-gradient(ellipse at 50% 80%, rgba(22,8,40,.8) 0%, transparent 60%),
    var(--bg-cold);
}
#video {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(45,11,85,.3) 0%, transparent 65%),
    var(--bg-abyss);
}
#para-quem {
  background: linear-gradient(160deg, #1E0840 0%, var(--bg-abyss) 100%);
  position: relative;
  overflow: hidden;
}
#conteudo {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(61,26,110,.1) 0%, transparent 55%),
    var(--bg-night);
}
#beneficios {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,.05) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 20%, rgba(74,26,138,.2) 0%, transparent 55%),
    var(--bg-vivid);
  position: relative;
  overflow: hidden;
}
#depoimentos {
  background:
    radial-gradient(ellipse at 20% 30%, rgba(26,5,51,.6) 0%, transparent 55%),
    var(--bg-abyss);
}
#como-funciona {
  background:
    radial-gradient(ellipse at 70% 60%, rgba(22,8,40,.6) 0%, transparent 55%),
    var(--bg-deep);
}
#oferta {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 70%, rgba(61,26,110,.2) 0%, transparent 55%),
    var(--bg-cold);
}
#garantia {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(61,26,110,.1) 0%, transparent 60%),
    var(--bg-mid);
}
#fechamento {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(74,26,138,.5) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,.04) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-rich) 0%, var(--bg-deep) 40%, var(--bg-abyss) 100%);
  position: relative;
  overflow: hidden;
}

/* Seções com padding padrão */
#identificacao, #verdade, #o-que-e, #para-quem,
#conteudo, #beneficios, #depoimentos, #como-funciona, #oferta {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  #identificacao, #verdade, #o-que-e, #para-quem,
  #conteudo, #beneficios, #depoimentos, #como-funciona, #oferta {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

#video   { padding-top: 5rem;  padding-bottom: 5rem; }
@media (min-width: 768px) {
  #video { padding-top: 6.25rem; padding-bottom: 6.25rem; }
}

#garantia   { padding-top: 4rem; padding-bottom: 4rem; }
#fechamento { padding-top: 7rem; padding-bottom: 7rem; }
@media (min-width: 768px) {
  #fechamento { padding-top: 10rem; padding-bottom: 10rem; }
}

/* Glow decorativos */
.truth-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 70vw; height: 70vh;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}
.section-glow-right {
  position: absolute; right: -10%; top: 15%;
  width: 50vw; height: 65vh;
  background: radial-gradient(ellipse, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
.section-glow-left {
  position: absolute; left: -10%; top: 15%;
  width: 50vw; height: 65vh;
  background: radial-gradient(ellipse, rgba(74,26,138,.14) 0%, transparent 70%);
  pointer-events: none;
}
.section-glow-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80vw; height: 80vh;
  background: radial-gradient(ellipse, rgba(201,168,76,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ============================================================
   IDENTIFICAÇÃO
   ============================================================ */
.identify-list { display: flex; flex-direction: column; gap: 1rem; }

.identify-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  background: var(--glass-5);
  border: 1px solid var(--border-glass);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .25s ease, border-color .25s ease, transform .25s ease-out, box-shadow .25s ease;
}
.identify-item:hover {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.25);
  transform: translateX(5px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 4px 20px rgba(0,0,0,.2);
}
.identify-item p { margin: 0; color: var(--cream-80); font-size: 1.02rem; line-height: 1.6; }
.identify-icon { display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; flex-shrink: 0; color: var(--gold); margin-top: .15rem; }
.identify-icon svg { width: 22px; height: 22px; }

.quote-wrapper { margin-top: 3rem; }
.highlight-quote {
  padding: 1.75rem 2rem;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 0 32px rgba(201,168,76,.08);
}
.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
}
@media (min-width: 768px) { .quote-text { font-size: 1.875rem; } }
.quote-caption { text-align: center; color: var(--cream-60); margin-top: 1.25rem; font-size: .875rem; }

/* ============================================================
   VERDADE
   ============================================================ */
.truth-lead {
  color: var(--cream-80);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
}
.truth-lead em { color: var(--cream); font-style: italic; }

.truth-card {
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: transform .25s ease-out, box-shadow .25s ease;
}
.truth-card:hover { transform: translateY(-4px); box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 40px rgba(0,0,0,.3); }
.truth-card-dark  { background: rgba(0,0,0,.3); }
.truth-card-gold  {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
}
.truth-card-icon-x     { font-size: 1.5rem; color: rgba(255,255,255,.3); margin-bottom: .85rem; }
.truth-card-icon-check { font-size: 1.5rem; color: var(--gold); margin-bottom: .85rem; }
.truth-title-dark { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: rgba(245,240,255,.55); margin-bottom: .75rem; font-weight: 500; }
.truth-body-dark  { color: rgba(245,240,255,.45); font-size: .9rem; line-height: 1.75; margin: 0; }
.truth-title-gold { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--gold); margin-bottom: .75rem; font-weight: 500; }
.truth-body-gold  { color: var(--cream-80); font-size: .9rem; line-height: 1.75; margin: 0; }
.truth-body-gold strong { color: var(--cream); }

/* ============================================================
   O QUE É
   ============================================================ */
.level-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.4rem 1rem;
  background: var(--glass-5);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 1rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .25s ease, border-color .25s ease, transform .25s ease-out, box-shadow .25s ease;
}
.level-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 12px 30px rgba(0,0,0,.25);
}
.level-icon { color: var(--gold); font-size: 1.4rem; }

.process-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: .875rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: background .25s ease, border-color .25s ease;
}
.process-item:hover { background: rgba(201,168,76,.07); border-color: rgba(201,168,76,.2); }
.process-block { margin-top: 3.5rem; }

.process-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.18); border-radius: 50%; color: var(--gold); }
.process-icon svg { width: 18px; height: 18px; }
.process-item p { margin: 0; color: rgba(245,240,255,.8); font-size: .93rem; line-height: 1.6; }

@media (min-width: 768px) {
  .process-item--center { grid-column: span 2; max-width: 28rem; margin: 0 auto; width: 100%; }
}

/* ============================================================
   VÍDEO
   ============================================================ */
.video-subtitle {
  color: var(--cream-80);
  font-size: 1.1rem;
  margin-top: .75rem;
  text-align: center;
}
.video-container { max-width: 800px; margin: 3rem auto 0; }
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(201,168,76,.1);
  transition: box-shadow .3s ease, border-color .3s ease;
}
.video-wrapper:hover {
  box-shadow: 0 28px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(201,168,76,.5);
  border-color: rgba(201,168,76,.8);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ============================================================
   PARA QUEM É
   ============================================================ */
.for-who-card {
  padding: 1.75rem 1.5rem;
  background: var(--glass-5);
  border: 1px solid var(--border-glass);
  border-radius: 1.25rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease-out, box-shadow .3s ease;
}
.for-who-card:hover {
  background: rgba(201,168,76,.09);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 45px rgba(0,0,0,.3);
}
.for-who-icon { font-size: 2.2rem; margin-bottom: .85rem; }
.for-who-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin: 0 0 .4rem;
  font-weight: 600;
}
.for-who-card p { color: var(--cream-60); font-size: .88rem; line-height: 1.65; margin: 0; }

.glass-card {
  background: var(--glass-5);
  border: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.callout-glass {
  display: inline-block;
  background: var(--glass-8);
  border: 1px solid rgba(201,168,76,.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.25rem 2rem;
  border-radius: 1rem;
}
.callout-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--gold);
  font-style: italic;
}
@media (min-width: 768px) { .callout-title { font-size: 1.5rem; } }
.callout-sub { color: var(--cream-60); margin-top: .5rem; font-size: .875rem; }

/* ============================================================
   ACCORDION
   ============================================================ */
.accordion-wrapper    { display: flex; flex-direction: column; gap: 1rem; }

.accordion-item {
  background: var(--glass-5);
  border: 1px solid var(--border-glass);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.accordion-item.active {
  border-color: rgba(201,168,76,.3);
  background: rgba(201,168,76,.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 30px rgba(0,0,0,.2);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  min-height: 44px;
  transition: background .25s ease;
}
.accordion-header:hover { background: rgba(201,168,76,.05); }

.accordion-title-row  { display: flex; align-items: center; gap: 1rem; }
.accordion-title-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--cream);
}

.accordion-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--gold);
  opacity: .5;
  font-weight: 300;
  line-height: 1;
  min-width: 2.2rem;
  transition: opacity .3s ease;
}
.accordion-item.active .accordion-number { opacity: 1; }

.accordion-arrow {
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform .35s ease;
  flex-shrink: 0;
}
.accordion-item.active .accordion-arrow { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s ease, padding .3s ease;
  padding: 0 1.6rem;
}
.accordion-body.open { max-height: 600px; padding: 0 1.6rem 1.5rem; }
.accordion-body li { color: rgba(245,240,255,.75); font-size: .93rem; line-height: 1.65; }

.mod-list  { display: flex; flex-direction: column; gap: .75rem; }
.mod-item  { display: flex; align-items: flex-start; gap: .75rem; color: rgba(245,240,255,.75); font-size: .93rem; line-height: 1.6; }
.mod-bullet { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }

/* ============================================================
   BENEFÍCIOS
   ============================================================ */
.benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .85rem;
  padding: 1.75rem 1.4rem;
  background: var(--glass-5);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  transition: background .3s ease, border-color .3s ease, transform .3s ease-out, box-shadow .3s ease;
}
.benefit-card:hover {
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.3);
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 20px 45px rgba(0,0,0,.25);
}
.benefit-icon { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; flex-shrink: 0; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.18); border-radius: 50%; color: var(--gold); margin-bottom: .25rem; }
.benefit-icon svg { width: 22px; height: 22px; }
.benefit-card p { color: var(--cream-80); font-size: .93rem; line-height: 1.65; margin: 0; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1.25rem;
  margin-left: -1.25rem;
  margin-right: -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,.3) transparent;
}
.testimonials-track::-webkit-scrollbar { height: 4px; }
.testimonials-track::-webkit-scrollbar-track { background: transparent; }
.testimonials-track::-webkit-scrollbar-thumb { background: rgba(201,168,76,.3); border-radius: 2px; }

@media (min-width: 768px) {
  .testimonials-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
    margin-left: 0; margin-right: 0;
    padding-left: 0; padding-right: 0;
  }
}

/* Card com borda-esquerda dourada 4px, fundo #1A0533, avatar dourado */
.testimonial-card {
  flex: 0 0 82vw;
  max-width: 360px;
  scroll-snap-align: start;
  padding: 2rem 1.75rem 1.75rem;
  background: var(--bg-mid);
  border: 1px solid rgba(201,168,76,.18);
  border-left: 4px solid var(--gold);
  border-radius: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 8px 32px rgba(0,0,0,.3);
  transition: background .3s ease, border-color .3s ease, transform .3s ease-out, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .testimonial-card { flex: unset; max-width: unset; scroll-snap-align: none; }
}
.testimonial-card:hover {
  background: #220a42;
  border-color: rgba(201,168,76,.4);
  border-left-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 22px 55px rgba(0,0,0,.45);
}

.testimonial-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: .65;
  margin-bottom: .5rem;
  opacity: .4;
}

.testimonial-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold-lt);
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 1.25rem;
  padding: .85rem 1.1rem;
  background: rgba(201,168,76,.08);
  border-radius: .5rem;
}

.testimonial-text {
  color: rgba(245,240,255,.68);
  font-size: .875rem;
  line-height: 1.85;
  margin: 0 0 1.5rem;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
}

/* Avatar dourado */
.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, #A07830 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A0A2E;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}
.author-name { font-weight: 700; color: var(--cream); font-size: .95rem; margin: 0; }
.author-role { color: rgba(245,240,255,.45); font-size: .75rem; margin: .15rem 0 0; }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how-card {
  padding: 1.85rem;
  background: var(--glass-5);
  border: 1px solid var(--border-glass);
  border-radius: 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.how-card-highlight {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.25);
}
.how-card-icon { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25); border-radius: 50%; color: var(--gold); margin-bottom: 1.25rem; }
.how-card-icon svg { width: 26px; height: 26px; }
.how-card-title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: .75rem; font-weight: 300; }
.how-card-subtitle { color: rgba(245,240,255,.7); font-size: .875rem; margin-bottom: 1.25rem; }
.how-card-note    { color: rgba(245,240,255,.45); font-size: .75rem; margin-top: 1.25rem; line-height: 1.65; }

.date-list { display: flex; flex-direction: column; gap: .75rem; }
.date-badge {
  padding: .7rem 1.2rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: .65rem;
  color: var(--gold-lt);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

.how-items { display: flex; flex-direction: column; gap: 1rem; }

.how-item {
  display: flex;
  align-items: flex-start;
  gap: .95rem;
  padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.how-item:hover {
  background: rgba(201,168,76,.06);
  border-color: rgba(201,168,76,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 6px 20px rgba(0,0,0,.2);
}
.how-item-icon { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; flex-shrink: 0; background: rgba(201,168,76,.07); border: 1px solid rgba(201,168,76,.15); border-radius: 50%; color: var(--gold); }
.how-item-icon svg { width: 18px; height: 18px; }
.how-item-text  { flex: 1; }
.how-item-title { font-weight: 600; color: var(--cream); font-size: .875rem; margin: 0 0 .25rem; }
.how-item-desc  { color: rgba(245,240,255,.55); font-size: .875rem; margin: 0; }

/* ============================================================
   OFERTA — redesign premium 2 colunas
   ============================================================ */

/* Glow dourado de fundo */
.oferta-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(201,168,76,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(61,26,110,.18) 0%, transparent 50%);
  pointer-events: none;
}
#oferta { position: relative; overflow: hidden; }

/* Grid 2 colunas */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Coluna esquerda */
.offer-content { padding-top: .5rem; }

.offer-includes-title {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(245,240,255,.4);
  margin: 0 0 1.25rem;
}

/* Urgência */
.offer-urgency {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1.25rem;
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: .875rem;
  margin-bottom: 2rem;
}
.offer-urgency-icon  { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.offer-urgency-label {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 .1rem;
}
.offer-urgency-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold-lt);
  margin: 0;
  line-height: 1.2;
}

/* Lista de itens */
.offer-list  { display: flex; flex-direction: column; gap: .9rem; margin: 0; padding: 0; list-style: none; }
.offer-item  { display: flex; align-items: flex-start; gap: .85rem; color: rgba(245,240,255,.85); font-size: .95rem; line-height: 1.5; }
.offer-check { color: var(--gold); font-size: .75rem; flex-shrink: 0; margin-top: .3rem; }

/* ---- Painel de preço (coluna direita) ---- */
.offer-price-panel {
  background: linear-gradient(160deg, rgba(45,11,85,.55) 0%, rgba(5,0,16,.98) 100%);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 1.75rem;
  padding: 2rem;
  text-align: center;
  position: sticky;
  top: 6.5rem;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.06),
    0 0 60px rgba(201,168,76,.1),
    0 0 120px rgba(201,168,76,.05),
    inset 0 1px 0 rgba(255,255,255,.07),
    0 40px 80px rgba(0,0,0,.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Badge do painel */
.offer-price-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1A0A2E;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #F5E4A8 75%, #E8C96A 100%);
  background-size: 200% auto;
  padding: .45rem 1.4rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: shimmer 3.5s linear infinite;
}

/* ============================================================
   COMPONENTE DE PREÇO — especificação exata do usuário
   Regras skill aplicadas:
   • number-tabular    → font-variant-numeric: tabular-nums
   • visual-hierarchy  → 12x de › 279 (hero 5rem) › ,24 (1.5rem sup)
   • whitespace-balance → gaps 20px / 24px / 32px conforme spec
   • color-accessible-pairs → divisor dourado #c9a84c opacity .4
   ============================================================ */

/* ---- Bloco parcelado ---- */
.price-installment-block {
  margin-bottom: 1.25rem; /* 20px gap até o divisor */
}

/* "12x de" */
.price-times-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold-lt);
  letter-spacing: .02em;
  margin: 0 0 .5rem;
  line-height: 1;
}

/* Figura parcelado: inline-flex com baseline para alinhar R$ + 279 + ,24 na mesma linha */
.price-figure {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  margin-bottom: .75rem;
  width: 100%;
}

/* € → alinhado à baseline do valor */
.price-currency {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--gold-lt);
  margin-right: 4px;
  line-height: 1.2;
}

/* valor principal */
.price-integer {
  font-family: 'DM Serif Display', serif;
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -.01em;
  padding-bottom: .05em;
  background: linear-gradient(170deg, #F5E4A8 0%, #E8C96A 30%, #C9A84C 70%, #A07830 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ,xx → alinhado à baseline do valor principal */
.price-decimal {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  margin-left: 2px;
  line-height: 1.2;
}

/* "sem juros no cartão" */
.price-condition {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 400;
  color: rgba(245,240,255,.38);
  letter-spacing: .04em;
  margin: 0;
}

/* ---- Divisor "ou" — flexbox + hr dourado ---- */
.price-or-divider {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin: 1.5rem 0; /* 24px topo e base */
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: .08em;
  color: rgba(201,168,76,.7);
}

/* hr explícitos — flex: 1, cor dourada, opacity .4 */
.price-or-line {
  flex: 1;
  border: none;
  border-top: 1px solid #C9A84C;
  opacity: .4;
  margin: 0;
}

/* ---- À vista ---- */
.price-full-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

/* Badge "À VISTA" — manter visual, garantir margin-bottom: 12px */
.price-full-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 100px;
  padding: .28rem .85rem;
  background: rgba(201,168,76,.06);
  line-height: 1.4;
  margin-bottom: .75rem; /* 12px exato conforme spec */
}

/* Figura à vista: inline-flex com baseline — R$ + 2.700 + ,00 na mesma linha */
.price-full-figure {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  width: 100%;
}

/* R$ à vista → 0.8rem */
.price-full-currency {
  font-family: 'Cormorant Garamond', serif;
  font-size: .8rem;
  font-weight: 500;
  color: rgba(245,240,255,.42);
  margin-right: 3px;
  line-height: 1;
}

/* 2.700 → 2.2rem */
.price-full-integer {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
  color: rgba(245,240,255,.5);
  font-variant-numeric: tabular-nums;
}

/* ,00 → 0.9rem */
.price-full-cents {
  font-family: 'Cormorant Garamond', serif;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(245,240,255,.42);
  margin-left: 2px;
  line-height: 1;
}

/* ---- CTA de compra ---- */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow:
      0 0 20px rgba(201,168,76,.4),
      0 8px 28px rgba(201,168,76,.4),
      0 0 0 0 rgba(201,168,76,.25);
  }
  50% {
    box-shadow:
      0 0 20px rgba(201,168,76,.4),
      0 12px 48px rgba(201,168,76,.6),
      0 0 0 10px rgba(201,168,76,0);
  }
}

.btn-cta-purchase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1.2rem 1.75rem;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 45%, #F5E4A8 60%, #E8C96A 75%, #C9A84C 100%);
  background-size: 250% auto;
  color: #1A0A2E;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .04em;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background-position .45s ease, transform .2s ease, box-shadow .2s ease;
  animation: pulse-glow 2.4s ease-in-out infinite;
  margin-bottom: 1.25rem;
}
.btn-cta-purchase:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.01);
  animation: none;
  filter: brightness(1.1);
  box-shadow:
    0 0 24px rgba(201,168,76,.35),
    0 8px 32px rgba(201,168,76,.4),
    0 0 0 1px rgba(201,168,76,.3);
  color: #1A0A2E !important;
}
.btn-cta-purchase:active {
  transform: translateY(0) scale(0.99);
  filter: brightness(1.0);
}
.btn-arrow {
  font-size: 1.15rem;
  display: inline-block;
  transition: transform .2s ease;
}
.btn-cta-purchase:hover .btn-arrow { transform: translateX(5px); }

/* Selos */
.payment-seals {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .2rem .65rem;
  color: rgba(245,240,255,.4);
  font-size: .75rem;
  margin-bottom: 1rem;
}
.payment-seal-item {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.payment-seal-item svg { color: var(--gold); opacity: .7; flex-shrink: 0; }
.seal-sep { color: rgba(245,240,255,.18); }

/* Métodos de pagamento */
.payment-methods {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  flex-wrap: wrap;
}
.payment-methods-label {
  font-size: .65rem;
  color: rgba(245,240,255,.28);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.payment-method-tag {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  color: rgba(245,240,255,.45);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 5px;
  padding: .18rem .55rem;
  letter-spacing: .04em;
}

@media (prefers-reduced-motion: reduce) {
  .btn-cta-purchase { animation: none; }
  .offer-price-badge { animation: none; }
}

/* ============================================================
   GARANTIA — glassmorphism com borda dourada sutil
   ============================================================ */
.guarantee-box {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 2.2rem 2rem;
  background: var(--glass-8);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 1.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 8px 32px rgba(0,0,0,.25);
}
.guarantee-icon { display: flex; align-items: center; justify-content: center; width: 72px; height: 72px; flex-shrink: 0; background: rgba(201,168,76,.08); border: 1px solid rgba(201,168,76,.2); border-radius: 50%; color: var(--gold); }
.guarantee-icon svg { width: 36px; height: 36px; }
.guarantee-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: .75rem;
  font-weight: 400;
}
@media (min-width: 768px) { .guarantee-title { font-size: 1.875rem; } }
.guarantee-text { color: var(--cream-80); line-height: 1.75; font-size: .9rem; margin: 0; }
@media (min-width: 768px) { .guarantee-text { font-size: 1rem; } }
.guarantee-text strong { color: var(--cream); }

/* ============================================================
   FECHAMENTO
   ============================================================ */
.closing-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 60vw; height: 60vh;
  background: radial-gradient(ellipse, rgba(201,168,76,.07) 0%, transparent 70%);
  pointer-events: none;
}
.closing-content { max-width: 48rem; margin: 0 auto; text-align: center; }
.closing-star    { color: var(--gold); font-size: 2.5rem; display: block; margin-bottom: 2.5rem; line-height: 1; }
.closing-p1      { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: rgba(245,240,255,.7); line-height: 1.6; margin-bottom: 1.25rem; }
.closing-p2      { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--cream); line-height: 1.6; margin-bottom: 1.25rem; }
.closing-accent  { color: var(--gold); font-style: italic; }
.closing-p3      { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: rgba(245,240,255,.6); font-style: italic; margin-bottom: 3.5rem; }
@media (min-width: 768px) {
  .closing-p1, .closing-p2 { font-size: 2.25rem; }
  .closing-p3              { font-size: 1.5rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: rgba(0,0,0,.55);
  padding: 3rem 0;
  border-top: 1px solid rgba(201,168,76,.12);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-brand { text-align: center; }
@media (min-width: 768px) { .footer-brand { text-align: left; } }
.footer-logo-row { display: flex; align-items: center; gap: .5rem; justify-content: center; margin-bottom: .5rem; }
@media (min-width: 768px) { .footer-logo-row { justify-content: flex-start; } }
.footer-logo-star { color: var(--gold); font-size: 1.25rem; }
.footer-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--cream); }
.footer-tagline   { color: rgba(245,240,255,.35); font-size: .875rem; }
.footer-subtitle  { color: rgba(245,240,255,.25); font-size: .75rem; margin-top: .25rem; }
.footer-socials   { display: flex; align-items: center; gap: 1.5rem; }
.footer-icon      { width: 1.25rem; height: 1.25rem; }
.footer-social-link {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(245,240,255,.45);
  text-decoration: none;
  font-size: .85rem;
  transition: color .25s ease;
}
.footer-social-link:hover { color: var(--gold); }
.footer-copy-bar {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
}
.footer-copy-text { color: rgba(245,240,255,.25); font-size: .75rem; }

/* ============================================================
   BOTÃO FLUTUANTE WHATSAPP — expand no hover
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  min-width: 60px;
  max-width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: max-width .4s cubic-bezier(.4,0,.2,1), padding .35s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, transform .3s ease;
  animation: wa-pulse 2s ease-in-out infinite;
}
@media (min-width: 768px) {
  .wa-float:hover {
    max-width: 220px;
    padding: 0 1.25rem 0 .9rem;
    gap: .6rem;
    box-shadow: 0 10px 36px rgba(37,211,102,.6);
    animation: none;
  }
}
.wa-float:hover { transform: scale(1.04); }

.wa-icon { width: 32px; height: 32px; flex-shrink: 0; }

.wa-label {
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width .4s cubic-bezier(.4,0,.2,1), opacity .25s ease .15s;
}
@media (min-width: 768px) {
  .wa-float:hover .wa-label { max-width: 160px; opacity: 1; }
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  60%  { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* Tooltip legado (substituído pelo wa-label no hover) */
.wa-tooltip {
  position: absolute;
  right: calc(100% + .85rem);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #1a1a1a;
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: .45rem .9rem;
  border-radius: .65rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  display: none;
}

/* ============================================================
   NAV LOGO IMAGE
   ============================================================ */
.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

/* ============================================================
   HERO — 2-column grid layout
   ============================================================ */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  min-height: 100%;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  /* inherits fade-in-element — no extra positioning needed */
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  order: -1; /* mobile: image above text */
}

@media (min-width: 900px) {
  .hero-image {
    order: 0; /* desktop: image on right */
    justify-content: flex-end;
  }
}

.hero-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.5rem;
  /* Subtle gold border glow */
  box-shadow:
    0 0 0 1px rgba(201,168,76,.25),
    0 0 60px rgba(201,168,76,.12),
    0 32px 80px rgba(0,0,0,.6);
  /* Dark image blends naturally with dark bg */
}

@media (min-width: 900px) {
  .hero-img {
    max-width: 440px;
    border-radius: 2rem;
  }
}

/* ============================================================
   #SOBRE — Liliane bio section (2-column)
   ============================================================ */
#sobre {
  background: var(--bg-cold);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .sobre-grid {
    grid-template-columns: 380px 1fr;
    gap: 4.5rem;
  }
}

.sobre-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.sobre-image-wrap::before {
  /* Vignette to blend beige bg photo into dark page */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  background:
    radial-gradient(ellipse at center, transparent 50%, var(--bg-cold) 95%);
  z-index: 1;
  pointer-events: none;
}

.sobre-img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.75rem;
  border: 1px solid rgba(201,168,76,.2);
  box-shadow:
    0 0 0 1px rgba(201,168,76,.08),
    0 0 50px rgba(201,168,76,.1),
    0 32px 80px rgba(0,0,0,.55);
  display: block;
}

@media (min-width: 900px) {
  .sobre-img {
    max-width: 380px;
  }
}

.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sobre-title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .75rem 0 .5rem;
}

@media (min-width: 768px) {
  .sobre-title { font-size: 3.25rem; }
}

.sobre-role {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream-60);
  margin-bottom: 1.75rem;
}

.sobre-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--cream-80);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sobre-body {
  font-size: 1rem;
  color: var(--cream-60);
  line-height: 1.85;
  margin-bottom: 2.25rem;
}

.sobre-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201,168,76,.18);
  flex-wrap: wrap;
}

.sobre-stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.sobre-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sobre-stat-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--cream-60);
  text-transform: uppercase;
}

/* ============================================================
   #COMO-FUNCIONA — Foto Liliane com Mesa
   ============================================================ */
.como-funciona-photo {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
}

.como-funciona-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 1.5rem;
  /* black background blends naturally */
  box-shadow:
    0 0 0 1px rgba(201,168,76,.2),
    0 0 40px rgba(201,168,76,.1),
    0 24px 60px rgba(0,0,0,.5);
}

/* ============================================================
   MÓDULOS — 3 cards de precificação
   ============================================================ */

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: center;
}

/* Card base */
.module-card {
  background: rgba(26,5,51,.6);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.module-card:hover {
  border-color: rgba(201,168,76,.38);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45), 0 0 40px rgba(201,168,76,.08);
}

/* Card em destaque — elevado, maior */
.module-card--featured {
  background: linear-gradient(160deg, rgba(45,11,85,.75) 0%, rgba(12,0,26,.98) 100%);
  border-color: rgba(201,168,76,.5);
  padding: 3rem 2rem;
  box-shadow:
    0 0 0 1px rgba(201,168,76,.1),
    0 0 80px rgba(201,168,76,.14),
    0 40px 80px rgba(0,0,0,.6);
  transform: scale(1.04);
  z-index: 1;
}
.module-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

/* Badge "Mais escolhido" */
.module-card-popular {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1A0A2E;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C96A 50%, #F5E4A8 75%, #E8C96A 100%);
  background-size: 200% auto;
  padding: .35rem 1.1rem;
  border-radius: 100px;
  animation: shimmer 3.5s linear infinite;
  margin-bottom: -.25rem;
}

/* Eyebrow — nome do módulo */
.module-card-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.2;
}

/* Bloco de preço */
.module-card-price-block { display: flex; flex-direction: column; align-items: center; gap: .2rem; }
.module-card-price-block .price-figure { margin-bottom: 0; }
.module-card-price-block .price-integer { font-size: 3.5rem; }
.module-card-price-block .price-currency { font-size: 1.75rem; margin-left: 0; margin-right: 4px; }
.module-card-price-block .price-condition { margin: 0; }

/* CTA full-width dentro do card */
.cta-module {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .88rem;
  padding: .9rem 1rem;
  letter-spacing: .04em;
}

/* Selos e métodos centralizados abaixo dos cards */
.offer-footer-seals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .85rem;
  margin-top: 3rem;
}

/* ============================================================
   RESPONSIVE — Mobile-first breakpoints
   ============================================================ */
@media (max-width: 639px) {

  h1, h2, h3 { line-height: 1.25; }

  .hero-title                            { font-size: 2rem !important; }
  .hero-lead                             { font-size: .95rem !important; }
  .section-title, .section-title--sm     { font-size: 1.65rem !important; }
  .subsection-title, .how-card-title,
  .guarantee-title                       { font-size: 1.2rem !important; }
  .section-eyebrow                       { font-size: .62rem; }

  .badge-hero          { font-size: .78rem; padding: .4rem .9rem; }
  .btn-cta-primary     { padding: .85rem 1.6rem; font-size: .93rem; }
  .btn-cta-secondary   { padding: .8rem 1.5rem;  font-size: .9rem;  }

  .for-who-card, .benefit-card, .truth-card, .how-item { width: 100%; }
  .grid-3, .grid-3-fixed, .grid-4, .grid-2-wide { grid-template-columns: 1fr !important; }
  .grid-levels { grid-template-columns: 1fr 1fr !important; }

  .accordion-header         { padding: 1rem 1.1rem; }
  .accordion-body.open      { padding: 0 1.1rem 1.1rem; }
  .accordion-number         { font-size: 1.3rem; min-width: 1.8rem; }
  .accordion-title-label    { font-size: 1rem !important; }

  /* Oferta mobile — empilha */
  .offer-grid               { grid-template-columns: 1fr; gap: 2rem; }
  .offer-price-panel        { position: static; padding: 2rem 1.5rem; }
  .offer-item               { font-size: .9rem; }
  .price-integer            { font-size: 3.5rem; }
  .price-full-integer       { font-size: 1.8rem; }
  .offer-price-panel        { padding: 1.5rem; }

  .offer-urgency { gap: .65rem; }
  .offer-urgency-date { font-size: 1rem; }

  .guarantee-box            { flex-direction: column; align-items: center; text-align: center; padding: 1.6rem 1.25rem; }
  .guarantee-icon           { width: 56px; height: 56px; }
  .guarantee-icon svg       { width: 28px; height: 28px; }

  .testimonial-mark         { font-size: 3.5rem; }
  .testimonial-pull         { font-size: 1rem; }
  .testimonial-text         { font-size: .85rem; }
  .testimonial-avatar       { width: 44px; height: 44px; font-size: 1.25rem; }

  .closing-p1, .closing-p2  { font-size: 1.4rem !important; }
  .closing-p3               { font-size: 1.1rem !important; }

  .footer-inner  { flex-direction: column !important; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-brand, .footer-logo-row { text-align: center; justify-content: center; }

  section { padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }

  /* CTAs mobile — 100% largura, mínimo 56px, fonte maior */
  .btn-cta-primary  { display: block; width: 100%; min-height: 56px; font-size: 1.05rem; text-align: center; }
  .btn-cta-purchase { min-height: 56px; font-size: 1.05rem; padding: 1rem 1.5rem; }

  /* Card de pricing mobile — padding lateral 24px */
  .offer-price-panel { padding: 1.5rem !important; }

  /* Hero grid — mobile: empilha, imagem acima */
  .hero-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .hero-img      { max-width: 260px; border-radius: 1.25rem; }
  .hero-image    { order: -1; }

  /* Sobre — mobile: empilha */
  .sobre-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .sobre-img     { max-width: 260px; }
  .sobre-title   { font-size: 2rem !important; }
  .sobre-lead    { font-size: 1.1rem; }
  .sobre-stats   { gap: 1.5rem; }
  .sobre-stat-num { font-size: 1.75rem; }

  /* como-funciona photo */
  .como-funciona-img { max-height: 260px; border-radius: 1rem; }

  /* Módulos — empilha no mobile */
  .modules-grid { grid-template-columns: 1fr; gap: 1rem; max-width: 400px; }
  .module-card--featured { transform: none; padding: 2.5rem 1.75rem; }
  .module-card--featured:hover { transform: translateY(-4px); }
  .module-card-price-block .price-integer { font-size: 3rem; }
  .module-card-price-block .price-currency { font-size: 1.5rem; }
  .cta-module { font-size: .95rem; min-height: 52px; }
}

/* Tablet — 2 colunas com card destaque em cima */
@media (min-width: 640px) and (max-width: 959px) {
  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 680px;
  }
  .module-card--featured {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
    transform: none;
  }
  .module-card--featured:hover { transform: translateY(-4px); }
}
