/* Home v10 — design nativo da landing (substitui o export Webflow no miolo).
   Fonte de verdade visual: protótipo Claude Design "Home v10". Tudo em Lexend.
   O header (.menu-1) e o vídeo do hero seguem em hero.css/seutempo.webflow.css;
   aqui vive só o conteúdo novo, isolado sob .home-v10. */

:root {
  --font-sans: "Lexend", "Century Gothic", "Futura", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --ink: #16171f;
  --blue: #515dff;
  --blue-deep: #3d48d9;
  --text-body: #2c2e3a;
  --text-muted: #5a5d6e;
  --text-faint: #9a9ca8;
  --surface-sunken: #f7f7f9;

  --home-max: 1360px;
  --ease-soft: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* A home v10 é branca (o creme site-wide fica nas outras páginas). */
body.body {
  background: #ffffff;
}

/* ---------- reset local (isola do CSS base do Webflow) ---------- */
.home-v10,
.home-v10 *,
.home-v10 *::before,
.home-v10 *::after {
  box-sizing: border-box;
}
.home-v10 {
  font-family: var(--font-sans);
  color: var(--ink);
}
/* :where() = especificidade zero, então as margens das classes de componente
   (inclusive margin:auto de centralização) vencem por ordem de origem. */
.home-v10 :where(h1, h2, h3, h4, p, dl, dd) {
  margin: 0;
}
.home-v10 a {
  color: inherit;
  text-decoration: none;
}
.home-v10 em {
  font-style: italic;
}

.home-wrap {
  max-width: var(--home-max);
  margin: 0 auto;
  padding-left: 48px;
  padding-right: 48px;
}

/* âncoras vindas do header das páginas internas (#como-funciona, #tarefas, #faq)
   não param embaixo da nav fixa. */
#como-funciona,
#tarefas,
#faq {
  scroll-margin-top: 80px;
}

/* revelação suave */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-soft), transform 1s var(--ease-soft);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ============================================================
   HERO v10 (texto novo; o vídeo/scrim/nav vêm de hero.css)
   ============================================================ */
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.hero-v10 .conteudo-hero {
  max-width: var(--home-max);
  padding: 0 48px 84px;
}
.hero-h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--fw-light);
  font-size: clamp(52px, 6vw, 92px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #ffffff;
  animation: riseIn 1.2s 0.2s var(--ease-soft) both;
}
.hero-p {
  max-width: 440px;
  margin: 26px 0 0;
  font-weight: var(--fw-regular);
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  animation: riseIn 1.2s 0.4s var(--ease-soft) both;
}

/* ============================================================
   1 · A CONVERSA — cartão azul
   ============================================================ */
.conversa {
  padding: 140px 48px 0;
}
.conversa-card {
  max-width: var(--home-max);
  margin: 0 auto;
  border-radius: 44px;
  background: var(--blue);
  overflow: hidden;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Desktop: a seção estica e o cartão gruda (sticky) num ponto limpo; os passos
   avançam com o scroll dentro do trecho pinado e liberam depois do 3º.
   A entrada/saída é sticky nativo (suave); o JS só troca o passo ativo. */
@media screen and (min-width: 861px) {
  .conversa {
    height: 260vh;
  }
  .conversa-card {
    position: sticky;
    top: 32px;
  }
  /* altura fixa da lista: abrir/trocar passo não reflowa → telefone parado. */
  .passo-list {
    height: 400px;
  }
  /* sobe o telefone um pouco do rodapé do cartão */
  .conversa-media {
    padding-bottom: 44px;
  }
}
.conversa-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 48px;
  flex: 1;
}
.conversa-copy {
  min-width: 0;
  padding: 88px 0 88px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.conversa-title {
  font-weight: var(--fw-light);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #fff;
}
.passo-list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
}
.passo-row {
  cursor: pointer;
  padding: 26px 28px;
  border-radius: 22px;
  opacity: 0.5;
  transition: background-color 0.45s ease-out, opacity 0.45s ease-out;
}
.passo-row.is-active {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.12);
}
.passo-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.passo-index {
  flex: none;
  font-weight: var(--fw-light);
  font-size: 15px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.7);
}
.passo-name {
  font-weight: var(--fw-regular);
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.3;
  color: #fff;
}
.passo-desc {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  padding-left: 35px;
  max-width: 420px;
  font-weight: var(--fw-light);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  transition: max-height 0.5s var(--ease-soft), opacity 0.5s ease-out,
    margin-top 0.5s ease-out;
}
.passo-row.is-active .passo-desc {
  max-height: 160px;
  opacity: 1;
  margin-top: 10px;
}
/* descrição do passo ativo — só no mobile (chips horizontais) */
.passo-desc-m {
  display: none;
}
.conversa-media {
  min-width: 0;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
/* device mockups transparentes: a moldura do aparelho é o frame — sem cartão,
   sem clip. Ancorados na base pra "emergir" do rodapé do cartão azul. */
.passo-stack {
  width: 100%;
  max-width: 420px;
  min-width: 0;
}
.passo-frame {
  width: 100%;
  height: min(72vh, 680px);
  position: relative;
}
.passo-slot {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-out;
}
.passo-slot.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.passo-slot img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  filter: drop-shadow(0 34px 60px rgba(22, 23, 31, 0.4));
}

/* ============================================================
   2 · PARTE CHATA — grade de serviços (flip no hover)
   ============================================================ */
.chata {
  padding: 180px 0 0;
  overflow: hidden;
}
.chata-head {
  text-align: center;
}
.chata-title {
  font-weight: var(--fw-light);
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.chata-title em {
  color: var(--blue);
}
.chata-sub {
  max-width: 460px;
  margin: 22px auto 0;
  font-weight: var(--fw-regular);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 88px;
}
.svc-card {
  min-width: 0;
  height: 250px;
  perspective: 1400px;
}
.svc-card--wide {
  grid-column: 1 / -1;
  height: 180px;
}
.svc-card--extra {
  display: none;
}
.svc-grid.is-expanded .svc-card--extra {
  display: block;
}
.svc-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease-soft);
  transform-style: preserve-3d;
  /* estabiliza o flip: sem promoção pra camada própria o rotateY treme */
  will-change: transform;
}
.svc-card:hover .svc-inner {
  transform: rotateY(180deg);
}
.svc-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* corta o serrilhado da face traseira durante a rotação */
  transform: translateZ(0);
}
.svc-front {
  padding: 26px 28px;
  background: var(--surface-sunken);
}
.svc-card--wide .svc-front {
  background: var(--blue);
}
.svc-back {
  transform: rotateY(180deg);
  padding: 32px;
  background: var(--blue);
}
.svc-card--wide .svc-back {
  transform: rotateY(180deg);
  background: var(--blue-deep);
}
.svc-icon {
  width: 30px;
  height: 30px;
  overflow: hidden;
  color: var(--blue);
}
.svc-card--wide .svc-icon {
  color: #fff;
}
.svc-icon img {
  width: 112%;
  height: 112%;
  margin: -6% 0 0 -6%;
  object-fit: contain;
  display: block;
}
.svc-icon svg {
  width: 34px;
  height: 34px;
}
.svc-name {
  font-weight: var(--fw-regular);
  font-size: 19px;
  line-height: 1.3;
}
.svc-card--wide .svc-name {
  color: #fff;
}
.svc-desc {
  margin: 8px 0 0;
  font-weight: var(--fw-light);
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}
.svc-card--wide .svc-desc {
  color: rgba(255, 255, 255, 0.78);
}
.svc-pedido {
  font-weight: var(--fw-light);
  font-size: 20px;
  line-height: 1.5;
  color: #fff;
  font-style: italic;
}
.svc-resolvido {
  font-weight: var(--fw-regular);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}
.svc-resposta {
  font-weight: var(--fw-regular);
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
}
.svc-more-row {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.svc-more {
  background: none;
  border: 1px solid rgba(22, 23, 31, 0.18);
  border-radius: 999px;
  padding: 15px 28px;
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: 14px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.25s ease-out, color 0.25s ease-out;
}
.svc-more:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.svc-grid.is-expanded + .svc-more-row {
  display: none;
}

/* ============================================================
   3 · CONTA TEMPO — copy | vídeo + grade estática
   ============================================================ */
.conta {
  padding: 180px 48px 0;
}
.conta-top {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: center;
}
.conta-title {
  margin: 20px 0 0;
  font-weight: var(--fw-light);
  font-size: clamp(44px, 4.6vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.conta-title span {
  color: var(--blue);
}
.conta-lead {
  max-width: 420px;
  margin: 28px 0 0;
  font-weight: var(--fw-light);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}
.conta-video {
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(22, 23, 31, 0.12);
}
.conta-video video {
  width: 100%;
  height: auto;
  display: block;
}
.conta-grid {
  max-width: var(--home-max);
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
/* cards estáticos: ícone + nome + descrição juntos, sem flip */
.conta-feat {
  min-width: 0;
  border-radius: 24px;
  padding: 28px;
  background: var(--surface-sunken);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.conta-feat-icon {
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.conta-feat-icon img {
  width: 112%;
  height: 112%;
  margin: -6% 0 0 -6%;
  object-fit: contain;
}
.conta-feat-icon svg {
  width: 28px;
  height: 28px;
}
.conta-feat-name {
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 1.3;
}
.conta-feat-desc {
  font-weight: var(--fw-light);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ============================================================
   4 · QUEM JÁ VIVE COM TEMPO — marquee de logos
   ============================================================ */
@keyframes lane {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.viv {
  padding: 170px 0 0;
}
.viv-title {
  text-align: center;
  font-weight: var(--fw-light);
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.viv-track {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}
.viv-lane {
  display: flex;
  gap: 88px;
  width: max-content;
  align-items: center;
  animation: lane 48s linear infinite;
}
.viv-lane img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 0.62;
  filter: grayscale(1);
}

/* ============================================================
   5 · QUEM CUIDA DE VOCÊ — fluxo 01→04
   ============================================================ */
.cuida {
  padding: 180px 48px 0;
}
.cuida-inner {
  max-width: var(--home-max);
  margin: 0 auto;
}
.cuida-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cuida-title {
  font-weight: var(--fw-light);
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cuida-title span {
  color: var(--blue);
}
.cuida-sub {
  max-width: 520px;
  margin: 24px auto 0;
  font-weight: var(--fw-light);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}
.cuida-flow {
  display: flex;
  align-items: stretch;
  margin-top: 104px;
}
.flow-step {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 37px;
}
.flow-num {
  font-weight: var(--fw-regular);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.3em;
  color: var(--text-faint);
}
.flow-art {
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 36px;
}
.flow-art img {
  height: 118px;
  width: auto;
  display: block;
}
.flow-h {
  margin: 32px 0 0;
  font-weight: var(--fw-regular);
  font-size: 18px;
  line-height: 1.4;
}
.flow-p {
  max-width: 240px;
  margin: 14px 0 0;
  font-weight: var(--fw-light);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-muted);
}
.flow-arrow {
  flex: none;
  width: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 133px;
}
.flow-box {
  flex: 2.2;
  min-width: 0;
  position: relative;
  border: 1.5px dashed rgba(81, 93, 255, 0.4);
  border-radius: 24px;
  padding: 36px 8px 32px;
}
.flow-box-label {
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 16px;
  font-weight: var(--fw-regular);
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
}
.flow-box-inner {
  display: flex;
  align-items: stretch;
}
/* dentro da moldura os passos já herdam o padding dela — zera o offset extra
   pra 03/04 alinharem com 01/02. */
.flow-box .flow-step {
  padding-top: 0;
}
.flow-arrow--inner {
  width: 56px;
  padding-top: 96px;
}

/* ============================================================
   6 · + TEMPO — 3 fotos
   ============================================================ */
.mtempo {
  padding: 180px 48px 0;
}
.mtempo-grid {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.mtempo-photo {
  width: 100%;
  height: 440px;
  border-radius: 24px;
  overflow: hidden;
}
.mtempo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mtempo-cap {
  padding: 24px 4px 0;
  text-align: center;
}
.mtempo-cap b {
  display: block;
  font-weight: var(--fw-light);
  font-size: 22px;
  line-height: 1.35;
  color: var(--ink);
}
.mtempo-cap i {
  display: block;
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 22px;
  line-height: 1.35;
  color: var(--blue);
}

/* ============================================================
   7 · OPINIÃO — carrossel lento
   ============================================================ */
.opin {
  padding: 180px 0 0;
}
.opin-title {
  text-align: center;
  padding: 0 48px;
  font-weight: var(--fw-light);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.opin-track {
  margin-top: 72px;
  overflow: hidden;
}
.opin-lane {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 4px 24px;
  align-items: stretch;
  animation: lane 120s linear infinite;
}
.opin-track:hover .opin-lane {
  animation-play-state: paused;
}
.opin-card {
  flex: none;
  width: 560px;
  border: 1px solid rgba(22, 23, 31, 0.1);
  border-radius: 24px;
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  background: #fff;
}
.opin-quote {
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--text-body);
}
.opin-name {
  font-weight: var(--fw-medium);
  font-size: 17px;
  line-height: 1.3;
  margin-top: 36px;
}
.opin-role {
  font-weight: var(--fw-regular);
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ============================================================
   9 · FAQ
   ============================================================ */
.faq2 {
  padding: 180px 48px 0;
}
.faq2-grid {
  max-width: var(--home-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 96px;
  align-items: start;
}
.faq2-title {
  font-weight: var(--fw-light);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.faq2-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq2-item {
  border: 1px solid rgba(22, 23, 31, 0.18);
  border-radius: 20px;
  padding: 26px 32px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.25s ease-out;
}
.faq2-item:hover {
  border-color: var(--blue);
}
.faq2-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq2-q-text {
  font-weight: var(--fw-medium);
  font-size: 16.5px;
  line-height: 1.4;
}
.faq2-mark {
  flex: none;
  color: var(--blue);
  font-weight: var(--fw-light);
  font-size: 26px;
  line-height: 1;
}
.faq2-a {
  overflow: hidden;
  max-height: 0;
  margin-top: 0;
  max-width: 560px;
  font-weight: var(--fw-regular);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  transition: max-height 0.4s var(--ease-soft), margin-top 0.4s ease-out;
}
.faq2-item.is-open .faq2-a {
  max-height: 420px;
  margin-top: 14px;
}
.faq2-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 22px 32px;
  font-weight: var(--fw-medium);
  font-size: 16px;
  line-height: 1;
  margin-top: 8px;
  transition: background 0.25s ease-out;
}
.faq2-cta:hover {
  background: var(--blue-deep);
  color: #fff;
}

/* ============================================================
   pill flutuante
   ============================================================ */
.float-cta {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 140%);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 999px;
  padding: 9px 9px 9px 28px;
  box-shadow: 0 14px 44px rgba(22, 23, 31, 0.18);
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: 15.5px;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.55s var(--ease-soft), opacity 0.55s ease-out;
}
.float-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.float-cta-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  line-height: 1;
}

/* ============================================================
   CTA final + rodapé
   ============================================================ */
.finale {
  position: relative;
  margin-top: 180px;
  overflow: hidden;
  background: #16171f;
}
.finale a {
  text-decoration: none;
}
.finale-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.finale-scrim-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 11, 16, 0.92) 0%,
    rgba(10, 11, 16, 0.55) 45%,
    rgba(10, 11, 16, 0.15) 75%,
    rgba(10, 11, 16, 0) 100%
  );
}
/* scrim vertical suave: escurece só o bastante pra legibilidade do texto do
   footer sem apagar a foto — ela continua sendo o fundo do footer. */
.finale-scrim-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 11, 16, 0) 32%,
    rgba(10, 11, 16, 0.32) 64%,
    rgba(10, 11, 16, 0.68) 100%
  );
}
.finale-inner {
  position: relative;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 150px 48px 96px;
}
.finale-copy {
  max-width: 520px;
}
.finale-title {
  font-weight: var(--fw-light);
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: #fff;
}
.finale-title span {
  font-weight: var(--fw-medium);
}
.finale-cta {
  margin-top: 64px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 17px 30px;
  font-weight: var(--fw-medium);
  font-size: 15px;
  line-height: 1;
  transition: background 0.25s ease-out;
}
.finale-cta:hover {
  background: var(--blue-deep);
  color: #fff;
}
.finale-cta span {
  font-size: 17px;
  line-height: 1;
}

/* O footer em si vive em footer.css (fonte única). Na home ele fica dentro do
   banner .finale (já escuro), então sem fundo próprio e com menos topo. */
.finale .site-footer {
  background: transparent;
  padding: 0 48px 40px;
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media screen and (max-width: 1024px) {
  .conversa-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .conversa-copy {
    padding: 64px 48px 40px;
  }
  .conversa-media {
    justify-content: center;
  }
  .conta-top {
    gap: 48px;
  }
  .faq2-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media screen and (max-width: 860px) {
  .home-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .conversa,
  .conta,
  .cuida,
  .mtempo,
  .faq2 {
    padding-left: 24px;
    padding-right: 24px;
  }
  .chata,
  .viv,
  .opin {
    padding-top: 110px;
  }
  .conversa {
    padding-top: 100px;
  }
  .conta,
  .cuida,
  .mtempo,
  .faq2 {
    padding-top: 110px;
  }
  .conversa-card {
    min-height: 0;
    border-radius: 32px;
  }
  /* passos no mobile: número+título em fileira; tocar troca descrição e print
     no lugar (sem precisar subir depois de ver o print). */
  .passo-list {
    flex-direction: row;
    gap: 10px;
    margin-top: 32px;
    height: auto;
  }
  .passo-row {
    flex: 1;
    min-width: 0;
    padding: 16px 14px;
    border-radius: 16px;
  }
  .passo-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .passo-index {
    font-size: 22px;
  }
  .passo-name {
    font-size: 14px;
    line-height: 1.3;
  }
  /* a descrição inline (acordeão do desktop) some; usa a versão mobile única */
  .passo-row .passo-desc {
    display: none;
  }
  .passo-desc-m {
    display: block;
    margin: 22px 0 0;
    /* reserva a altura da maior descrição pra o telefone não deslizar ao trocar */
    min-height: 120px;
    font: var(--fw-light) 15px/1.65 var(--font-sans);
    color: rgba(255, 255, 255, 0.8);
  }
  .conversa-media {
    margin-top: 8px;
  }
  .passo-frame {
    height: min(56vh, 480px);
  }
  .svc-grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 56px;
  }
  .conta-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .conta-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mtempo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mtempo-photo {
    height: 380px;
  }
  /* fluxo em coluna: some as setas e a moldura vira empilhamento */
  .cuida-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 48px;
    margin-top: 64px;
  }
  .flow-arrow {
    display: none;
  }
  .flow-box {
    flex: 1;
  }
  .flow-box-inner {
    flex-direction: column;
    gap: 48px;
  }
  .finale-inner {
    padding: 120px 24px 100px;
  }
  .finale-scrim-h {
    background: linear-gradient(
      90deg,
      rgba(10, 11, 16, 0.92) 0%,
      rgba(10, 11, 16, 0.55) 100%
    );
  }
  .finale .site-footer {
    padding: 0 24px 32px;
  }
  .opin-card {
    width: 82vw;
    max-width: 480px;
    padding: 32px 30px;
    min-height: 340px;
  }
}

@media screen and (max-width: 560px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .conta-grid {
    grid-template-columns: 1fr;
  }
  .conversa-copy {
    padding: 48px 28px 32px;
  }
  .passo-stack {
    max-width: 300px;
  }
}

/* respeita quem pediu menos movimento */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-h1,
  .hero-p {
    animation: none;
  }
  .viv-lane,
  .opin-lane {
    animation: none;
  }
  .svc-inner {
    transition: none;
  }
}
