/* ─────────────────────────────────────────────
   Mobile UX overrides — passa por todas as seções e ajusta
   tipografia, padding e elementos que ficaram desconfortáveis
   no viewport <=920px. Carregado por último.
   ───────────────────────────────────────────── */

@media (max-width: 760px) {
  /* Container usa o gutter que já reduz, mas garantimos padding mínimo
     e impedimos qualquer overflow horizontal causado por section. */
  body {
    overflow-x: hidden;
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
    padding: 84px 0 12px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1.08;
  }
  .hero__sub {
    font-size: 15px;
    line-height: 1.55;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__ctas .btn-primary {
    width: 100%;
    justify-content: center;
  }
  .hero__ctas .btn-link {
    text-align: center;
  }
  .hero__signal {
    display: none;
  }
  .hero__visual {
    display: none;
  }
  .ticker {
    padding: 14px 0;
  }

  /* ── Ticker ── */
  .ticker__row {
    gap: 12px 14px;
  }
  .tk-item__num {
    font-size: 20px;
  }
  .tk-item__lbl {
    font-size: 9.5px;
    line-height: 1.3;
  }

  /* ── Pivot (frase grande) ── */
  .pivot {
    padding: 56px 0 16px;
  }
  .demo {
    padding-top: 12px;
  }
  .demo__head {
    margin-bottom: 24px;
  }
  .pivot__phrase {
    font-size: clamp(28px, 7.5vw, 40px) !important;
    line-height: 1.18 !important;
  }

  /* ── Profundidade cards (Decifrado) ── */
  .prof-card {
    padding: 22px;
    gap: 16px;
  }
  .prof-card__visual {
    padding: 14px;
  }
  .prof-card__title {
    font-size: 18px;
  }
  .prof-card__desc {
    font-size: 13.5px;
  }
  .prof-card__num {
    font-size: 10px;
  }

  /* ── Pricing cards ── */
  .pricing {
    padding: 80px 0;
  }
  .pricing h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.15 !important;
  }
  .plan-card {
    padding: 26px;
  }
  .plan-card__cta {
    width: 100%;
    justify-content: center;
  }

  /* ── FAQ ── */
  .faq h2,
  .precta__phrase {
    font-size: clamp(28px, 7.5vw, 44px) !important;
    line-height: 1.18 !important;
  }
  .faq-item__head {
    font-size: 15px;
    padding: 16px 14px;
  }
  .faq-item__answer {
    font-size: 14px;
  }

  /* ── Pre-CTA ── */
  .precta {
    padding: 80px 0;
  }
  .precta__cta {
    width: 100%;
    justify-content: center;
    font-size: 15px;
  }

  /* ── Footer ── */
  .foot {
    padding: 48px 0 24px;
  }
  .foot__top {
    gap: 28px;
    padding-bottom: 28px;
  }
  .foot__corp {
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }
  .foot__bottom {
    font-size: 11.5px;
  }

  /* ── Quebra (compare simulado vs prova) ── */
  .compare {
    gap: 16px;
  }
  .compare__num {
    font-size: 24px;
  }
  .compare__divider {
    width: 1px;
  }

  /* ── Mecanismo bar rows ── */
  .bar-row__lbl {
    font-size: 13px;
  }

  /* ── Experiência (Hoje · ao vivo) ── */
  .experiencia h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.18 !important;
  }

  /* ── Prova (depoimento) ── */
  .prova h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
    line-height: 1.18 !important;
  }
  .prova__quote {
    font-size: 18px;
  }

  /* Click targets — mínimo 44px alto pra UX touch */
  .nav__cta,
  .btn-primary,
  .plan-card__cta,
  .precta__cta {
    min-height: 44px;
  }

  /* Anchor offset: o nav fica fixed, ao usar #anchor o conteúdo vai
     pro topo e fica atrás da nav. Compensa com scroll-margin. */
  section[id],
  [id^="step-"],
  #top {
    scroll-margin-top: 76px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hero h1 {
    font-size: clamp(28px, 9vw, 36px);
  }
  .ticker__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tk-item__num {
    font-size: 18px;
  }
}
