/* ==========================================================================
   NADIELI SIMON - PERSONAL TRAINER & CONSULTORIA ONLINE
   High-End Agency Design System (Powered by taste-skill & gpt-taste GSAP)
   Theme: Editorial Luxury & Ethereal Gold (Preto, Champagne Gold, Off White, Sand, Nude)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS & LUXURY DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Profundidade & Superfícies */
  --bg-dark: #060607;
  --bg-surface-1: #0C0B0F;
  --bg-surface-2: #121117;
  --bg-surface-3: #18171F;
  
  /* Hairline Borders & Shadows */
  --border-hairline: rgba(255, 255, 255, 0.06);
  --border-gold-subtle: rgba(223, 186, 115, 0.15);
  --border-gold-active: rgba(223, 186, 115, 0.45);
  --shadow-ambient: 0 25px 60px -15px rgba(0, 0, 0, 0.85);

  /* Champagne Gold / Dourado Nobre */
  --gold-primary: #DFBA73;
  --gold-light: #F6E9C4;
  --gold-dark: #C5A059;
  --gold-deep: #A37E3A;
  --gold-gradient: linear-gradient(135deg, #F8EED1 0%, #DFBA73 50%, #B89243 100%);
  --gold-glow: rgba(223, 186, 115, 0.28);
  --gold-glow-strong: rgba(246, 233, 196, 0.45);

  /* Off White & Textos */
  --text-main: #F7F5F0;
  --text-muted: #B3ABA0;
  --text-dim: #7B7368;

  /* Nude Quente */
  --nude-primary: #C8A289;
  --nude-light: #DEC2B1;
  --nude-dark: #9F745B;
  --nude-border: rgba(200, 162, 137, 0.2);

  /* Sand / Areia */
  --sand-primary: #D8C7B5;
  --sand-light: #ECE2D8;
  --sand-muted: #9E8E7D;
  --sand-border: rgba(216, 199, 181, 0.15);

  /* Tipografia */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Unna', Georgia, serif;
  --font-script: 'MonteCarlo', cursive;

  /* Layout & Espaçamento */
  --container-max: 1180px;
  --radius-outer: 24px;
  --radius-inner: 18px;
  --radius-pill: 999px;

  /* Easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-kinetic: cubic-bezier(0.32, 0.72, 0, 1);
  --transition-smooth: 0.5s var(--ease-spring);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE (CRÍTICO: overflow-x: clip para não quebrar position: sticky)
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: clip; /* Mantém sticky funcionando perfeitamente */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  line-height: 1.65;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: clip; /* Não usar overflow: hidden */
  width: 100%;
  position: relative;
}

body.modal-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. FILM GRAIN / NOISE OVERLAY
   -------------------------------------------------------------------------- */
.film-grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY & TEXT UTILITIES
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1.22;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

.highlight-unna-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.22em;
  letter-spacing: 0.01em;
  padding-right: 0.08em;
  display: inline-block;
  line-height: 1;
}

.highlight-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.22em;
  background: linear-gradient(135deg, #FFFFFF 20%, var(--gold-light) 65%, var(--gold-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 0.08em;
  display: inline-block;
  line-height: 1;
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------------------------------
   5. CONTAINER & SPATIAL RHYTHM
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-padding {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem auto;
}

.section-title {
  font-size: clamp(2.1rem, 3.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.15rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   6. ARCHITECTURE: DOUBLE-BEZEL
   -------------------------------------------------------------------------- */
.bezel-card {
  position: relative;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--border-gold-subtle);
  padding: 6px;
  border-radius: var(--radius-outer);
  transition: transform 0.5s var(--ease-spring), border-color 0.4s ease, box-shadow 0.5s ease;
}

.bezel-card:hover {
  border-color: var(--border-gold-active);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow);
  transform: translateY(-4px);
}

.bezel-card-inner {
  background: linear-gradient(145deg, #100F14 0%, #08080B 100%);
  border-radius: var(--radius-inner);
  padding: 2.5rem 2.25rem;
  height: 100%;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
}

/* --------------------------------------------------------------------------
   7. BUTTON-IN-BUTTON KINETIC ISLAND CTA
   -------------------------------------------------------------------------- */
.btn-primary-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.65rem 0.75rem 0.65rem 2rem;
  background: var(--gold-gradient);
  color: #08070A;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  box-shadow: 0 10px 30px var(--gold-glow);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  overflow: hidden;
  text-align: left;
}

.btn-primary-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transition: left 0.7s ease;
}

.btn-primary-gold:hover::before {
  left: 100%;
}

.btn-primary-gold:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 15px 40px var(--gold-glow-strong);
}

.btn-primary-gold:active {
  transform: scale(0.98);
}

.btn-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(8, 7, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08070A;
  font-size: 0.95rem;
  transition: transform 0.4s var(--ease-kinetic), background 0.3s ease;
  flex-shrink: 0;
}

.btn-primary-gold:hover .btn-icon-circle {
  transform: translate(3px, -2px) scale(1.08);
  background: rgba(8, 7, 10, 0.18);
}

.btn-microcopy {
  display: block;
  font-size: 0.84rem;
  color: var(--sand-primary);
  margin-top: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   8. FLOATING GLASS ISLAND NAVBAR
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 1100px;
  height: 66px;
  z-index: 100;
  background: rgba(8, 7, 10, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  transition: transform 0.45s var(--ease-spring), opacity 0.4s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.logo-sub {
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand-muted);
  border-left: 1px solid var(--gold-primary);
  padding-left: 0.55rem;
  line-height: 1.1;
}

.header-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gold-gradient);
  color: #0A090C;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  box-shadow: 0 0 15px var(--gold-glow);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--gold-glow-strong);
}

/* --------------------------------------------------------------------------
   9. DOBRA 1: HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 5.5rem;
  display: flex;
  align-items: center;
  background-image: url('bg hero desktop.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: var(--bg-dark);
}

.hero-overlay-dark {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(6, 6, 7, 0.45) 0%, rgba(6, 6, 7, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-container-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content-box {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pre-headline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  background: rgba(223, 186, 115, 0.1);
  border: 1px solid rgba(223, 186, 115, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
}

.pre-headline-badge .badge-dot {
  width: 7px;
  height: 7px;
  min-width: 7px;
  min-height: 7px;
  flex-shrink: 0;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold-primary);
}

.hero-title {
  font-size: clamp(2rem, 2.7vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  color: var(--sand-light);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 580px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* --------------------------------------------------------------------------
   10. DOBRA 2: IDENTIFICAÇÃO - DOR (Deep Dark Sem Preenchimento de Card)
   -------------------------------------------------------------------------- */
.section-dor {
  position: relative;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4.5rem !important;
  padding-bottom: 4rem !important;
  box-sizing: border-box;
}

.dor-container-direct {
  max-width: 900px;
  margin: 0 auto;
}

.dor-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.dor-title {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.dor-intro {
  font-size: 1.05rem;
  color: var(--sand-light);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.dor-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.dor-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 1.02rem;
  color: #E2DDD5;
  line-height: 1.6;
  transition: transform 0.3s ease;
}

.dor-item-icon {
  color: var(--gold-primary);
  font-size: 0.8rem;
  margin-top: 0.45rem;
  flex-shrink: 0;
  opacity: 0.22;
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.dor-item.is-revealed .dor-item-icon {
  opacity: 1;
  transform: translateX(3px);
  text-shadow: 0 0 10px rgba(223, 186, 115, 0.45);
}

.highlight-quote-box {
  background: rgba(223, 186, 115, 0.04);
  border-left: 3px solid rgba(223, 186, 115, 0.3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.6rem 1.85rem;
  margin-top: 0.75rem;
  transition: border-color 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.highlight-quote-box.is-revealed {
  border-left-color: var(--gold-primary);
  background: rgba(223, 186, 115, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(223, 186, 115, 0.08);
}

.highlight-quote-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   MAGIC TEXT WORD-BY-WORD SCROLL REVEAL (Inspirado no magic-text.tsx)
   -------------------------------------------------------------------------- */
.magic-word {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

/* Neutraliza o background-clip e text-fill no wrapper .gold-text quando dentro de magic text */
.section-dor .gold-text,
.magic-text-block .gold-text,
.magic-gold-wrapper {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: initial !important;
  color: inherit !important;
}

.magic-ghost {
  display: inline-block;
  opacity: 0.20 !important;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none !important;
  user-select: none;
  transition: opacity 0.2s ease;
}

.magic-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: #FFFFFF;
  -webkit-text-fill-color: #FFFFFF;
  background: none !important;
  will-change: opacity;
  pointer-events: none;
}

/* Palavras douradas: o ghost fica com apenas 20% de opacidade do tom dourado */
.magic-word.gold-word .magic-ghost,
.gold-text .magic-ghost,
.magic-gold-wrapper .magic-ghost {
  color: var(--gold-primary) !important;
  -webkit-text-fill-color: var(--gold-primary) !important;
  opacity: 0.20 !important;
  background: none !important;
}

/* Palavras douradas: o fill começa 100% invisível (opacity: 0) e ao acender revela o dourado brilhante */
.magic-word.gold-word .magic-fill,
.gold-text .magic-fill,
.magic-gold-wrapper .magic-fill {
  color: var(--gold-primary) !important;
  -webkit-text-fill-color: var(--gold-primary) !important;
  text-shadow: 0 0 16px rgba(223, 186, 115, 0.45) !important;
  background: none !important;
  opacity: 0;
  will-change: opacity;
}

.highlight-quote-text .magic-ghost {
  color: var(--gold-light) !important;
  -webkit-text-fill-color: var(--gold-light) !important;
  opacity: 0.20 !important;
}

.highlight-quote-text .magic-fill {
  color: var(--gold-light) !important;
  -webkit-text-fill-color: var(--gold-light) !important;
  text-shadow: 0 0 18px rgba(223, 186, 115, 0.35) !important;
  opacity: 0;
}

/* --------------------------------------------------------------------------
   11. DOBRA 3: QUEBRA DE CRENÇA
   -------------------------------------------------------------------------- */
.section-crenca {
  position: relative;
  background: radial-gradient(circle at 85% 50%, rgba(200, 162, 137, 0.05) 0%, transparent 60%),
              var(--bg-dark);
}

.crenca-bezel-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.crenca-title {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.crenca-copy {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.crenca-emphasis {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-top: 0.5rem;
}

/* --------------------------------------------------------------------------
   12. DOBRA 4: APRESENTAÇÃO DO MÉTODO (bg dobra 4.jpg Parallax + Diferenciais)
   -------------------------------------------------------------------------- */
.section-metodo {
  position: relative;
  background-image: url('bg dobra 4.jpg');
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.metodo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.92) 0%, rgba(10, 9, 13, 0.94) 100%);
  pointer-events: none;
  z-index: 1;
}

.metodo-container-wrapper {
  position: relative;
  z-index: 2;
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

/* Cards sólidos sem borda transparente */
.metodo-card {
  background: rgba(14, 13, 18, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(223, 186, 115, 0.24);
  border-radius: var(--radius-inner);
  padding: 2.25rem 2rem;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.metodo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold-active);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.85), 0 0 25px var(--gold-glow);
}

.metodo-grid .metodo-card:nth-child(1) { grid-column: span 3; }
.metodo-grid .metodo-card:nth-child(2) { grid-column: span 3; }
.metodo-grid .metodo-card:nth-child(3) { grid-column: span 2; }
.metodo-grid .metodo-card:nth-child(4) { grid-column: span 2; }
.metodo-grid .metodo-card:nth-child(5) { grid-column: span 2; }

.card-number-badge {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
}

.metodo-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: #FFFFFF;
  line-height: 1.35;
}

.metodo-card-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   13. DOBRA 5: PARA QUEM É (Destaque quem é + Centralização Desktop)
   -------------------------------------------------------------------------- */
.section-para-quem {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0A090D 100%);
  border-top: 1px solid var(--border-hairline);
}

.para-quem-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.para-quem-grid .bezel-card {
  flex: 0 1 calc(33.333% - 1.5rem);
  min-width: 300px;
}

.para-quem-card-inner {
  padding: 2rem 1.75rem;
}

.para-quem-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.para-quem-icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

.para-quem-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}

.para-quem-text {
  font-size: 0.94rem;
  color: var(--sand-light);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   14. DOBRA 6: COMO FUNCIONA (DESKTOP INTACTO: Pinned Left & Stacked Right)
   -------------------------------------------------------------------------- */
.section-como-funciona {
  position: relative;
  background-color: var(--bg-dark);
}

.como-funciona-wrapper {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: start;
  position: relative;
}

.como-funciona-sticky-col {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
  align-self: start;
}

.como-funciona-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-primary);
  margin-bottom: 1rem;
}

.como-funciona-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  text-align: left;
}

.como-funciona-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: left;
}

.como-funciona-gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin-top: 2rem;
}

/* Lista de Cards Desktop (Empilhamento Contínuo) */
.passos-stack-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  padding-bottom: 6rem;
}

.passo-card {
  position: -webkit-sticky;
  position: sticky;
  top: 130px;
  background: var(--bg-surface-1);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-inner);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8), 0 20px 45px rgba(0, 0, 0, 0.9);
  transition: transform 0.4s var(--ease-spring), border-color 0.3s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

.passo-card:hover {
  border-color: var(--gold-primary);
}

.passo-card:nth-child(1) { top: 130px; z-index: 1; }
.passo-card:nth-child(2) { top: 145px; z-index: 2; }
.passo-card:nth-child(3) { top: 160px; z-index: 3; }
.passo-card:nth-child(4) { top: 175px; z-index: 4; }
.passo-card:nth-child(5) { top: 190px; z-index: 5; }
.passo-card:nth-child(6) { top: 205px; z-index: 6; }

.passo-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-primary);
  margin-bottom: 0.85rem;
  opacity: 0.9;
}

.passo-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}

.passo-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   3D COVERFLOW CAROUSEL (EXCLUSIVO MOBILE - coverflow-carousel.tsx)
   -------------------------------------------------------------------------- */
.mobile-only-coverflow {
  display: none;
  --cf-card: clamp(260px, 78vw, 320px);
}

.cf-stage-wrapper {
  position: relative;
  width: 100%;
  overflow: clip;
  padding: 1.5rem 0 0.5rem 0;
}

.cf-frame {
  position: relative;
  width: 100%;
  height: 330px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
  perspective: calc(var(--cf-card) * 3);
  -webkit-perspective: calc(var(--cf-card) * 3);
  outline: none;
}

.cf-frame:active {
  cursor: grabbing;
}

.cf-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.cf-card {
  position: absolute;
  left: 50%;
  top: 0;
  width: var(--cf-card);
  min-height: 290px;
  background: linear-gradient(145deg, #131118 0%, #08070B 100%);
  border: 1px solid rgba(223, 186, 115, 0.28);
  border-radius: var(--radius-inner);
  padding: 2.25rem 1.85rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 20px rgba(223, 186, 115, 0.06);
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cf-card.cf-card-active {
  border-color: rgba(223, 186, 115, 0.7);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(223, 186, 115, 0.2);
}

.cf-card-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-primary);
  margin-bottom: 0.6rem;
}

.cf-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.65rem;
  color: #FFFFFF;
}

.cf-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   15. DOBRA 7: AUTORIDADE (foto.png + Selo Badge Dourado)
   -------------------------------------------------------------------------- */
.section-authority {
  background: radial-gradient(circle at 20% 50%, rgba(223, 186, 115, 0.06) 0%, transparent 60%),
              var(--bg-dark);
  border-top: 1px solid var(--border-hairline);
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
}

.authority-image-container {
  position: relative;
}

.authority-img-wrapper {
  border-radius: var(--radius-inner);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.75);
}

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

.authority-credentials-box {
  margin-top: 1.75rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  position: relative;
}

.selo-badge-dourado {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 32px;
  height: 32px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #08070A;
  font-size: 0.95rem;
  box-shadow: 0 0 15px var(--gold-glow);
}

.cref-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.marcos-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand-muted);
  margin-bottom: 0.5rem;
}

.marcos-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.marcos-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.marcos-item::after {
  content: '•';
  color: var(--gold-primary);
  margin-left: 0.85rem;
}

.marcos-item:last-child::after {
  content: '';
}

.authority-content {
  display: flex;
  flex-direction: column;
}

.authority-title {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: #FFF;
}

.authority-role {
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 1.75rem;
  letter-spacing: 0.05em;
}

.authority-copy {
  font-size: 1.05rem;
  color: #D8D8D8;
  line-height: 1.75;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 2rem;
}

.authority-quote-box {
  border-left: 3px solid var(--gold-primary);
  padding-left: 1.25rem;
  margin: 0.5rem 0 2rem 0;
}

.authority-quote-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   16. DOBRA 8: OS DOIS FORMATOS DE ACOMPANHAMENTO (Diferenciação Cromática)
   -------------------------------------------------------------------------- */
.section-formatos {
  position: relative;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0C0B0F 100%);
  border-top: 1px solid var(--border-hairline);
}

.formatos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
}

.formato-card-presencial .bezel-card-inner {
  background: linear-gradient(145deg, #131118 0%, #08070B 100%);
  border: 1px solid rgba(223, 186, 115, 0.15);
}

.formato-card-online .bezel-card-inner {
  background: linear-gradient(145deg, #1C1715 0%, #0E0B0A 100%);
  border: 1px solid rgba(223, 186, 115, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(223, 186, 115, 0.1);
}

.formato-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-primary);
  background: rgba(223, 186, 115, 0.08);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.formato-badge-highlight {
  background: rgba(223, 186, 115, 0.18);
  border: 1px solid rgba(223, 186, 115, 0.4);
  color: var(--gold-light);
}

.formato-title {
  font-size: 1.65rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.35rem;
}

.formato-subtitle {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.formato-desc {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.formato-checklist-title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--sand-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.formato-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.formato-check-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #EDE8E1;
}

.check-icon {
  color: var(--gold-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.btn-formato {
  width: 100%;
}

/* Alinhamento dos botões no fundo dos cards exclusivamente na versão desktop */
@media (min-width: 993px) {
  .formatos-grid {
    align-items: stretch;
  }

  .formatos-grid .bezel-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .formatos-grid .bezel-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
  }

  .formatos-grid .btn-formato {
    margin-top: auto;
  }
}

/* --------------------------------------------------------------------------
   17. DOBRA 9: CTA FINAL (Fundo gym.jpg Desfocado)
   -------------------------------------------------------------------------- */
.section-cta-final {
  position: relative;
  background-color: var(--bg-dark);
  text-align: center;
  border-top: 1px solid var(--border-hairline);
  overflow: hidden;
}

.cta-final-bg-blur {
  position: absolute;
  inset: 0;
  background-image: url('gym.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  filter: blur(10px);
  transform: scale(1.08);
  pointer-events: none;
  z-index: 0;
}

.cta-final-overlay-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(223, 186, 115, 0.1) 0%, rgba(6, 6, 7, 0.92) 80%);
  pointer-events: none;
  z-index: 1;
}

.cta-final-bezel-wrapper {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.cta-final-title {
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: #FFFFFF;
}

.cta-final-copy {
  font-size: clamp(1.02rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   18. DOBRA 10: RODAPÉ
   -------------------------------------------------------------------------- */
.footer {
  background: #030304;
  border-top: 1px solid var(--border-hairline);
  padding-top: 4.5rem;
  padding-bottom: 3.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.footer-name {
  font-family: var(--font-script);
  font-size: 2.2rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--sand-primary);
  letter-spacing: 0.05em;
}

.footer-cref-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-link-pill:hover {
  background: rgba(223, 186, 115, 0.1);
  border-color: var(--gold-primary);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--sand-muted);
}

.footer-legal-links a:hover {
  color: var(--gold-primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   19. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;
  background: var(--gold-gradient);
  color: #08070A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 10px 25px var(--gold-glow);
  z-index: 99;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  cursor: pointer;
  border: none;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 30px var(--gold-glow-strong);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(223, 186, 115, 0.4);
  animation: pulseGoldRing 2.2s infinite;
  z-index: -1;
}

@keyframes pulseGoldRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --------------------------------------------------------------------------
   20. POPUP MODAL
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: linear-gradient(145deg, #121117 0%, #08070B 100%);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-outer);
  max-width: 560px;
  width: 100%;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px var(--gold-glow);
  position: relative;
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s var(--ease-spring);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  background: rgba(223, 186, 115, 0.18);
  color: #FFF;
  border-color: var(--gold-primary);
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  background: rgba(223, 186, 115, 0.1);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-gold-subtle);
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 500;
  color: #FFFFFF;
  margin-bottom: 0.45rem;
}

.modal-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: #E0E0E0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-label i {
  color: var(--gold-primary);
}

.form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: #FFF;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px var(--gold-glow);
  background: rgba(255, 255, 255, 0.05);
}

.form-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.option-pill {
  position: relative;
}

.option-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.option-pill label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 0.75rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.option-pill input[type="radio"]:checked + label {
  background: rgba(223, 186, 115, 0.18);
  border-color: var(--gold-primary);
  color: #FFF;
  font-weight: 600;
  box-shadow: 0 0 12px var(--gold-glow);
}

.option-pill label:hover {
  border-color: rgba(223, 186, 115, 0.35);
  color: #FFF;
}

.region-selection-box {
  margin-top: 0.5rem;
  padding: 1rem;
  background: rgba(223, 186, 115, 0.05);
  border: 1px solid var(--border-gold-subtle);
  border-radius: var(--radius-sm);
  display: none;
  flex-direction: column;
  gap: 0.6rem;
}

.region-selection-box.active {
  display: flex;
}

.region-box-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-submit-btn {
  margin-top: 0.75rem;
  width: 100%;
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE & MOBILE POLISH (375x667, Parallax, Stacking & Roulette)
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .header {
    width: calc(100% - 1.5rem);
    top: 0.75rem;
    transform: translate(-50%, -130%);
    opacity: 0;
    pointer-events: none;
  }

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

  /* Dobra 4: Desativa attachment fixed no mobile para permitir sticky stack fluido */
  .section-metodo {
    background-attachment: scroll;
  }

  /* Dobra 4: Empilhamento vertical no mobile */
  .metodo-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-bottom: 3rem;
  }

  .metodo-card {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    margin-bottom: 1.5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.9), 0 15px 40px rgba(0, 0, 0, 0.9);
    background: #0E0D13;
  }

  .metodo-grid .metodo-card:nth-child(1) { top: 80px; z-index: 1; }
  .metodo-grid .metodo-card:nth-child(2) { top: 95px; z-index: 2; }
  .metodo-grid .metodo-card:nth-child(3) { top: 110px; z-index: 3; }
  .metodo-grid .metodo-card:nth-child(4) { top: 125px; z-index: 4; }
  .metodo-grid .metodo-card:nth-child(5) { top: 140px; z-index: 5; }

  /* Dobra 6: Desktop intacto acima de 992px, no mobile ativa Coverflow 3D com Scroll-Driven */
  .section-como-funciona {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 4.5rem !important;
    padding-bottom: 2.5rem !important;
    box-sizing: border-box;
  }

  .desktop-only-steps {
    display: none !important;
  }

  .mobile-only-coverflow {
    display: block !important;
  }

  .como-funciona-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .como-funciona-sticky-col {
    position: relative;
    top: 0;
    z-index: 10;
    padding: 0;
    border-bottom: none;
    text-align: center;
  }

  .como-funciona-title {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .como-funciona-subtitle {
    font-size: 0.98rem;
    text-align: center;
  }

  .como-funciona-gold-line {
    margin-left: auto;
    margin-right: auto;
  }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .formatos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Dobra 2 Pinned Mobile Optimization */
  .section-dor {
    padding-top: 3.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  .dor-title {
    font-size: 1.65rem;
    margin-bottom: 0.9rem;
  }
  .dor-intro {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }
  .dor-list {
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }
  .dor-item {
    font-size: 0.92rem;
    line-height: 1.45;
  }
  .highlight-quote-box {
    padding: 1.1rem 1.25rem;
    margin-top: 0.25rem;
  }
  .highlight-quote-text {
    font-size: 1.15rem;
  }

  .header {
    height: 60px;
    padding: 0 1rem;
  }

  .header-cta-btn span {
    display: none;
  }

  .header-cta-btn {
    padding: 0.45rem 0.8rem;
  }

  .logo-script {
    font-size: 1.35rem;
  }

  .btn-primary-gold {
    font-size: 0.84rem;
    padding: 0.65rem 0.65rem 0.65rem 1.4rem;
    width: 100%;
  }

  .bezel-card-inner {
    padding: 2rem 1.5rem;
  }

  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    font-size: 1.65rem;
  }

  .modal-container {
    padding: 2rem 1.25rem;
  }

  .form-options-grid {
    grid-template-columns: 1fr;
  }

  .para-quem-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .para-quem-grid .bezel-card {
    width: 100%;
    min-width: unset;
  }
}

/* ==========================================================================
   SOLICITAÇÃO DE AJUSTE NA HERO MOBILE:
   "Hero: Na versão mobile aumente o título subtitulo"
   "Não cobrir o rosto da profissional"
   ========================================================================== */
@media (max-width: 480px) {
  .hero-section {
    background-image: url('bg hero mobile.png');
    background-position: center top;
    background-size: cover;
    min-height: 100svh;
    padding-top: 42vh; /* Desce o bloco de texto para liberar o rosto */
    padding-bottom: 3.5rem;
    display: flex;
    align-items: flex-end;
  }

  .hero-overlay-dark {
    background: linear-gradient(
      to bottom, 
      rgba(6, 6, 7, 0.0) 0%, 
      rgba(6, 6, 7, 0.25) 38%, 
      rgba(6, 6, 7, 0.85) 55%, 
      rgba(6, 6, 7, 0.98) 95%
    );
  }

  .hero-content-box {
    max-width: 100%;
    align-items: center;
    text-align: center;
    margin-top: auto;
    padding-bottom: 0.5rem;
  }

  .pre-headline-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
  }

  /* Solicitado: Título aumentado na versão mobile */
  .hero-title {
    font-size: clamp(2rem, 6.8vw, 2.45rem);
    line-height: 1.22;
    margin-bottom: 1.15rem;
  }

  /* Solicitado: Subtítulo aumentado na versão mobile */
  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 2rem;
    color: #F0EAE1;
  }

  .btn-primary-gold {
    font-size: 0.82rem;
    padding: 0.65rem 0.75rem 0.65rem 1.4rem;
  }

  .btn-icon-circle {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .btn-microcopy {
    font-size: 0.82rem;
    margin-top: 0.75rem;
  }
}
