/* ============================================================
   Move Flow, pagina de convite
   Depende dos tokens de css/style.css (carregado antes).
   Identidade v2: Source Serif 4 + Source Sans 3, sem faixa de topo,
   wordmark so no fechamento.
   ============================================================ */

/* ---------- ritmo de secao ---------- */
.mf-section { padding: 96px 0; }
.mf-section.is-cream { background: var(--cream); }
.mf-section.is-white { background: var(--white); }
.mf-section.is-navy  { background: var(--navy); color: var(--cream); }

.mf-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 20px;
  max-width: 22ch;
}
.mf-section.is-navy h2 { color: var(--cream); }

.mf-section p { font-size: 18px; line-height: 1.65; color: var(--slate); }
.mf-section.is-navy p { color: #D9E2EA; }
.mf-prose { max-width: 68ch; }
.mf-prose p + p { margin-top: 20px; }
/* quando .mf-prose divide o elemento com .container, o container perderia
   a largura total e o bloco ficaria centralizado, desalinhado das outras
   secoes. Aqui o container mantem a largura e quem estreita e o filho. */
.container.mf-prose { max-width: var(--max-width); }
.container.mf-prose > * { max-width: 68ch; }

.mf-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  margin: 0 0 14px;
}
.mf-section.is-navy .mf-eyebrow { color: var(--terracotta); }

/* ---------- hero com foto, no padrao da home ---------- */
.mf-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 86vh;
  padding: 128px 0 96px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
}
.mf-hero-media { position: absolute; inset: 0; }
.mf-hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.mf-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(12,35,56,.95) 0%, rgba(12,35,56,.82) 34%, rgba(12,35,56,.38) 58%, rgba(12,35,56,.04) 80%),
    linear-gradient(0deg, rgba(12,35,56,.55) 0%, rgba(12,35,56,.08) 42%, rgba(12,35,56,.28) 100%);
}
/* como .mf-hero e flex, o .container virava item flex e encolhia pro tamanho
   do conteudo, jogando o texto pro meio da foto. width:100% devolve ele
   pra grade normal da pagina, alinhado a esquerda com as outras secoes. */
.mf-hero-inner { position: relative; z-index: 1; width: 100%; }
.mf-hero .mf-eyebrow { color: var(--terracotta); }
.mf-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.4vw, 54px);
  line-height: 1.14;
  color: var(--white);
  margin: 0 0 26px;
  max-width: 19ch;
  text-shadow: 0 1px 24px rgba(12,35,56,.35);
}
.mf-hero .mf-lead {
  font-size: 20px; line-height: 1.6;
  color: rgba(242,234,226,.94);
  max-width: 52ch;
}
.mf-hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; margin-top: 34px; }
.mf-jump {
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(242,234,226,.45);
  padding-bottom: 2px;
}
.mf-jump:hover { border-bottom-color: var(--cream); }
/* no celular a foto fica atras do texto, entao o veu vertical assume */
@media (max-width: 820px) {
  .mf-hero { min-height: 0; padding: 104px 0 76px; }
  .mf-hero-media img { object-position: 68% center; }
  .mf-hero-overlay {
    background: linear-gradient(0deg, rgba(12,35,56,.90) 0%, rgba(12,35,56,.78) 48%, rgba(12,35,56,.52) 100%);
  }
}

/* ---------- secao do problema, editorial em duas colunas ----------
   Titulo ancora a esquerda, corpo numa coluna de ~72 caracteres.
   Alinhado a esquerda: centralizado quebrava em linha demais. */
.mf-problema-grid { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .mf-problema-grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 64px;
    align-items: start;
  }
}
.mf-problema-titulo h2 {
  margin: 0;
  max-width: 17ch;
  font-size: clamp(26px, 3.4vw, 36px);
}
.mf-andorinha { width: 40px; height: auto; display: block; margin: 0 0 22px; }

.mf-problema-corpo p {
  font-size: 17px !important;
  line-height: 1.7;
  max-width: 72ch;
}
.mf-problema-corpo p + p { margin-top: 20px; }
.mf-problema-corpo strong { color: var(--navy); font-weight: 600; }
.mf-destaque {
  font-family: var(--font-display);
  font-size: clamp(21px, 2.6vw, 26px) !important;
  line-height: 1.4;
  color: var(--navy) !important;
  margin-top: 30px !important;
}
.mf-assinatura {
  font-family: var(--font-display);
  font-size: clamp(19px, 2.2vw, 23px) !important;
  color: var(--terracotta-deep) !important;
  margin-top: 26px !important;
  padding-top: 26px;
  border-top: 1px solid rgba(24,69,112,.12);
}

/* ---------- lista de reconhecimento ---------- */
.mf-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
@media (min-width: 860px) { .mf-check { grid-template-columns: 1fr 1fr; gap: 24px 44px; } }
.mf-check li {
  position: relative;
  padding-left: 34px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
}
.mf-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--terracotta);
}

/* ---------- faixa de foto ----------
   aspect-ratio igual ao do arquivo, pra respeitar o enquadramento.
   O max-height so entra em tela larga, e ai o corte e minimo. */
.mf-band { display: block; line-height: 0; }
.mf-band img { width: 100%; object-fit: cover; display: block; }
.mf-band.band-duna img { aspect-ratio: 1600 / 620; max-height: 440px; }
.mf-band.band-maos img { aspect-ratio: 1600 / 760; max-height: 500px; }
@media (max-width: 640px) {
  .mf-band.band-duna img { aspect-ratio: 16 / 9; }
  .mf-band.band-maos img { aspect-ratio: 4 / 3; }
}

/* ---------- dois paineis: assincrono x ao vivo ---------- */
.mf-panels { display: grid; gap: 28px; margin-top: 8px; align-items: start; }
@media (min-width: 900px) { .mf-panels { grid-template-columns: 1fr 1fr; gap: 36px; } }
.mf-panel {
  background: var(--white);
  border: 1px solid rgba(24,69,112,.12);
  border-radius: var(--radius);
  padding: 32px 30px;
}
.mf-panel.is-live { background: #FBF8F5; border-color: rgba(210,129,103,.35); }
.mf-panel > .mf-eyebrow { margin-bottom: 10px; }
/* Cada item e um toggle, no espirito do Notion: a pessoa abre o que quiser ler.
   Isso encurta a primeira tela e tira a diferenca de altura entre as colunas. */
.mf-item { border-top: 1px solid rgba(24,69,112,.10); }
.mf-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding: 16px 34px 16px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}
.mf-item summary::-webkit-details-marker { display: none; }
.mf-item summary::after {
  content: ""; position: absolute; right: 4px; top: 50%;
  width: 8px; height: 8px; margin-top: -6px;
  border-right: 2px solid var(--terracotta-acao);
  border-bottom: 2px solid var(--terracotta-acao);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.mf-item[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.mf-item-body { padding: 0 0 18px; }
.mf-item p { font-size: 16px; line-height: 1.6; margin: 0; }
.mf-item p + p { margin-top: 12px; }

/* ---------- linha do tempo do ciclo ---------- */
.mf-timeline { margin-top: 52px; }
.mf-timeline-title {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--terracotta-deep);
  margin: 0 0 26px;
}
/* No celular a linha e vertical e liga os tres marcos. Em tela larga
   ela deita e vira uma regua de tres colunas. Sem isso, os pontos
   ficam soltos no mobile e o desenho deixa de ler como linha do tempo. */
.mf-track { position: relative; }
.mf-track::before {
  content: ""; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: rgba(24,69,112,.18);
}
.mf-marks { display: grid; gap: 30px; }
.mf-mark { position: relative; padding-left: 30px; }
.mf-mark::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 13px; height: 13px; border-radius: 50%; box-sizing: border-box;
  background: var(--terracotta-acao);
  border: 3px solid var(--white);
}
@media (min-width: 760px) {
  .mf-track { padding-top: 26px; }
  .mf-track::before {
    left: 0; right: 0; top: 6px; bottom: auto;
    width: auto; height: 2px;
  }
  .mf-marks { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .mf-mark { padding-left: 0; }
  .mf-mark::before { top: -26px; }
}
.mf-mark .when {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--terracotta-deep); margin-bottom: 6px;
}
.mf-mark strong { display: block; font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.mf-mark .desc { font-size: 15px; line-height: 1.55; color: var(--slate); }
.mf-continuous {
  margin-top: 30px;
  background: rgba(24,69,112,.06);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  font-size: 16px; line-height: 1.6; color: var(--slate);
}

/* ---------- secao navy com a escada ---------- */
.mf-split { display: grid; gap: 40px; align-items: center; }
@media (min-width: 920px) { .mf-split { grid-template-columns: 1.1fr .9fr; gap: 64px; } }
.mf-split-img { border-radius: var(--radius); overflow: hidden; }
.mf-split-img img { width: 100%; height: 100%; max-height: 580px; object-fit: cover; display: block; }
.mf-levels { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 22px; }
.mf-levels li { padding-left: 20px; border-left: 2px solid var(--terracotta); }
.mf-levels strong { display: block; color: var(--cream); font-size: 17px; margin-bottom: 5px; }
.mf-levels span { font-size: 16px; line-height: 1.6; color: #D9E2EA; }

/* ---------- antes e depois ----------
   Cada par e um cartao com uma seta no meio. A seta carrega a direcao,
   entao nao precisa de rotulo repetido linha a linha em tela larga. */
.mf-shift { display: grid; gap: 12px; margin-top: 40px; }
.mf-pair {
  display: grid;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(24,69,112,.10);
  border-radius: var(--radius);
  padding: 22px 26px;
}
.mf-before, .mf-after { font-size: 16.5px; line-height: 1.55; margin: 0; }
.mf-before { color: #6E7275; }
.mf-after  { color: var(--navy); font-weight: 600; }
.mf-arrow {
  display: block;
  width: 22px; height: 22px;
  position: relative;
  flex: none;
}
.mf-arrow::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 14px; height: 2px; background: var(--terracotta);
}
.mf-arrow::after {
  content: ""; position: absolute; right: 4px; top: 6px;
  width: 8px; height: 8px;
  border-top: 2px solid var(--terracotta);
  border-right: 2px solid var(--terracotta);
  transform: rotate(45deg);
}
/* no celular a seta deita pra baixo e os rotulos voltam */
@media (max-width: 819px) {
  .mf-arrow { transform: rotate(90deg); margin: 2px 0 2px 2px; }
  .mf-before::before {
    content: "Antes";
    display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--terracotta-deep); margin-bottom: 5px;
  }
  .mf-after::before {
    content: "Depois";
    display: block; font-size: 13px; font-weight: 700; letter-spacing: .1em;
    text-transform: uppercase; color: var(--terracotta-deep); margin-bottom: 5px;
  }
}
@media (min-width: 820px) {
  .mf-pair {
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    padding: 24px 32px;
  }
}
/* titulo que precisa caber em uma linha so */
.mf-section h2.is-wide { max-width: none; }

/* ---------- depoimentos ---------- */
.mf-quote { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.mf-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 31px);
  line-height: 1.35;
  color: var(--navy);
  margin: 0 0 20px;
}
.mf-quote cite { font-style: normal; font-size: 15px; color: var(--slate); }
.mf-quote cite strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 2px; }
.mf-stories { display: grid; gap: 26px; }
@media (min-width: 880px) { .mf-stories { grid-template-columns: 1fr 1fr; gap: 30px; } }
.mf-story {
  background: var(--white);
  border: 1px solid rgba(24,69,112,.12);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.mf-story .who { display: block; font-size: 16px; font-weight: 700; color: var(--navy); }
.mf-story .role { display: block; font-size: 14px; color: var(--terracotta-deep); margin: 3px 0 14px; }
.mf-story p { font-size: 16px; line-height: 1.62; margin: 0; }

/* ---------- sanfonas ---------- */
.mf-acc { border-top: 1px solid rgba(24,69,112,.14); margin-top: 30px; }
.mf-acc details { border-bottom: 1px solid rgba(24,69,112,.14); }
.mf-acc summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}
.mf-acc summary::-webkit-details-marker { display: none; }
.mf-acc summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 11px; height: 11px; margin-top: -7px;
  border-right: 2px solid var(--terracotta-acao);
  border-bottom: 2px solid var(--terracotta-acao);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.mf-acc details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.mf-acc .mf-acc-body { padding: 0 0 24px; }
.mf-acc .mf-acc-body p { font-size: 17px; line-height: 1.65; margin: 0; }
.mf-acc .mf-acc-body p + p { margin-top: 16px; }

.mf-trilha + .mf-trilha { margin-top: 18px; }
.mf-trilha strong { color: var(--navy); }
.mf-flow-line {
  margin-top: 26px;
  background: rgba(24,69,112,.06);
  border-radius: 10px;
  padding: 18px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 600;
}

/* ---------- investimento ---------- */
.mf-price-wrap { text-align: center; max-width: 640px; margin: 0 auto; }
.mf-price {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1;
  color: var(--navy);
  margin: 6px 0 14px;
}
.mf-price-note { font-size: 18px; color: var(--slate); margin: 0; }
.mf-price-sub { font-size: 16px; color: #6E7275; margin: 18px 0 0; }

/* ---------- fechamento ---------- */
.mf-close { background: var(--navy); color: var(--cream); padding: 92px 0 64px; text-align: center; }
.mf-close h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.2;
  color: var(--cream);
  margin: 0 auto 18px;
  max-width: 20ch;
}
.mf-close p { color: #D9E2EA; font-size: 17px; max-width: 52ch; margin: 0 auto 32px; }
.mf-close .mf-wordmark { display: block; width: 190px; margin: 64px auto 0; opacity: .9; }

/* ---------- voltar ---------- */
.mf-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; color: var(--navy); text-decoration: none;
  padding: 26px 0 0;
}
.mf-back:hover { color: var(--terracotta-deep); }

@media (max-width: 640px) {
  .mf-section { padding: 68px 0; }
  .mf-hero { padding: 72px 0 60px; }
  .mf-panel { padding: 26px 22px; }
}
