/* ============================================================
   MAJOR FACTORS — Custom Styles
   Fonts: DM Sans (body) · Cormorant Garamond (display)
   ============================================================ */

/* ── Variables ── */
:root {
  --c-periwinkle:  #bad0ff;
  --c-slate:       #4e526a;
  --c-mid:         #8891b8;
  --c-dark:        #6b7399;
  --c-light:       #edf0f8;
  --c-muted:       #e2e7f3;
  --c-white:       #ffffff;
  --c-dark-grad-1: #9aa3c7;
  --c-dark-grad-2: #7b83b3;
  --c-dark-grad-3: #6b7399;
  --font-sans:   'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth;
  font-size: 16px; 
}

.privacy{
  padding: 90px 0;
  background-color: #fff;
}

  body {
  font-family: var(--font-sans);
  color: var(--c-slate);
  background: var(--c-white);
  max-width: 100vw;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── Shared components ── */
.mf-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}
.mf-dash {
  display: inline-block;
  width: 32px;
  height: 4px;
  background: currentColor;
  flex-shrink: 0;
}
.mf-label-text {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mf-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-left: 1px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.mf-serif-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 50px;
  color: var(--c-slate);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ============================================================
   HEADER
   ============================================================ */
.mf-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background 0.5s var(--ease-out), backdrop-filter 0.5s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(10px);
}
.mf-header.scrolled {
  background: rgba(14, 18, 36, 0.55);
  backdrop-filter: blur(18px);
}
.mf-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  height: 72px;
  position: relative; /* <-- Adicione esta linha */
}

.mf-logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--c-white);
  
  /* <-- Adicione estas linhas abaixo --> */
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.mf-nav {
  display: flex;
  gap: 36px;
}
.mf-nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #4E526A;
  transition: opacity 0.2s;
  text-transform: uppercase;
}
.mf-nav a:hover { opacity: 0.65; }
.mf-btn-header {
  display: inline-flex;
  align-items: center;
  background: var(--c-slate);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0 0 0 20px;
  height: 40px;
  transition: background 0.25s;
  gap: 0;
}
.mf-btn-header span:first-child { padding-right: 16px; }
.mf-btn-header:hover { background: #3a3e55; color: var(--c-white); }
.mf-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mf-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.mf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-periwinkle);
}
.mf-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
}

.mf-hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(
    to bottom,
    rgba(10,14,34,0.1) 0%,
    rgba(10,14,34,0.35) 60%,
    rgba(10,14,34,0.55) 100%
  );*/
}
.mf-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 52px 150px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.mf-hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  gap: 0;
  
  align-items: center;
}
.mf-hero-title .mf-sans {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 70px;
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
  animation: fadeUp 0.9s var(--ease-out) 0.1s both;
}
.mf-hero-title .mf-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 70px;
  line-height: 1.1;
  color: var(--c-white);
  letter-spacing: -0.02em;
  animation: fadeUp 0.9s var(--ease-out) 0.25s both;
}
.mf-hero-sub {
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-white);
  max-width: 686px;
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
  margin-bottom: 36px;
}

.mf-btn-outline {
  display: inline-flex;
  align-items: center;
  background: var(--c-white);
  color: var(--c-slate);
  /*border: 1px solid var(--c-slate);*/
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase; /* Deixa o texto todo em CAIXA ALTA */
  animation: fadeUp 0.9s var(--ease-out) 0.55s both;
  transition: background 0.25s, color 0.25s;
  gap: 0;
}

.mf-btn-outline span:first-child {
  padding: 0 50px; /* Deixa o botão mais largo igual ao da foto */
  height: 44px; /* Dá uma altura um pouco mais robusta */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ajusta o ícone da seta e a cor da linha divisória */
.mf-btn-outline .mf-btn-icon {
  border-left: 1px solid var(--c-slate);
  height: 44px;
  width: 44px;
}

/* Efeito ao passar o mouse: inverte para fundo escuro e texto/linha brancos */
.mf-btn-outline:hover {
  background: var(--c-slate);
  color: var(--c-white);
}

.mf-btn-outline:hover .mf-btn-icon {
  border-left-color: rgba(255, 255, 255, 0.4);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WHY NAD+
   ============================================================ */

/* 1. O contêiner pai */
.mf-editorial-wrapper {
  position: relative;
  z-index: 1;
  background-color: #BAD0FF; /* Cor de segurança pro final */
  
  /* O gradiente começa roxo e vai pro azul claro */
  background-image: linear-gradient(180deg, #4C526C 0%, #BAD0FF 100%);
  
  /* O GRANDE SEGREDO: Forçamos o fundo a ter exatamente 2 telas de altura.
     Assim, quando você rolar a página, você vê a cor subindo fisicamente! */
  background-size: 100% 200vh;
  background-repeat: no-repeat;
}

/* 2. O texto fica 100% parado (congelado) */
.mf-why-nad {
  background: transparent; 
  padding: 0;
  color: var(--c-white);
  height: 100vh; /* Ocupa exatamente a altura da tela */
  display: flex;
  align-items: center;
  position: sticky; /* Trava o elemento na tela */
  top: 0; 
  z-index: 1; /* Mantém o texto na camada de trás */
}

.mf-why-nad .mf-label-text { 
  color: var(--c-white); 
}

.mf-why-nad .mf-label-row {
  justify-content: center;
}

.mf-why-text {
  font-family: var(--font-sans);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-white);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* ============================================================
   PRODUCT SECTION
   ============================================================ */
/* 3. A seção do produto ganha uma "pista de rolagem" maior */
/* ============================================================
   PRODUCT SECTION
   ============================================================ */
.mf-product {
  position: relative;
  /* Aumentamos o z-index para 10 para ESMAGAR o texto do AOS e não deixar ele aparecer por cima da água */
  z-index: 10; 
  
  margin-top: 100vh; 
  
  /* Fundo aplicado de forma absoluta e segura */
  background-color: #a8bcd8;
  background-image: url('../img/product-bg.png');
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  
  /* A MÁGICA DO SCROLL: Altura automática para o conteúdo empurrar o rodapé para baixo naturalmente */
  height: auto !important; 
  min-height: 100vh;
  width: 100%;
  
  /* ATENÇÃO: NADA DE overflow: hidden AQUI! Deixe o conteúdo respirar */
  
  box-shadow: 0 -30px 60px rgba(14, 18, 36, 0.35);
  
  /* Dá um respiro no final da seção para o card não ficar colado no limite */
  padding-bottom: 0px; 
}

.mf-product-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/*.mf-product-bg-img {
  
}*/

/* ============================================================
   TABS & SCROLL ANIMATION
   ============================================================ */

/* O Contêiner dos Botões */
.mf-tabs-row {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-top: 252px;
  gap: 2px;
}

/* O Botão Individual */
.mf-tab {
  position: relative;
  overflow: hidden; /* IMPORTANTE: Mantém a barra de progresso presa dentro do botão */
  background: rgba(255,255,255,0.12);
  border: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; /* 21.6px */
  letter-spacing: 0.9px;
  text-transform: uppercase;
  padding: 10px 32px;
  color: #fff;
  cursor: pointer;
  /* Removemos a transição de cor do active porque o GSAP vai cuidar disso */
}

/* O Botão quando está Ativo (O GSAP vai aplicar isso) */
.mf-tab.active {
  border-bottom: none !important; /* Sem borda, usamos a barra animada */
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(10px);
}

/* A Barra de Progresso que enche (NOVIDADE) */
.mf-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--c-white);
  width: 0%; /* Inicia em 0, o JS vai preencher até 100% */
  z-index: 10;
}

/* Os pequenos traços antes e depois dos títulos (mantidos os seus) */
.linha{
  width: 75px;
  height: 10px;
  background-color: #fff;
  margin-bottom: 5px;
}

.linha2{
  width: 75px;
  height: 10px;
  background-color: #fff;
  margin-top: 5px;
}

/* ============================================================
   TAB PANES (CONTEÚDO) - EMPILHADOS
   ============================================================ */

/* A área de texto precisa de uma altura fixa para segurar a tela */
.mf-product-top {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 400px; /* Garante espaço para o maior texto não empurrar nada */
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Todas as abas ficam escondidas e EMPILHADAS umas sobre as outras */
.mf-tab-pane {
  position: absolute; /* Empilha no mesmo lugar */
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex !important; /* Tem que ser flex pra alinhar, ignoramos display:none */
  justify-content: center;
  margin: 0 auto;
  opacity: 0; /* Começa invisível */
  visibility: hidden; /* Impede o clique em textos escondidos */
}

/* Apenas a aba com a classe 'active' aparece no carregamento (Cellular Repair) */
.mf-tab-pane.active {
  opacity: 1;
  visibility: visible;
}

.mf-display-xl {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 70px;
  color: var(--c-white);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.mf-tab-desc {
  font-size: 20px;
  color: var(--c-white);
  line-height: 1.55;
  max-width: 380px;
}

/* ============================================================
   PRODUCT CARD UNIFICADO
   ============================================================ */

.mf-product-bottom {
  position: relative;
  z-index: 2;
  padding: 0 20px; /* Evita colar nas laterais em telas menores */
  margin-bottom: 60px;
}

/* O Card inteiro (vidro translúcido) */
.mf-product-card {
  display: flex;
  background: rgba(255, 255, 255, 0.65); /* Fundo translúcido */
  backdrop-filter: blur(14px);
  max-width: 1100px;
  margin: 0 auto; /* Centraliza o card na tela */
  position: relative;
}

/* Lado Esquerdo da Imagem */
.mf-product-left {
  flex: 1; /* Ocupa 50% do espaço */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  position: relative; /* Importante para a etiqueta grudar no canto */
}

/* Etiqueta Branca no topo esquerdo da foto */
.mf-product-eyebrow {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c-white);
  padding: 12px 24px;
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--c-slate);
  line-height: 1;
}

.mf-vial-img {
  width: 100%;
  /*max-width: 340px;*/
  object-fit: contain;
}

/* Lado Direito dos Textos */
.mf-product-right {
  flex: 1; /* Ocupa os outros 50% */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

/* Tipografia e espaçamentos internos */
.mf-product-heading {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 46px;
  color: var(--c-slate);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.mf-product-desc {
  font-size: 14px;
  color: var(--c-slate);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ============================================================
   WHAT'S INCLUDED (EXPANDABLE BOX)
   ============================================================ */
.mf-inc-accordion {
  align-self: flex-start;
  margin-bottom: 32px; /* Mantém a distância perfeita para o preço */
  width: 100%;
  max-width: 480px;
}

/* Estado Padrão (Fechado - Estilo Link Sublinhado) */
.mf-inc-btn {
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-slate);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 0 2px 0;
  border-bottom: 1px solid var(--c-slate);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* O ícone da setinha */
.mf-inc-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, border 0.3s;
  width: 16px; 
  height: 16px;
}

/* ESTADO ABERTO DA CAIXA (O botão vira o topo da caixa branca) */
.mf-inc-btn:not(.collapsed) {
  width: 100%;
  justify-content: space-between;
  border-bottom: 1px solid transparent; /* Apaga a linha */
  background: var(--c-white);
  padding: 16px 20px 8px 20px;
  border-radius: 2px 2px 0 0;
}

/* A Setinha Quando Aberto (vira um quadrado e aponta pra cima) */
.mf-inc-btn:not(.collapsed) .mf-inc-arrow {
  transform: rotate(180deg);
  border: 1px solid rgba(78, 82, 106, 0.2);
}

/* O Corpo da Lista (O fundo e o contêiner) */
#incCollapse {
  background: var(--c-white);
  border-radius: 0 0 2px 2px;
  box-shadow: 0 10px 24px rgba(78, 82, 106, 0.08); /* Sombra elegante de profundidade */
}

.mf-inc-list {
  list-style: none;
  margin: 0;
  padding: 0 20px 20px 20px; /* Acompanha o padding das bordas do botão branco */
}

/* Estilo de cada item (Bullet Point customizado) */
.mf-inc-list li {
  position: relative;
  font-size: 13px;
  color: var(--c-slate);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 12px;
  opacity: 0.85; /* Dá um tom de cinza levemente mais suave pra leitura */
}

.mf-inc-list li:last-child { 
  margin-bottom: 0; 
}

.mf-inc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--c-slate);
  font-weight: bold;
}

.mf-price-row {
  margin: 40px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mf-price-from {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--c-slate);
}

.mf-price-main { display: flex; align-items: baseline; gap: 4px; }
.mf-price-num {
  font-family: var(--font-serif);
  font-size: 110px;
  font-weight: 400;
  color: var(--c-slate);
  line-height: 0.9;
}
.mf-price-period {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--c-slate);
}

.mf-btn-dark {
  background: var(--c-slate);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 16px 16px 16px 24px;
  transition: background 0.25s;
  gap: 0;
  width: 100%;
  letter-spacing: 0.1em;
}

.mf-btn-dark span:first-child { flex: 1; }
.mf-btn-dark .mf-btn-icon { border-left-color: rgba(255,255,255,0.25); height: 100%; }
.mf-btn-dark:hover { background: #3a3e55; color: var(--c-white); }

/* Ajuste Responsivo para o Cartão empilhar no celular */
@media (max-width: 991px) {
  .mf-product-card {
    flex-direction: column;
  }
  .mf-product-left {
    padding: 0px; /* Mais espaço no topo por causa da etiqueta */
  }
  .mf-product-right {
    padding: 20px;
  }
}

/* Ticker */
.mf-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--c-white);
  padding: 14px 0;
  border-top: 1px solid rgba(78,82,106,0.12);
  opacity: 0.9;
}
.mf-ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.mf-ticker-track span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--c-slate);
  flex-shrink: 0;
}
.mf-dot { color: var(--c-periwinkle) !important; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SCIENCE (DARK)
   ============================================================ */
.mf-science-dark {
  background: var(--Concept-1-gradient, linear-gradient(180deg, #BAD0FF 0%, #4C526C 100%));
  padding: 120px 0;
  color: var(--c-white);
}

.mf-science-dark .mf-label-text {
  color: var(--c-white);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.mf-section-heading {
  font-family: var(--font-serif);
  font-style: normal; /* Removido o itálico para igualar a foto */
  font-size: 54px;
  font-weight: 500;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 680px;
  margin-bottom: 60px;
}

/* Ajuste do grid de estatísticas */
.mf-stats-row {
  margin-bottom: 40px; 
}

/* Nova caixa translúcida (Efeito Vidro) */
.mf-stat-box {
  background: var(--white-10, rgba(255, 255, 255, 0.10));
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
}

.mf-stat-num {
  font-family: var(--font-sans);
  font-size: 80px; 
  font-weight: 300; 
  color: var(--c-white);
  line-height: 1;
  margin-bottom: 0; 
  flex-shrink: 0; 
  
  /* <-- ADICIONE ESTAS DUAS LINHAS --> */
  display: inline-block; 
  position: relative;
}

.mf-stat-label {
  font-size: 16px;
  color: var(--c-white);
  line-height: 1.4;
  margin-bottom: 0;
  text-align: left;
}

.mf-stat-small {
  font-size: 12px;
  opacity: 0.7;
  display: block;
  margin-top: 6px;
}

/* Textos do Corpo */
.mf-science-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85); /* Leve transparência */
  line-height: 1.6;
  margin-bottom: 0;
  padding-right: 20px; /* Dá um respiro para não grudar na coluna da direita */
}

/* Rodapé da seção (Link e Disclaimer) */
.mf-science-footer {
  margin-top: 100px; /* Distância do texto de cima */
}

.mf-link-white {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-white);
  text-transform: uppercase; /* Força caixa alta */
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255,255,255,1); /* Linha sólida */
  padding-bottom: 4px;
  display: inline-block;
  transition: opacity 0.2s;
}

.mf-link-white:hover {
  color: var(--c-white);
  opacity: 0.65;
}

.mf-disclaimer {
  font-size: 12px !important;
  opacity: 0.55;
  max-width: 650px;
  line-height: 1.6;
}

/* ============================================================
   WHY INJECTIONS (FINAL COM ANIMAÇÃO E LINHA FLEXÍVEL)
   ============================================================ */
.mf-why-injections {
  background: linear-gradient(180deg, #BAD0FE 0%, #D1E0FE 100%);
  padding: 120px 0;
}

.mf-why-injections .mf-section-heading { 
  color: var(--c-slate);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 72px; 
}

.mf-inj-grid {
  display: grid;
  grid-template-columns: 1fr 380px 1fr; /* Círculo de 380px */
  grid-template-rows: 1fr 1fr;
  gap: 40px 0; /* Gap zero na horizontal para a linha grudar */
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* O Círculo Central */
.mf-inj-center {
  grid-row: 1 / 3;
  grid-column: 2;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.mf-inj-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8891b8 0%, #4e526a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 30px 60px rgba(78, 82, 106, 0.15);
}

/* ============================================================
   CÍRCULO E CAMADAS DE CORES
   ============================================================ */
.mf-inj-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  /* Fundo base transparente para receber as cores por cima */
  background: transparent; 
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden; 
}

/* Base das camadas de cor (todas por trás da garrafa) */
.mf-bg-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0; /* Todas começam 100% invisíveis ("tudo fora") */
}

/* AS 4 ETAPAS EXATAS */
.mf-bg-1 { background: linear-gradient(180deg, #4C526C 4.28%, #BAD0FF 233.44%); }
.mf-bg-2 { background: linear-gradient(180deg, #4C526C 0%, #BAD0FF 90.9%); }
.mf-bg-3 { background: linear-gradient(180deg, #4C526C -17.78%, #AAC0EE 16.57%, #BAD0FF 38.62%, #AAC0EE 53.04%, #4E526A 109.43%); }
.mf-bg-4 { background: var(--Concept-1-gradient, linear-gradient(180deg, #BAD0FF 0%, #4C526C 100%)); }

.mf-inj-circle-inner img { 
  height: 75%; 
  width: auto;
  object-fit: contain; 
  position: relative;
  z-index: 1; /* Garrafa na frente das cores! */
}

/* Esconde as linhas no mobile */
@media (max-width: 991px) {
  .mf-inj-line { display: none; }
  .mf-inj-line2 { display: none; }
}

/* ========== TEXTOS E LINHAS ESTÁTICAS ========== */
.mf-inj-benefit {
  display: flex;
  align-items: center;
  position: relative;
}

.mf-inj-tl { grid-row: 1; grid-column: 1; justify-content: flex-end; }
.mf-inj-bl { grid-row: 2; grid-column: 1; justify-content: flex-end; }
.mf-inj-tr { grid-row: 1; grid-column: 3; justify-content: flex-start; }
.mf-inj-br { grid-row: 2; grid-column: 3; justify-content: flex-start; }

.mf-inj-benefit p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--c-slate);
  line-height: 1.5;
  max-width: 320px;
  margin-bottom: 0;
  text-align: left;
  flex-shrink: 0; 
}

.mf-inj-benefit strong { font-weight: 600; }

.mf-inj-line {
  height: 1px;
  background-color: rgba(78, 82, 106, 0.4);
  flex-grow: 1; 
  width: 100%;
  position: absolute;
  top: 60px;
  left: -70px;
}

.mf-inj-line2 {
  height: 1px;
  background-color: rgba(78, 82, 106, 0.4);
  flex-grow: 1; 
  width: 100%;
  position: absolute;
  top: 60px;
  right: -70px;
}

.mf-inj-tl .mf-inj-line, .mf-inj-bl .mf-inj-line { margin-left: 20px; }
.mf-inj-tr .mf-inj-line, .mf-inj-br .mf-inj-line { margin-right: 20px; }


.mf-inj-tl .mf-inj-line2, .mf-inj-bl .mf-inj-line2 { margin-left: 20px; }
.mf-inj-tr .mf-inj-line2, .mf-inj-br .mf-inj-line2 { margin-right: 20px; }

/* ============================================================
   RESPONSIVO (CELULAR E TABLET)
   ============================================================ 
@media (max-width: 991px) {
  .mf-inj-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    text-align: center;
  }
  .mf-inj-center { grid-row: 1; grid-column: 1; }
  
  .mf-inj-tl, .mf-inj-tr, .mf-inj-bl, .mf-inj-br { 
    grid-column: 1; 
    justify-content: center; 
  }
  
  .mf-inj-benefit p { 
    max-width: 320px; 
    text-align: center; 
  }
  
  
  .mf-inj-line { display: none; }
}*/

/* ============================================================
   GETTING STARTED
   ============================================================ */
.mf-getting-started {
  background: var(--Gradient-Light, linear-gradient(180deg, #BAD0FE 0%, #FFF 100%));
  padding: 120px 0;
  padding-bottom: 0;
  min-height: 100vh;
}
.mf-getting-started .mf-label-row { color: var(--c-slate); justify-content: center; }
.mf-getting-started .mf-serif-heading { margin-bottom: 20px; }
.mf-section-sub {
  font-size: 14px;
  color: var(--c-slate);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto 40px;
}
.mf-steps-wrapper { margin-top: 0px; }

/* ============================================================
   GETTING STARTED (SOLUÇÃO FINAL: SCROLL + SANFONA)
   ============================================================ */


/* O container que gruda na tela ao rolar */
/* O container da foto (AGORA PREPARADO PARA O GSAP TRAVAR A TELA INTEIRA) */
.mf-steps-sticky {
  position: relative; /* Mudou de sticky para relative! */
  top: 0; 
  width: 100%;
  height: 600px; 
  overflow: hidden;
  border-radius: 12px; /* Deixa as quinas da foto redondinhas no mobile e desktop */
  will-change: transform; 
}

/* As imagens empilhadas uma por cima da outra */
.mf-step-img {
  position: absolute;
  inset: 0;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0; /* Todas invisíveis */
  transition: opacity 0.6s ease-in-out; /* Fade suave */
  z-index: 1;
}

/* Imagem ativada pelo JS */
.mf-step-img.active {
  opacity: 1;
  z-index: 2;
}

/* ========== TEXTOS (ESTILO SANFONA) ========== */
.mf-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(78,82,106,0.12);
  cursor: pointer;
  transition: opacity 0.3s;
}

/* Efeito de apagar os inativos */
.mf-step:not(.active) { opacity: 0.5; }
.mf-step:hover { opacity: 1; }

.mf-step-body h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--c-slate);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  transition: color 0.3s;
}

/* A SANFONA: Começa totalmente fechada */
.mf-step-desc {
  overflow: hidden; /* Corta o texto que sair */
  max-height: 0;    /* Altura zero (fechado) */
  transition: max-height 0.4s var(--ease-out), opacity 0.3s; /* Animação de abrir */
  opacity: 0;       /* Invisível também */
}

/* Quando o texto é ativado, a sanfona ABRE */
.mf-step.active .mf-step-desc { 
  max-height: 150px; /* Altura suficiente para mostrar o parágrafo inteiro */
  opacity: 1;        /* Revela o texto */
  padding-top: 5px;  /* Respiro do título */
}

.mf-step-desc p { 
  font-size: 14px; 
  color: var(--c-slate); 
  line-height: 1.75; 
  margin-bottom: 0;
}

/* ============================================================
   CTA BANNER (CORRIGIDO E IDÊNTICO À FOTO)
   ============================================================ */
.mf-cta-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: url('../img/cta-banner.png') center/cover no-repeat;
}

.mf-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 100vh; 
  width: 100%;
  padding: 160px 20px 100px; /* A mágica está no 160px de topo! */
}

/* O Título puro, sem itálico, com leve sombra pra ler bem no céu */
.mf-cta-title {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 46px; 
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.15;
  margin: 0 auto;
  text-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

/* A CORREÇÃO DO BOTÃO: Impede de esticar na tela toda */
.mf-cta-content .mf-btn-outline {
  align-self: center; /* Trava no centro! */
  margin: 0 auto;
  width: max-content; /* Ocupa só o tamanho do texto */
  background: var(--c-white); /* Fundo branco */
  color: var(--c-slate); /* Letra escura */
}

/* Linha divisória da setinha no botão */
.mf-cta-content .mf-btn-outline .mf-btn-icon {
  border-left: 1px solid rgba(78, 82, 106, 0.2); 
}

/* ============================================================
   A MÁGICA DAS LINHAS TRACEJADAS CIRCULARES (AJUSTADA)
   ============================================================ */
.mf-cta-dashes {
  position: absolute;
  top: 55%; /* Desloca o círculo um pouquinho pra baixo pra focar na modelo */
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1000px; 
  height: 600px;    
  pointer-events: none;
  z-index: 1;
}

.mf-dash-line {
  position: absolute;
  width: 75px; 
  height: 4px;
  /* Degradê com 70% do meio sólido e só 15% nas pontas esmaecendo */
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 15%, rgba(255,255,255,1) 85%, rgba(255,255,255,1) 100%);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.6);
  transform: translateY(-50%); 
  transform-origin: center; /* Garante que o GSAP expanda do meio para as pontas */
}

/* LADO ESQUERDO: Agora começa em 15% e termina em 85%, livrando o texto! */
.l1 { top: 15%;  left: 10%; }
.l2 { top: 32%;  left: 2%; }
.l3 { top: 50%;  left: 0%; }
.l4 { top: 68%;  left: 2%; }
.l5 { top: 85%;  left: 10%; }

/* LADO DIREITO: Agora começa em 15% e termina em 85%, livrando o texto! */
.r1 { top: 15%;  right: 10%; }
.r2 { top: 32%;  right: 2%; }
.r3 { top: 50%;  right: 0%; }
.r4 { top: 68%;  right: 2%; }
.r5 { top: 85%;  right: 10%; }


/* RESPONSIVO CELULAR */
@media (max-width: 768px) {

  .mf-step-body h4 {
    font-size: 16px;
  }

  .mf-cta-banner {
    background: url('../img/cta-banner-mob.png') center/cover no-repeat;
  }

  .mf-step {
    padding: 10px 0;
  }

  /* Steps (COM A FOTO NO CELULAR) */
  .mf-steps-photo-col { 
    display: block; /* Mágica: A foto volta a aparecer no mobile! */
    width: 100%; 
    padding: 0 0px;
    margin-bottom: 0px;
  }
  .mf-steps-sticky {
    height: 300px; /* Altura reduzida para caber na tela do celular junto com o texto */
  }
  .mf-steps-list-col { padding: 0 24px 40px; }

  /* ============================================================
     INJECTIONS (SOLUÇÃO ANTI-QUEBRA E ANTI-SOBREPOSIÇÃO)
     ============================================================ */
  .mf-inj-grid {
    display: flex !important; /* Desativa o Grid problemático no mobile */
    flex-direction: column;
    align-items: center;
    grid-template-columns: 1fr 320px 1fr; /* Círculo de 380px */
    gap: 20px;
    max-width: 100%;
  }
  
  .mf-inj-center { 
    order: -1; /* Mágica: Puxa a imagem do frasco pro topo da pilha! */
    margin-bottom: 24px; 
  }
  
  .mf-inj-tl, .mf-inj-tr, .mf-inj-bl, .mf-inj-br { 
    width: 100%;
    justify-content: center; 
    text-align: center;
  }
  
  .mf-inj-benefit p { 
    margin: 0 auto; 
    text-align: center; 
    max-width: 100%; 
  }
  
  .mf-inj-line { 
    display: none; /* Mantém as linhas escondidas no mobile */
  }

  .mf-inj-line2 { 
    display: none; /* Mantém as linhas escondidas no mobile */
  }

  .mf-stat-box{
    display: block;
  }

  .mf-cta-content { padding: 60px 20px; }
  .mf-cta-title { font-size: 32px; }
  
  .mf-cta-dashes { 
    height: 450px; 
    max-width: 90%; 
  }
  .mf-dash-line { width: 30px; } 
}

/* ============================================================
   FAQ (NOVO DESIGN CENTRALIZADO COM CATEGORIAS)
   ============================================================ */
.mf-faq {
  /* O Fundo com degradê azul clarinho que vai sumindo pro branco */
  background: linear-gradient(180deg, #FEFEFF 0%, #FEFEFF 100%);
  padding: 40px 0;
}

.mf-faq2 {
  /* O Fundo com degradê azul clarinho que vai sumindo pro branco */
  background: linear-gradient(180deg, #BAD0FF 0%, #FEFEFF 100%);
  padding: 120px 0 0 0;
}

.mf-faq-title-centered {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 54px;
  font-weight: 550;
  color: var(--c-slate);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.mf-faq-subtitle {
  font-size: 16px;
  color: var(--c-slate);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.85;
}

.mf-faq-right { 
  padding: 0; 
}

/* O título das Categorias (ex: ABOUT NAD+ THERAPY) */
.mf-faq-category {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-slate);
  margin-top: 48px;
  margin-bottom: 16px;
  text-align: left;
  opacity: 0.6;
}

.mf-faq-category:first-of-type {
  margin-top: 0;
}

.mf-faq-footer {
  margin-top: 60px;
}
.mf-faq-footer-text {
  font-size: 12px;
  color: var(--c-slate);
  opacity: 0.6;
}

.mf-link-underline {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-slate);
  letter-spacing: 0.1em;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 3px;
  text-transform: uppercase;
}
.mf-link-underline:hover { color: var(--c-dark); }

/* A SANFONA (Agora com blocos separados!) */
.mf-accordion { 
  display: flex; 
  flex-direction: column; 
  gap: 8px; /* O ESPAÇAMENTO MÁGICO ENTRE OS BLOCOS */
}

/* O contêiner de cada resposta */
.mf-acc-item {
  border: none !important; /* Arranca todas as bordas do Bootstrap */
  border-radius: 0 !important;
  background: transparent !important;
}

/* O botão de pergunta (Fechado e Aberto) */
.mf-acc-btn {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #EDF0F8 !important; /* Cor cinza-azulado clarinho (inativo) */
  border: none !important;
  padding: 18px 24px !important;
  font-family: var(--font-sans) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  color: var(--c-slate) !important;
  cursor: pointer;
  box-shadow: none !important;
  border-radius: 0 !important;
  transition: background 0.3s, color 0.3s !important;
  gap: 16px;
}
.mf-acc-btn::after { display: none !important; }

/* Botão Aberto (Ativo) */
.mf-acc-btn:not(.collapsed) {
  background: var(--c-slate) !important;
  color: var(--c-white) !important;
}

/* O QUADRADINHO BRANCO DA SETA */
.mf-acc-icon { 
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background-color: var(--c-white);
  color: var(--c-slate) !important; /* A seta é sempre escura */
  font-size: 14px;
  flex-shrink: 0;
}

/* O texto da resposta */
.mf-acc-body {
  background: var(--c-slate) !important;
  color: rgba(255, 255, 255, 0.8) !important; /* Branco levemente transparente */
  font-size: 14px !important;
  line-height: 1.6 !important;
  /* Topo com padding 0 pra emendar perfeitamente no botão ativo */
  padding: 0 24px 24px 24px !important; 
  font-family: var(--font-sans) !important;
  border-radius: 0 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.mf-footer {
  background: var(--Concept-1-gradient, linear-gradient(180deg, #BAD0FF 0%, #4C526C 100%));
  overflow: hidden;
  position: relative;
}
.mf-footer-top {
  position: relative;
  padding: 80px 80px 0;
  text-align: center;
  /* overflow: hidden mantém as bolas contidas sem vazar pra cima do site */
  overflow: hidden; 
}

/* === ESTILOS DAS 3 BOLAS CONCÊNTRICAS === */
.mf-footer-circle {
  position: absolute;
  left: 50%;
  top: 150px; /* Alinhado exatamente com o centro do texto */
  transform: translate(-50%, -50%); /* Centraliza perfeitamente nos eixos X e Y */
  border-radius: 50%;
  z-index: 1; /* Garante que fique atrás do texto (que tem z-index: 2) */
  pointer-events: none; /* Não atrapalha o clique em nada */
}

/* Bola Menor (Interna) */
.mf-circle-1 {
  width: 30%; /* Tamanho reduzido (antes era 480px) */
  min-width: 280px; /* Garante que não suma no celular */
  aspect-ratio: 1 / 1; /* Mantém o círculo perfeito automaticamente */
  background: linear-gradient(180deg, #B1CAFF 0%, rgba(129, 143, 179, 0.00) 79.02%);
}

/* Bola Média */
.mf-circle-2 {
  width: 50%; /* Tamanho reduzido (antes era 800px) */
  min-width: 450px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #BAD0FF 0%, rgba(139, 154, 192, 0.00) 98.05%);
}

/* Bola Maior (Externa) */
.mf-circle-3 {
  width: 70%; /* Tamanho reduzido (antes era 1120px) */
  min-width: 650px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #BAD0FF 0%, rgba(139, 154, 192, 0.00) 98.05%);
}

/* Os seus outros estilos continuam iguais a partir daqui: */
.mf-footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 50px;
  font-weight: 400;
  color: var(--c-slate);
  line-height: 1.1;
  position: relative;
  z-index: 2; /* Fica acima das bolas */
  margin-bottom: 0;
}


.mf-footer-wordmark {
  font-family: var(--font-sans);
  font-size: clamp(80px, 16vw, 210px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.88;
  color: rgba(186,208,255,0.28);
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  margin-top: 10%;
}
.mf-footer-nav { padding-top: 60px; padding-bottom: 60px; position: relative; z-index: 2; }
.mf-footer-col-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  opacity: 0.7;
}
.mf-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.mf-footer-links a {
  font-size: 16px;
  color: var(--c-white);
  line-height: 1.3;
  transition: opacity 0.2s;
}
.mf-footer-links a:hover { opacity: 0.65; }
.mf-btn-footer-cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.45);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0 0 0 20px;
  height: 40px;
  transition: background 0.25s;
  gap: 0;
}
.mf-btn-footer-cta span:first-child { padding-right: 16px; }
.mf-btn-footer-cta .mf-btn-icon { border-left-color: rgba(255,255,255,0.3); }
.mf-btn-footer-cta:hover { background: rgba(255,255,255,0.1); color: var(--c-white); }
.mf-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mf-footer-contact a {
  font-size: 12px;
  color: var(--c-muted);
  transition: opacity 0.2s;
}
.mf-footer-contact a:hover { opacity: 0.7; }
.mf-footer-contact p { font-size: 12px; color: var(--c-muted); }
.mf-footer-legal {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255,255,255,0.13);
  position: relative;
  z-index: 2;
}
.mf-footer-legal p {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
.mf-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid rgba(255,255,255,0.13);
  position: relative;
  z-index: 2;
}
.mf-footer-bottom span {
  font-size: 12px;
  color: var(--c-muted);
}
.mf-badge { height: 52px; width: auto; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .mf-product-left { padding-left: 0px; }
  .mf-product-right { padding-right: 20px; }
  .mf-steps-list-col { padding: 40px; }
  .mf-footer-wordmark { font-size: clamp(60px, 12vw, 160px); }
}

/* ============================================================
   RESPONSIVO CELULAR (COM MENU FULL-SCREEN GLASSMORPHISM)
   ============================================================ */
@media (max-width: 768px) {

  /* FAQ MOBILE */
  .mf-faq { padding: 0 0px 40px 0px; }
   .mf-faq2 { padding: 80px 0 0 0px; }
  .mf-faq-title-centered { font-size: 36px; line-height: 1.15; }
  .mf-faq-subtitle { font-size: 14px; padding: 0 10px; }
  .mf-faq-right { padding: 0 20px; }

  .mf-tab-pane {
    margin-top: 90px;
    padding: 20px;
  }

  .mf-tabs-row{
    padding-top: 120px;
  }

  .mf-header-inner{
    height: 52px;
  }

  .mf-btn-outline span:first-child {
    padding: 0 20px; /* Deixa o botão mais largo igual ao da foto */
  }

  .mf-hero {
    padding-top: 280px;
  }
  
  /* 1. HEADER & LOGO */
  .mf-header { 
    padding: 0 20px; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Linha bem sutil */
    position: absolute;
  }
  .mf-logo { 
    position: static; /* Tira o logo do centro e joga pra esquerda, igual na foto! */
    transform: none; 
  }

  .mf-logo svg{ 
    width: auto;
    height: 20px;
  }

  .mf-btn-header { display: none; } /* Esconde o botão no topo */

  /* TRUQUE DE MESTRE: Tira o fundo do header quando o menu abrir para não duplicar o blur */
  .mf-header:has(.mf-hamburger.open) {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: transparent !important;
  }

  /* 2. O MENU FULL-SCREEN (EFEITO VIDRO FOSCO) */
  .mf-nav { 
    display: none; 
    flex-direction: column; 
    gap: 36px; 
  }
  .mf-nav.open { 
    display: flex; 
    position: fixed; 
    top: 0; left: 0; right: 0; bottom: 0; 
    height: 400px;
    width: 100vw;
    /* Fundo azul-escuro translúcido puxando a cor da sua marca */
    background: rgba(55, 62, 88, 0.65); 
    backdrop-filter: blur(24px); /* Desfoque intenso atrás */
    -webkit-backdrop-filter: blur(24px);
    padding: 140px 32px 32px; /* Empurra os textos pra baixo do Header */
    z-index: -1; /* Fica logo atrás da barra do Header */
    align-items: flex-start;
  }

  /* Textos do Menu */
  .mf-nav a { 
    font-size: 15px; 
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase; /* Força tudo pra maiúsculo! */
    color: var(--c-white);
  }

  /* 3. O ÍCONE HAMBURGER (2 LINHAS QUE VIRAM UM "X") */
  .mf-hamburger { 
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 7px; 
    width: 32px; 
    height: 32px;
    z-index: 1001; /* Fica acima de tudo pra poder fechar */
  }
  .mf-hamburger span { 
    width: 24px; 
    height: 1.5px; /* Linha finíssima e elegante */
    background: #4e526a; 
    transform-origin: center;
  }
  
  /* Esconde a linha do meio pra ficarem apenas 2 linhas */
  .mf-hamburger span:nth-child(2) { 
    display: none; 
  }
  
  /* A Animação Mágica do "X" */
  .mf-hamburger.open span:nth-child(1) { 
    transform: translateY(4.2px) rotate(45deg); 
  }
  .mf-hamburger.open span:nth-child(3) { 
    transform: translateY(-4.2px) rotate(-45deg); 
  }

  .mf-hero-bg {
    /* Troca a URL da imagem desktop pela versão mobile */
    background-image: url('../img/hero-bg-mob.png');
    background-position: top;
    /* Garante que o fundo não tente subir com parallax no mobile, 
       mantendo a performance lisa no celular */
    transform: none !important; 
    
    /* Ajuste fino opcional: se a modelo ficar muito pra direita, 
       mude para 'center bottom' ou '40% bottom' para alinhar */
    background-position: center bottom; 
  }

  /* ... A PARTIR DAQUI SEGUE NORMAL O SEU CSS MOBILE (Hero, Why NAD+, etc) ... */
  .mf-hero-content { padding: 0 20px 60px; width: 100%; }

  .mf-hero-title .mf-sans, .mf-hero-title .mf-serif { font-size: 44px; }
  .mf-hero-sub { font-size: 16px; }

  /* Why NAD+ */
  .mf-why-text { font-size: 28px; }

  /* Product */
  .mf-display-xl { 
    font-size: 72px; 
    letter-spacing: -1.44px;
  }

  .mf-product-heading { font-size: 36px; }
  .mf-price-num { font-size: 72px; }
  .mf-product-left { padding: 0px; }
  .mf-product-right { padding: 20px; }
  .mf-product-card { 
    padding: 0 0 28px 0;
    margin-top: 140px;
  }

  /* Science */
  .mf-section-heading, .mf-serif-heading, .mf-faq-title { font-size: 36px; }
  .mf-stat-num { font-size: 72px; }
  .mf-stat-col { padding: 0 16px; }

  /* Injections */
  .mf-inj-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    max-width: 480px;
    gap: 32px;
  }
  .mf-inj-center { grid-row: 1; grid-column: 1; }
  .mf-inj-tl, .mf-inj-tr, .mf-inj-bl, .mf-inj-br { grid-column: 1; text-align: center; }
  .mf-inj-tl p, .mf-inj-bl p { margin-left: 0; }
  
  .mf-inj-benefit p { 
    max-width: 100%; 
    font-size: 18px;
  }

  /* Steps 
  .mf-steps-photo-col { display: none; }*/
  .mf-steps-list-col { padding: 0 24px 40px 24px; }

  /* CTA banner */
 /* ============================================================
     CTA BANNER (IDÊNTICO AO PRINT DO MOBILE)
     ============================================================ */
  .mf-cta-content { 
    justify-content: flex-end; /* Joga o texto e o botão juntos lá pro fundo */
    padding: 0 20px 100px 20px; /* Dá o respiro do fundo da tela */
    gap: 32px; /* Espaço exato entre o título e o botão */
  }
  
  .mf-cta-title { 
    font-size: 32px; 
    margin: 0 auto !important; /* Anula o espaçamento gigante do desktop */
    line-height: 1.2;
  }
  
  /* Aumentamos o círculo invisível e subimos pra emoldurar a cabeça dela */
  .mf-cta-dashes { 
    height: 100vh; 
    max-width: 100%; 
    top: 0%; 
    transform: translate(-50%, 0%);
  }
  
  /* Transformamos os traços de deitados para EM PÉ (Verticais) */
  .mf-dash-line { 
    width: 3px !important;    /* Ficam fininhos */
    height: 40px !important;  /* Ficam compridos pra cima */
    background: var(--c-white) !important; /* Branco puro pra dar destaque */
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4) !important;
  }

  /* Reposicionando cada tracinho na mão para desenhar a coroa no mobile */
  .l1 { top: 10%; left: 35%; }
  .l2 { top: 22%; left: 15%; }
  .l3 { top: 40%; left: 5%; }
  .l4 { top: 60%; left: 5%; }
  .l5 { top: 90%; left: 15%; }

  .r1 { top: 10%; right: 35%; }
  .r2 { top: 22%; right: 15%; }
  .r3 { top: 40%; right: 5%; }
  .r4 { top: 60%; right: 5%; }
  .r5 { top: 90%; right: 15%; }

  

 

  /* Footer */
  .mf-footer-top { padding: 60px 24px 0; }
  .mf-footer-tagline { font-size: 36px; }
  .mf-footer-wordmark { 
    font-size: 60px;
    color: rgba(255,255,255,0.6);
  }

  .mf-circle-3 {
    width: 100%;
    min-width: 15px;
  }  

  .mf-circle-2 {
    width: 70%;
    min-width: 15px;
  }  

  .mf-circle-1 {
    width: 50%;
    min-width: 100px;
  }  

  .mf-footer-circle {
    position: absolute;
    left: 50%;
    top: 50px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.mf-inj-circle{
  width: 320px;
  height: 320px;
}

  .mf-footer-nav, .mf-footer-legal, .mf-footer-bottom { padding-left: 24px; padding-right: 24px; }
  .mf-footer-links a { font-size: 16px; }
  .mf-footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============================================================
   HEADER LIGHT THEME (Usado em páginas secundárias como Privacy)
   ============================================================ */
.mf-header-light {
  background: var(--c-white) !important;
  border-bottom: 1px solid rgba(78, 82, 106, 0.1) !important;
  backdrop-filter: none !important;
}

.mf-header-light .mf-nav a {
  color: var(--c-slate) !important;
}

.mf-header-light .mf-hamburger span {
  background: var(--c-slate) !important;
}

/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */
.mf-privacy-page {
  padding: 180px 20px 100px;
  background: var(--c-white);
  min-height: 100vh;
}

.mf-privacy-content {
  max-width: 760px;
  margin: 0 auto;
}

.mf-privacy-title {
  font-family: var(--font-sans);
  font-size: 56px;
  font-weight: 400;
  color: var(--c-slate);
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.mf-privacy-date {
  font-size: 14px;
  color: var(--c-slate);
  opacity: 0.5;
  margin-bottom: 56px;
}

.mf-privacy-content h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-slate);
  margin: 48px 0 16px;
  letter-spacing: 0.05em;
}

.mf-privacy-content h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-slate);
  opacity: 0.7;
  margin: 32px 0 12px;
  letter-spacing: 0.08em;
}

.mf-privacy-content p {
  font-size: 15px;
  color: var(--c-slate);
  line-height: 1.65;
  margin-bottom: 16px;
  opacity: 0.85;
}

.mf-privacy-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.mf-privacy-content li {
  font-size: 15px;
  color: var(--c-slate);
  line-height: 1.65;
  margin-bottom: 8px;
  opacity: 0.85;
}

/* Responsivo para celular na Página de Privacidade */
@media (max-width: 768px) {
  .mf-privacy-page { 
    padding: 140px 20px 80px; 
  }
  .mf-privacy-title { 
    font-size: 40px; 
  }
}