/* ===========================================================
   GeraçãoSioz — Versão MOBILE (separada do desktop)
   Sistema: cada seção é um "stage-m" com largura de referência de
   1080px (a largura das artes em design/MOBILE/). A altura NÃO é
   fixa — vem naturalmente da imagem de fundo (com height:auto),
   já que cada seção tem uma altura diferente. Tudo dentro do
   stage-m usa cqw (% da largura do próprio stage-m) — por isso
   escala igual em qualquer tela, sem quebrar.
   =========================================================== */

:root {
  --azul-escuro:  #00102f;
  --azul-medio:   #1657ae;
  --azul-claro:   #4c9dfb;
  --azul-nav:     #8fb9e8;

  --grad-botao: linear-gradient(90deg,
    #00184b  0%, #00235a 17%, #002d6a 25%, #00387a 33%, #00458b 41%,
    #00529f 48%, #005cab 56%, #005eae 64%, #005eae 100%);
  --borda-botao: #0063aa;
  --azul-suave:   #9cc0e6;
  --branco:       #ffffff;
  --texto-claro:  #f2f7fd;

  --fonte-titulo: "Poppins", system-ui, sans-serif;
  --fonte-display: "Encode Sans Semi Condensed", "Poppins", system-ui, sans-serif;
  --fonte-corpo:  "Poppins", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
html::-webkit-scrollbar { display: none; }

body {
  margin: 0;
  background: var(--azul-escuro);
  font-family: var(--fonte-corpo);
  color: var(--branco);
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Stage mobile: base de cada seção ---------- */
.stage-m {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  container-type: inline-size;
}

.stage-m__fundo {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Faixa animada entre seções (mesma do desktop) ----------
   Fica fora do .stage-m, então tem container-type próprio; largura
   e centralização espelham o .stage-m pra ficar alinhada ao resto. */
.divisor-marquee-m {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  height: 6.2cqw;
  overflow: hidden;
  background: linear-gradient(90deg, #fefeff 0%, #83c2ff 100%);
  container-type: inline-size;
}

.marquee-m__pista {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: max-content;
  font-family: var(--fonte-titulo);
  font-size: 3cqw;
  font-weight: 500;
  letter-spacing: -0.0335em;
  white-space: nowrap;
}

.marquee-m__bloco { flex: none; position: relative; }

.marquee-m__pista--azul   { color: #48a3ff; }
.marquee-m__pista--branca {
  color: #ffffff;
  -webkit-mask-image: linear-gradient(90deg, transparent 40%, #000 60%);
          mask-image: linear-gradient(90deg, transparent 40%, #000 60%);
}

.marquee-m__pista { animation: rolar-esq-m 22s linear infinite; }

@keyframes rolar-esq-m {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

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

/* ===========================================================
   SEÇÃO 1 — HERO
   Medidas da arte Hero.jpg (1080x1920). Fundo (foto + decoração)
   em imagem, com o texto original removido por inpaint; menu,
   textos e botões em HTML por cima.
   =========================================================== */

.hero-m__nav {
  position: absolute;
  left: 0;
  top: 2.18%;
  width: 100%;
  z-index: 5;
  display: flex;
  align-items: center;
  padding: 0 7.4%;
}

/* Botão hamburguer: três linhas, vira um "X" leve quando aberto */
.hero-m__hamb {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.7cqw;
  width: 6.6cqw;
  height: 6.6cqw;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.hero-m__hamb span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--branco);
  transform-origin: center;
  transition: transform .25s ease, opacity .2s ease;
}
.hero-m__nav.aberto .hero-m__hamb span:nth-child(1) { transform: translateY(3.4cqw) rotate(45deg); }
.hero-m__nav.aberto .hero-m__hamb span:nth-child(2) { opacity: 0; }
.hero-m__nav.aberto .hero-m__hamb span:nth-child(3) { transform: translateY(-3.4cqw) rotate(-45deg); }

.hero-m__entrar {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding: 1.3cqw 3cqw 1.3cqw 2cqw;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%, 0 70%);
  border-radius: 0.6cqw;
  background: var(--grad-botao);
  border: 1px solid var(--borda-botao);
  font-size: 2.3cqw;
  font-weight: 500;
  color: var(--branco);
  white-space: nowrap;
}
.hero-m__entrar img { width: 2.1cqw; height: auto; }

/* Dropdown com os caminhos da página — some por padrão, desce com
   uma transição leve quando o nav ganha .aberto (via menu.js) */
.hero-m__menu {
  position: absolute;
  left: 7.4%;
  top: 100%;
  margin-top: 2.4cqw;
  width: 52%;
  min-width: fit-content;
  display: flex;
  flex-direction: column;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  border-radius: 2.6cqw;
  background: rgba(4, 18, 42, 0.94);
  border: 1px solid rgba(200, 222, 250, 0.25);
  backdrop-filter: blur(6px);
  transform: translateY(-6px);
  pointer-events: none;
  transition: max-height .32s ease, opacity .28s ease, transform .28s ease;
}
.hero-m__nav.aberto .hero-m__menu {
  max-height: 60cqw;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-m__menu a {
  padding: 3.2cqw 5cqw;
  font-family: var(--fonte-corpo);
  font-size: 3cqw;
  font-weight: 400;
  color: var(--texto-claro);
  white-space: nowrap;
  border-bottom: 1px solid rgba(200, 222, 250, 0.14);
}
.hero-m__menu a:last-child { border-bottom: 0; }
.hero-m__menu a:first-child { color: var(--branco); }

/* Bloco de texto em fluxo normal — cada elemento empurra o
   seguinte pela própria margem, sem risco de sobrepor mesmo que
   uma medida saia um pouco diferente da arte. */
.hero-m__flow {
  position: absolute;
  left: 0;
  top: 12.54%;
  width: 100%;
  z-index: 3;
  text-align: center;
}

.hero-m__titulo1 {
  margin: 0;
  font-family: var(--fonte-titulo);
}
.hero-m__titulo1 .l1 {
  display: block;
  font-size: 5.3cqw;
  font-weight: 300;
  line-height: 1.15;
  color: var(--texto-claro);
}
.hero-m__titulo1 .l2 {
  display: block;
  font-size: 9.3cqw;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #7fb9f5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-m__titulo1 .l3 {
  display: block;
  margin-top: 1.2cqw;
  font-size: 4.3cqw;
  font-weight: 500;
  line-height: 1.15;
  color: var(--branco);
}
.hero-m__titulo1 .l3 b { font-weight: 700; }

.hero-m__par1 {
  margin: 2.2cqw auto 0;
  width: 80%;
  font-size: 2.9cqw;
  line-height: 1.3;
  color: var(--texto-claro);
}

.hero-m__titulo2 {
  margin: 2cqw 0 0;
  font-family: var(--fonte-titulo);
}
.hero-m__titulo2 .l1 {
  display: block;
  font-size: 5.3cqw;
  font-weight: 300;
  line-height: 1.15;
  color: var(--azul-suave);
}
.hero-m__titulo2 .l2 {
  display: block;
  font-size: 9.3cqw;
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 40%, #7fb9f5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-m__par2 {
  margin: 2.2cqw auto 0;
  width: 80%;
  font-size: 2.9cqw;
  line-height: 1.4;
  color: var(--texto-claro);
}

.hero-m__cta {
  margin: 5cqw auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5cqw;
  padding: 1.8cqw 4.4cqw;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  font-size: 3.1cqw;
  color: var(--branco);
  white-space: nowrap;
}
.hero-m__cta b { font-weight: 700; color: #ffffff; }
.hero-m__cta img { width: 2.4cqw; height: auto; }

.hero-m__pills {
  margin: 2.6cqw auto 0;
  width: fit-content;
  display: flex;
  gap: 2.2cqw;
}
.hero-m__pills a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5cqw;
  padding: 1.8cqw 4cqw;
  border-radius: 999px;
  border: 1px solid rgba(200, 222, 250, 0.35);
  font-size: 2.9cqw;
  color: var(--branco);
  white-space: nowrap;
}
.hero-m__pills img { width: 2.4cqw; height: auto; }

.hero-m__baixo {
  position: absolute;
  left: 50%;
  top: 87.97%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.5cqw;
  padding: 3cqw 4.5cqw 3cqw 4cqw;
  clip-path: polygon(0 0, 93% 0, 100% 32%, 100% 100%, 7% 100%, 0 68%);
  background: var(--grad-botao);
  border: 1px solid var(--borda-botao);
  font-size: 3.6cqw;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--branco);
  white-space: nowrap;
}
.hero-m__baixo img { width: 3.4cqw; height: auto; }

/* ===========================================================
   SEÇÃO 2 — POR QUE A GERAÇÃOSIOZ EXISTE
   Medidas da arte seção02.jpg (1080x1920). Duas colunas de texto
   em fluxo normal (cada <p> empurra o próximo, sem risco de
   sobrepor); a foto do rapaz é só imagem, abaixo das colunas.
   =========================================================== */

.s2m-esq, .s2m-dir {
  position: absolute;
  top: 4%;
  z-index: 3;
}
.s2m-esq { left: 6.5%; width: 47%; }
/* a coluna da direita começa no topo (igual à da esquerda); margem direita ~6.5% */
.s2m-dir { left: 54%; width: 39.5%; }

.s2m-autor {
  margin: 0;
  font-size: 2.6cqw;
  font-weight: 500;
  color: var(--branco);
}

.s2m-kicker {
  margin-top: 3cqw;
  font-size: 3.3cqw;
  font-weight: 300;
  color: var(--texto-claro);
}

.s2m-titulo {
  margin: 0.5cqw 0 0;
  font-family: var(--fonte-display);
  font-size: 6.8cqw;
  font-weight: 700;
  line-height: 1.05;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 30%, #7fb9f5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* "EXISTE?" vem bem mais espaçado que "GERAÇÃOSIOZ" na arte de
   referência — letras soltas, tipo "E X I S T E ?" */
.s2m-titulo__espacado { letter-spacing: 0.28em; }

.s2m-texto, .s2m-texto2 {
  margin: 0.5cqw 0 0;
  font-size: 2.05cqw;
  font-weight: 400;
  line-height: 1.2;
  color: #dbeaff;
}
.s2m-texto2 b { font-weight: 700; color: #ffffff; }
.s2m-dir .s2m-autor { margin-top: 0; }

/* ===========================================================
   SEÇÃO 3 — NÃO TRAVA POR FALTA DE IDEIAS
   Medidas da arte seção03.jpg (1080x1920). Fluxo normal — a foto
   do rapaz é só imagem, abaixo do bloco de texto.
   =========================================================== */

.s3m-flow {
  position: absolute;
  left: 0;
  top: 4.6%;
  width: 100%;
  z-index: 3;
  padding: 0 4.2%;
  text-align: center;
}

.s3m-titulo { margin: 0; font-family: var(--fonte-titulo); }
.s3m-titulo .l0 {
  display: block;
  font-size: 5.5cqw;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.18em;
  margin-bottom: 2.4cqw;   /* folga p/ o til do NÃO não tocar a linha de cima */
  color: #ffffff;
}
.s3m-titulo .l1 {
  display: block;
  font-weight: 800;
  line-height: 0.93;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 45%, #7fb9f5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* "NÃO TRAVA" é a linha mais larga — as outras (POR FALTA, DE
   IDEIAS) recebem um font-size próprio pra fechar exatamente na
   mesma largura dela, criando o bloco "justificado" da referência
   (mesmo início e fim em todas as linhas). */
.s3m-titulo .l1a { font-size: 10.9cqw; }
.s3m-titulo .l1b { font-size: 12.04cqw; }
.s3m-titulo .l2 {
  display: block;
  font-size: 14.48cqw;
  font-weight: 400;
  line-height: 0.96;
  background: linear-gradient(100deg, #ffffff 0%, #ffffff 45%, #7fb9f5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.s3m-sub {
  margin: 0.4cqw 0 0;
  font-family: var(--fonte-titulo);
  font-weight: 800;
  line-height: 1.08;
  color: #c6e1fc;
}
/* Mesma lógica do título: "Trava por falta" é a mais larga, "de
   execução" ganha um tamanho próprio pra fechar no mesmo lugar. */
.s3m-sub .subA { font-size: 7.6cqw; }
.s3m-sub .subB { font-size: 8.8cqw; }

.s3m-lista {
  margin: 4.2cqw 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8cqw;
}
.s3m-lista li {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1cqw;
  height: 5.1cqw;
  padding: 0 2.2cqw;
  border: 1px solid rgba(150, 190, 235, 0.75);
  border-radius: 999px;
  font-size: 2.6cqw;
  color: var(--branco);
  white-space: nowrap;
}
.s3m-lista img { width: 2.2cqw; height: auto; }

/* ===========================================================
   SEÇÃO 4 — ENTREGAMOS POSICIONAMENTO
   Medidas da arte seção04.jpg (1080x1635). Texto alinhado à
   direita sobre a foto; lista escalonada (cada item com sua
   própria largura, alinhada à direita) abaixo da foto.
   =========================================================== */

.s4m-texto {
  position: absolute;
  left: 7%;
  top: 31.5%;
  width: 40%;
  z-index: 3;
  text-align: right;
  font-family: var(--fonte-titulo);
}
.s4m-kicker {
  font-size: 2.6cqw;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--azul-suave);
}
/* "NÃO" fica em cima, numa linha própria, mais claro/branco que o
   resto — igual à arte de referência. */
.s4m-kicker__nao {
  display: block;
  color: var(--texto-claro);
}
.s4m-kicker__resto { display: block; }
.s4m-titulo {
  margin-top: 0.5cqw;
  font-size: 6.1cqw;
  font-weight: 800;
  line-height: 1;
  color: var(--azul-claro);
}
.s4m-titulo2 {
  margin-top: 0.2cqw;
  font-size: 4.1cqw;
  font-weight: 800;
  line-height: 1;
  color: var(--branco);
}
.s4m-sub {
  margin: 1.8cqw 0 0;
  font-family: var(--fonte-corpo);
  font-size: 3cqw;
  font-weight: 400;
  line-height: 1.3;
  color: var(--texto-claro);
}
.s4m-sub b { font-weight: 700; color: #ffffff; }

.s4m-lista {
  position: absolute;
  left: 4%;
  top: 65.7%;
  width: 80%;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5cqw;
}
.s4m-lista li {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  height: 5.1cqw;
  padding: 0 3cqw;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--fonte-titulo);
  font-size: 2.9cqw;
  font-weight: 500;
  color: var(--branco);
  white-space: nowrap;
}
.s4m-lista img { width: 2.6cqw; height: auto; }

/* ===========================================================
   SEÇÃO 5 — VOCÊ NÃO CONTRATA ALGUÉM, VOCÊ ACESSA UMA ESTRUTURA
   Medidas da arte seção 05.jpg (1080x1920). Trilha vertical +
   lista; primeiro item vem destacado (ativo).
   =========================================================== */

/* Linha vertical da trilha: começa acima do título e desce até
   depois do rodapé (x=21.4% e y=7%→47% medidos na arte). O quadrado
   do topo é o ::before dela. */
.s5m-linha {
  position: absolute;
  left: 21.4%;
  top: 7%;
  height: 40%;
  width: 1px;
  z-index: 3;
  background: rgba(160, 200, 240, 0.5);
}
.s5m-linha::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1.1cqw;
  height: 1.1cqw;
  border-radius: 0.2cqw;
  background: rgba(190, 215, 245, 0.85);
}

.s5m-titulo {
  position: absolute;
  left: 26.9%;
  top: 8.3%;
  width: 55%;
  z-index: 3;
  margin: 0;
  font-family: var(--fonte-corpo);
  font-size: 4.4cqw;
  font-weight: 400;
  line-height: 1.25;
  color: var(--azul-suave);
}
.s5m-titulo b { font-weight: 700; color: var(--azul-claro); }
.s5m-titulo .destaque { font-weight: 700; color: #b9d7f6; }

/* A lista começa em 26.9% (borda esquerda dos cards na arte); a
   linha fica 5.5cqw à esquerda disso, e é nela que os marcadores
   se alinham. */
.s5m-trilha {
  position: absolute;
  left: 26.9%;
  top: 19.6%;
  width: 70%;
  z-index: 3;
}

.s5m-lista { margin: 0; padding: 0; list-style: none; }
.s5m-lista li {
  position: relative;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.6cqw;
  height: 6.85cqw;
  padding: 0 2.2cqw 0 2.6cqw;
  margin-top: 4.1cqw;
  border-radius: 1.3cqw;
  background: rgba(0, 41, 93, 0.85);
  border: 1px solid rgba(150, 190, 235, 0.45);
  font-family: var(--fonte-corpo);
  font-size: 2.95cqw;
  color: #708fb3;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.s5m-lista li:first-child { margin-top: 0; }
.s5m-lista li img {
  width: 2.2cqw;
  height: auto;
  opacity: 0.65;
  transition: opacity .25s ease;
}
.s5m-lista li::before {
  content: "";
  position: absolute;
  left: -6.2cqw;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4cqw;
  height: 1.4cqw;
  border-radius: 50%;
  background: rgba(170, 205, 240, 0.8);
  transition: all .25s ease;
}
.s5m-lista li.ativo {
  background: linear-gradient(100deg, #00397f 0%, #0a63c4 100%);
  border-color: rgba(120, 180, 250, 0.8);
  color: var(--branco);
  font-weight: 600;
}
.s5m-lista li.ativo img { opacity: 1; }
/* Badge do item ativo: quadrado branco com a setinha azul dentro
   (medido na arte de referência — fundo claro, ícone colorido, não
   o padrão escuro usado nos outros botões). */
.s5m-lista li.ativo::before {
  left: -8.05cqw;
  width: 5.1cqw;
  height: 5.1cqw;
  border-radius: 1.3cqw;
  background: #ffffff;
  border: none;
}
.s5m-lista li.ativo::after {
  content: "";
  position: absolute;
  left: -8.05cqw;
  top: 50%;
  transform: translateY(-50%);
  width: 5.1cqw;
  height: 5.1cqw;
  -webkit-mask: url("../assets/img/s4-chevron.png") center/40% no-repeat;
          mask: url("../assets/img/s4-chevron.png") center/40% no-repeat;
  background: #0a63c4;
}

.s5m-rodape {
  position: absolute;
  left: 27%;
  top: 44.5%;
  z-index: 3;
  margin: 0;
  font-family: var(--fonte-corpo);
  font-size: 4.2cqw;
  font-weight: 400;
  color: var(--azul-suave);
}
.s5m-rodape b { font-weight: 700; color: var(--azul-claro); }

/* ===========================================================
   SEÇÕES 6 e 7 — ANTES / DEPOIS DA GERAÇÃOSIOZ
   Medidas das artes seção06/07.jpg (1080x1680). Mesmo padrão nas
   duas: título, 4 pills, 3 cards de vídeo (por enquanto vazios,
   como estavam no desktop antes de o Arthur decidir os vídeos).
   =========================================================== */

.s67m-titulo {
  position: absolute;
  left: 0;
  top: 10.7%;
  width: 100%;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-family: var(--fonte-titulo);
  font-size: 8.1cqw;
  font-weight: 800;
  line-height: 1.05;
  color: var(--texto-claro);
}
.s67m-titulo b { color: var(--azul-claro); }
.s67m-titulo i { font-style: normal; color: var(--branco); font-weight: 400; }

.s67m-lista {
  position: absolute;
  left: 0;
  top: 26.5%;
  width: 100%;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.3cqw;
}
.s67m-lista li {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.3cqw;
  height: 5.6cqw;
  padding: 0 3cqw;
  border-radius: 1cqw;
  border: 1px solid rgba(150, 190, 235, 0.6);
  font-family: var(--fonte-corpo);
  font-size: 3.1cqw;
  color: var(--branco);
  white-space: nowrap;
}
.s67m-lista img { width: 2.6cqw; height: auto; }

.s67m-cards {
  position: absolute;
  left: 3.7%;
  top: 56.9%;
  width: 92.6%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
.s67m-card {
  position: relative;
  width: 28.2%;
  aspect-ratio: 305 / 545;
  border-radius: 2.8cqw;
  background: #cae5ff;
  overflow: hidden;
}
.s67m-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8.5cqw;
  height: 8.5cqw;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
}
.s67m-play::after {
  content: "";
  position: absolute;
  left: 57%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.6cqw 0 1.6cqw 2.7cqw;
  border-color: transparent transparent transparent #0a1f45;
}

/* ===========================================================
   SEÇÃO 8 — SUA OPERAÇÃO PRECISA DE 3 PONTOS IMPORTANTES
   Medidas da arte seção08.jpg (1080x1920). Layout novo, exclusivo
   do mobile: título, foto com 3 badges numerados conectados por
   linha à foto, texto final.
   =========================================================== */

.s8m-titulo {
  position: absolute;
  left: 0;
  top: 6.8%;
  width: 100%;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-family: var(--fonte-titulo);
  line-height: 1.12;
}
.s8m-titulo .l0 {
  display: block;
  font-size: 5.6cqw;
  font-weight: 400;
  color: var(--texto-claro);
}
.s8m-titulo .l0 b { font-weight: 800; color: var(--azul-claro); }
.s8m-titulo .l1 {
  display: block;
  font-size: 8.4cqw;
  font-weight: 800;
  color: var(--branco);
  padding-top: 0.5cqw;
}

.s8m-linhas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.s8m-linhas line { stroke: rgba(255,255,255,0.85); stroke-width: 2.5; }

.s8m-badge {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1.6cqw;
  padding: 2cqw 3cqw;
  white-space: nowrap;
  border-radius: 1.6cqw;
  background: var(--grad-botao);
  border: 1px solid var(--borda-botao);
}
.s8m-badge b {
  font-family: var(--fonte-titulo);
  font-size: 7cqw;
  font-weight: 800;
  color: var(--branco);
  line-height: 1;
}
.s8m-badge span {
  font-family: var(--fonte-corpo);
  font-size: 2.9cqw;
  font-weight: 700;
  line-height: 1.25;
  color: var(--branco);
}
.s8m-badge--1 { left: 6%;  top: 57.5%; }
.s8m-badge--2 { right: 6%; top: 64.3%; }
.s8m-badge--3 { left: 6%;  top: 71.5%; }

.s8m-rodape {
  position: absolute;
  left: 12%;
  top: 83.3%;
  width: 80%;
  z-index: 3;
  margin: 0;
  padding-left: 3.5%;
  border-left: 2px solid rgba(255,255,255,0.5);
  font-family: var(--fonte-titulo);
  font-size: 4.3cqw;
  font-weight: 400;
  line-height: 1.2;
  color: var(--texto-claro);
}
.s8m-rodape b { font-weight: 800; color: var(--branco); }

/* ===========================================================
   SEÇÃO 9 — QUEM ENTROU GANHOU CAPACIDADE SEM AUMENTAR A EQUIPE
   Medidas da arte seção09.jpg (1080x1920).
   =========================================================== */

.s9m-titulo {
  position: absolute;
  left: 0;
  top: 5.2%;
  width: 100%;
  z-index: 3;
  margin: 0;
  padding: 0 4%;
  text-align: center;
  font-family: var(--fonte-titulo);
  font-size: 6.1cqw;
  font-weight: 400;
  line-height: 1.08;
  color: var(--texto-claro);
}
.s9m-titulo b { font-weight: 800; color: var(--branco); }

.s9m-sub {
  position: absolute;
  left: 8%;
  top: 20.8%;
  width: 84%;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-family: var(--fonte-corpo);
  font-size: 3.4cqw;
  font-weight: 700;
  line-height: 1.35;
  color: var(--texto-claro);
}

.s9m-lista {
  position: absolute;
  left: 0;
  top: 32.8%;
  width: 100%;
  z-index: 3;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1cqw;
}
.s9m-lista li {
  width: fit-content;
  display: flex;
  align-items: center;
  height: 5.5cqw;
  padding: 0 3cqw;
  border-radius: 1cqw;
  border: 1px solid rgba(150, 190, 235, 0.6);
  font-family: var(--fonte-corpo);
  font-size: 3cqw;
  color: var(--branco);
  white-space: nowrap;
}

.s9m-cards {
  position: absolute;
  left: 5.6%;
  top: 54.7%;
  width: 88.8%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
}
.s9m-card {
  position: relative;
  width: 47.5%;
  aspect-ratio: 460 / 765;
  border-radius: 2.8cqw;
  background: #cae5ff;
  overflow: hidden;
}

/* ===========================================================
   SEÇÃO 10 — SUA EMPRESA JÁ TEM IDEIAS, AGORA PRECISA DE EXECUÇÃO
   Medidas da arte seção10.jpg (1080x2380). Fluxo normal — a foto
   fica abaixo, fora deste bloco.
   =========================================================== */

.s10m-flow {
  position: absolute;
  left: 0;
  top: 5.8%;
  width: 100%;
  z-index: 3;
  padding: 0 2.8%;
  text-align: center;
}

.s10m-titulo { margin: 0 0 -0.4cqw; font-family: var(--fonte-titulo); line-height: 1.06; }
.s10m-titulo .l0 {
  display: block;
  font-size: 5.2cqw;
  letter-spacing: .22em;
  position: relative;
  left: 3cqw;
  font-weight: 400;
  color: var(--texto-claro);
}
.s10m-titulo .l1 {
  display: block;
  font-size: 9.1cqw;
  line-height: 1.15;
  font-weight: 800;
  color: var(--branco);
}
.s10m-titulo .l2 {
  display: block;
  font-size: 8.2cqw;
  line-height: 1.15;
  font-weight: 400;
  color: var(--texto-claro);
}

.s10m-texto {
  margin: 3.7cqw auto 0;
  font-family: var(--fonte-corpo);
  font-size: 2.97cqw;
  font-weight: 400;
  line-height: 1.215;
  color: var(--texto-claro);
}

.s10m-linha {
  margin: 2cqw auto 0;
  width: 44%;
  height: 1px;
  border: none;
  background: rgba(200, 222, 250, 0.5);
}

.s10m-cta-texto {
  margin: 2.65cqw 0 0;
  font-family: var(--fonte-titulo);
  font-size: 4.92cqw;
  font-weight: 400;
  line-height: 1;
  color: var(--azul-suave);
}
.s10m-cta-texto b { font-weight: 800; color: var(--branco); }

.s10m-cta {
  margin: 4.45cqw auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 1.2cqw;
  padding: 3cqw 3cqw;
  clip-path: polygon(0 0, 93.5% 0, 100% 33%, 100% 100%, 6.5% 100%, 0 67%);
  background: var(--grad-botao);
  border: 1px solid var(--borda-botao);
  font-family: var(--fonte-corpo);
  font-size: 2.23cqw;
  font-weight: 500;
  color: var(--branco);
  white-space: nowrap;
}
.s10m-cta img { width: 2.5cqw; height: auto; }

/* ===========================================================
   SEÇÃO 11 — SOLICITE SUA ENTRADA (FORMULÁRIO FINAL)
   Medidas da arte seção11.jpg (1080x2925). Fluxo normal do
   começo ao fim — texto, formulário e botão de envio. O rodapé
   (aviso + contatos) fica separado, sobre a foto.
   =========================================================== */

/* Coluna central como na arte: todas as linhas dentro do mesmo
   retângulo (16.8% → 83.2%). --y é o centro vertical de cada bloco,
   em % da altura da seção (medido na arte). */
.s11m-flow {
  position: absolute;
  inset: 0;
  z-index: 3;
  font-family: var(--fonte-corpo);
}
.s11m-bloco {
  position: absolute;
  left: 16.8%;
  width: 66.4%;
  top: calc(var(--y) * 1%);
  transform: translateY(-50%);
  margin: 0;
  text-align: center;
  white-space: nowrap;
}

.s11m-label {
  font-size: 4.6cqw;
  font-weight: 400;
  letter-spacing: 0.35em;
  padding-left: 0.35em;
  color: var(--azul-suave);
}
.s11m-titulo {
  font-family: var(--fonte-titulo);
  font-size: 8.3cqw;
  font-weight: 800;
  line-height: 1;
  color: var(--branco);
}
.s11m-titulo2 {
  font-family: var(--fonte-titulo);
  font-size: 5.92cqw;
  font-weight: 400;
  line-height: 1;
  color: var(--azul-suave);
}
.s11m-titulo2--agendou { font-size: 6.57cqw; }
.s11m-titulo--b { font-size: 6.34cqw; }
.s11m-titulo2 b { font-weight: 800; color: var(--branco); }
.s11m-texto {
  font-size: 4.85cqw;
  font-weight: 400;
  line-height: 1.18;
  color: var(--texto-claro);
}
.s11m-texto b { font-weight: 700; color: #8fc0f5; }
.s11m-texto--2 { font-size: 4.56cqw; }
.s11m-texto--3 { font-size: 4.16cqw; }

.s11m-linha {
  height: 2px;
  border: none;
  background: rgba(255,255,255,0.6);
}
.s11m-linha--2 { left: 18.4%; width: 63.2%; }

.s11m-form-kicker {
  font-family: var(--fonte-titulo);
  font-size: 5.52cqw;
  font-weight: 400;
  line-height: 1;
  color: var(--branco);
}
.s11m-form-titulo {
  font-family: var(--fonte-display);
  line-height: 1;
  white-space: nowrap;
}
.s11m-form-titulo b { font-size: 10.2cqw; font-weight: 800; color: var(--branco); }
.s11m-form-titulo i { font-style: normal; font-size: 10.2cqw; font-weight: 300; color: #9cc3ee; }

.s11m-campos {
  position: absolute;
  left: 16.8%;
  width: 66.4%;
  top: 43.83%;
  display: flex;
  flex-direction: column;
  gap: 2.5cqw;
}

.s11m-input {
  width: 100%;
  height: 6cqw;
  padding: 0 3cqw;
  border-radius: 2.6cqw;
  border: 1px solid rgba(200, 222, 250, 0.28);
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--fonte-corpo);
  font-size: 2.3cqw;
  color: #ffffff;
}
.s11m-input::placeholder { color: #9db2cc; }
.s11m-input:focus { outline: none; border-color: rgba(140, 190, 250, 0.7); }

.s11m-dropdown {
  display: flex;
  align-items: center;
  gap: 2.6cqw;
  width: 100%;
  height: 6cqw;
  padding: 0 3cqw;
  border-radius: 2.6cqw;
  border: 1px solid rgba(140, 190, 250, 0.6);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--fonte-corpo);
  font-size: 2.3cqw;
  color: #ffffff;
  text-align: left;
}
.s11m-dropdown img { width: 2.6cqw; height: auto; flex: none; }

.s11m-passos { list-style: none; margin: 0 0 1.2cqw; padding: 0; display: flex; flex-direction: column; gap: 2.5cqw; }
.s11m-passos li {
  display: flex;
  align-items: center;
  gap: 3cqw;
  padding: 3cqw 3.4cqw;
  border-radius: 2.6cqw;
  border: 1px solid rgba(200, 222, 250, 0.28);
  background: rgba(255, 255, 255, 0.06);
  font-size: 3cqw;
  line-height: 1.3;
  color: #ffffff;
}
.s11m-passos b {
  flex: none;
  width: 6.4cqw;
  height: 6.4cqw;
  display: grid;
  place-items: center;
  border-radius: 1.8cqw;
  background: linear-gradient(100deg, #00397f, #0a63c4);
  font-size: 3cqw;
  font-weight: 600;
}
.s11m-nota { margin: 1.2cqw 0 0; text-align: center; font-size: 2.5cqw; color: var(--azul-suave); }

.s11m-enviar {
  cursor: pointer;
  margin: 0.8cqw auto 0;
  width: 97.5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2cqw;
  height: 9.7cqw;
  clip-path: polygon(0 0, 95% 0, 100% 25%, 100% 100%, 5% 100%, 0 75%);
  background: var(--grad-botao);
  border: 1px solid var(--borda-botao);
  font-family: var(--fonte-corpo);
  font-size: 2.9cqw;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #ffffff;
}
.s11m-enviar img { width: 3.6cqw; height: auto; }

.s11m-rodape {
  position: absolute;
  left: 4.6%;
  bottom: 2.2cqw;
  width: 90.8%;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2cqw 3cqw;
  padding: 2.4cqw 3.6cqw;
  border-radius: 3cqw;
  background: rgba(10, 25, 55, 0.85);
  border: 1px solid rgba(150, 190, 235, 0.4);
}
.s11m-rodape__alerta { width: 5.5cqw; height: auto; flex: none; }
.s11m-rodape__aviso {
  flex: 1 1 70%;
  margin: 0;
  font-family: var(--fonte-corpo);
  font-size: 2.4cqw;
  line-height: 1.3;
  color: #dbeaff;
}
.s11m-rodape__contato {
  flex: 1 1 auto;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 1.6cqw;
  font-family: var(--fonte-corpo);
  font-size: 2.8cqw;
  font-weight: 500;
  color: #ffffff;
}
.s11m-rodape__contato img { width: 3.6cqw; height: auto; }
/* WhatsApp: só o ícone, como botão redondo */
.s11m-rodape__zap { flex: none; width: 8cqw; height: 8cqw; padding: 0; border-radius: 50%; justify-content: center; border: 1px solid rgba(190, 220, 255, 0.55); background: rgba(255, 255, 255, 0.08); }
.s11m-rodape__zap img { width: 4.6cqw; }


/* Folga para acentos/cedilha nos títulos com degradê (ver style.css do
   desktop): padding aumenta a área pintada, margem negativa mantém a posição. */
.s2m-titulo { padding: 0.12em 0 0.22em; margin: calc(0.5cqw - 0.12em) 0 -0.22em; }
.hero-m__titulo1 .l2,
.hero-m__titulo2 .l2,
.s3m-titulo .l1,
.s3m-titulo .l2 { padding: 0.14em 0 0.22em; margin: -0.14em 0 -0.22em; }

/* ===========================================================
   SEÇÃO — PLANOS PARA DIFERENTES NÍVEIS DE OPERAÇÃO (mobile)
   Sem arte própria: fundo azul escuro em CSS (mesmo tom das
   seções lisas), conteúdo em fluxo normal, medidas em cqw
   sobre a largura de referência de 1080px.
   =========================================================== */
.pm {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  container-type: inline-size;
  padding: 11cqw 7cqw 12cqw;
  text-align: center;
  font-family: var(--fonte-corpo);
  color: var(--branco);
  background:
    radial-gradient(120% 55% at 50% 0%, rgba(20, 70, 150, 0.35), transparent 70%),
    #00133b;
}
.pm > * { position: relative; z-index: 1; }

.pm-kicker {
  margin: 0;
  font-size: 3.7cqw;
  font-weight: 600;
  letter-spacing: 0.24em;
  line-height: 1.6;
  color: #ffffff;
}
.pm-titulo { margin: 7cqw 0 0; font-weight: 400; }
.pm-t1, .pm-t2 { display: block; font-family: var(--fonte-display); }
.pm-t1 { font-size: 9.6cqw; line-height: 1.05; color: #e9f4ff; }
.pm-t2 {
  margin-top: 2.4cqw;
  padding: 0.2em 0 0.3em;
  font-size: 9.6cqw;
  line-height: 1;
  letter-spacing: 0.16em;
  color: #9fcdff;
}
.pm-sub {
  margin: 3cqw auto 0;
  max-width: 84cqw;
  font-size: 3.5cqw;
  line-height: 1.55;
}

/* card do investimento */
.pm-card {
  margin: 8cqw 0 0;
  padding: 6cqw 4.5cqw 5.5cqw;
  border: 1.5px solid rgba(150, 190, 235, 0.55);
  border-radius: 4.5cqw;
}
.pm-label { margin: 0; font-size: 2.7cqw; letter-spacing: 0.28em; color: #cfe4ff; }
.pm-precos { display: flex; align-items: center; justify-content: space-between; margin-top: 4.5cqw; }
.pm-preco {
  display: flex;
  align-items: center;
  gap: 0.6cqw;
  font-size: 11.5cqw;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pm-preco i { font-style: normal; font-size: 4.2cqw; }
.pm-preco b { font-weight: 400; }
.pm-slider {
  position: relative;
  flex: 1;
  height: 2px;
  margin: 0 3.2cqw;
  background: rgba(180, 215, 250, 0.85);
}
.pm-slider::before, .pm-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.2cqw;
  height: 2.2cqw;
  border-radius: 50%;
  background: #cfe6ff;
  transform: translateY(-50%);
}
.pm-slider::before { left: -1cqw; }
.pm-slider::after { right: -1cqw; }
.pm-nota { margin: 4.5cqw auto 0; max-width: 70cqw; font-size: 3cqw; line-height: 1.45; color: #dbeaff; }

/* benefícios */
.pm-beneficios { list-style: none; margin: 8cqw 0 0; padding: 0; display: flex; flex-direction: column; gap: 5cqw; }
.pm-beneficios li { display: flex; align-items: center; gap: 4.5cqw; text-align: left; }
.pm-beneficios img { width: 17cqw; height: auto; flex: none; }
.pm-beneficios b { display: block; font-size: 3.6cqw; font-weight: 500; letter-spacing: 0.02em; color: #b9d8ff; }
.pm-beneficios p { margin: 1.2cqw 0 0; font-size: 3.3cqw; line-height: 1.4; }

.pm-rodape {
  margin: 9cqw 0 0;
  font-size: 3.4cqw;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.7;
  color: #d1e8ff;
}
.pm-rodape span { color: #67b1ff; }

.pm-cta {
  position: relative;
  margin: 7cqw auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 2cqw;
  padding: 3.4cqw 4.4cqw 3.4cqw 3.4cqw;
  clip-path: polygon(0 0, 93.5% 0, 100% 33%, 100% 100%, 6.5% 100%, 0 67%);
  background: var(--grad-botao);
  border: 1px solid var(--borda-botao);
  font-size: 3cqw;
  font-weight: 500;
  color: var(--branco);
  white-space: nowrap;
}
.pm-cta img { width: 4cqw; height: auto; }

/* contador rolante (../js/contador.js) */
.ctd { display: inline-flex; align-items: center; font-variant-numeric: tabular-nums; }
.ctd-dig { display: inline-block; width: 0.62em; height: 1.1em; overflow: hidden; }
.ctd-fita { display: block; will-change: transform; }
.ctd-fita span { display: block; height: 1.1em; line-height: 1.1em; text-align: center; }
.ctd-sep { display: inline-block; line-height: 1.1em; }

/* vídeos de depoimento (seção "ganhou capacidade") — ../js/videos.js */
.s9m-card .s5-card { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.s9m-card .s5-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14cqw;
  height: 14cqw;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}
.s9m-card .s5-play::after {
  content: "";
  position: absolute;
  left: 57%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 2.4cqw 0 2.4cqw 4cqw;
  border-color: transparent transparent transparent #0a1f45;
}
.s9m-card .s5-play[hidden] { display: none; }

/* Título da seção 8 conforme a referência (seção 8 do Arthur): bloco de largura cheia,
   linhas em azul-gelo, "3 PONTOS" em azul vivo. Tamanhos calibrados p/ fechar na mesma largura. */
.s8m-titulo { top: 7.2%; line-height: 1; }
.s8m-titulo .l0, .s8m-titulo .l1 { color: #cfe4ff; white-space: nowrap; }
.s8m-titulo .l0 b { color: #5aa9ff; }
.s8m-titulo .t-sua  { font-size: 14.6cqw; font-weight: 300; line-height: 0.95; }
.s8m-titulo .t-op   { font-size: 15.1cqw; font-weight: 800; line-height: 0.95; padding-top: 0.4cqw; }
.s8m-titulo .t-prec { font-size: 8cqw;  font-weight: 300; line-height: 1.15; margin-top: 1.6cqw; }
.s8m-titulo .t-prec b { font-weight: 800; }
.s8m-titulo .t-imp  { font-size: 11.96cqw; font-weight: 800; line-height: 1; }

/* ===== Seção 4 (giz) — reorganizada só no texto/cards; o fundo não muda =====
   Texto alinhado à esquerda na margem padrão (7%), sobre a parte vazia do
   quadro; cards da lista com a mesma largura, empilhados na área livre de baixo. */
.s4m-texto { left: 7%; top: 26%; width: 41%; text-align: left; }
.s4m-kicker { font-size: 3.1cqw; letter-spacing: 0.08em; line-height: 1.3; }
.s4m-titulo { margin-top: 1.2cqw; font-size: 6.1cqw; }
.s4m-titulo2 { margin-top: 0.4cqw; font-size: 4.3cqw; letter-spacing: -0.01em; }
.s4m-sub { margin-top: 3cqw; font-size: 3.3cqw; line-height: 1.32; }

.s4m-lista { left: 7%; top: 68.5%; width: 86%; align-items: stretch; gap: 1.8cqw; }
.s4m-lista li {
  width: auto;
  height: 7.4cqw;
  padding: 0 4cqw;
  gap: 2cqw;
  font-size: 3.5cqw;
  background: rgba(3, 22, 64, 0.5);
  border: 1px solid rgba(190, 220, 255, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.s4m-lista img { width: 3.1cqw; }

/* "Quem entrou…": mesmo visual do "Depois da GeraçãoSioz" (largura natural do texto = funil suave, tudo centralizado) */
.s9m-lista { gap: 2.3cqw; }
.s9m-lista li { gap: 1.3cqw; height: 5.6cqw; font-size: 3.1cqw; align-items: center; }
.s9m-lista img { width: 2.6cqw; height: auto; }
