/* Keyframe animations used across the page.
   - animationIn: sequenced entrance reveal (blur + slide up).
     Apply with the Tailwind class [animation:animationIn_0.8s_ease-out_0.1s_both]
   - progress-shimmer: sliding highlight over filled progress bars
     in the product preview section. */

@keyframes animationIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
  }
}

@keyframes progress-shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Callout da dobra: brilho suave + gradiente animável no scroll */
@keyframes callout-glow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}

.pain-callout-glow {
  animation: callout-glow 5s ease-in-out infinite;
}

/* Gradiente do accent = mesmo da hero (Tailwind: from-cyan-300 → to-blue-500).
   O scroll anima só o filter, pra não quebrar o degradê. */
.pain-callout-accent {
  -webkit-background-clip: text;
  background-clip: text;
}

.pain-callout-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
  will-change: box-shadow, border-color;
}

.pain-callout-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.06);
}

/* Hero: já nasce no estado "aceso" (borda + glow cyan) */
.hero-desc-card:hover {
  border-color: rgba(125, 211, 252, 0.55) !important;
  box-shadow:
    0 32px 90px -20px rgba(0, 0, 0, 0.7),
    0 0 80px -6px rgba(34, 211, 238, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

@keyframes hero-sheen {
  0% { transform: translateX(-40%) skewX(-12deg); opacity: 0.1; }
  40% { opacity: 0.45; }
  100% { transform: translateX(260%) skewX(-12deg); opacity: 0.1; }
}

.hero-desc .pain-callout-sheen,
.brand-logo-card .pain-callout-sheen {
  animation: hero-sheen 4.5s ease-in-out infinite;
}

/* CTA "Baixar App" nas dobras */
/* Logo no card: respiro ~3mm em cada lado (não corta o “O” nem o celular) */
.brand-logo-card {
  padding: 0.45rem 0.65rem !important; /* ~3–3.5mm */
}

@media (min-width: 640px) {
  .brand-logo-card {
    padding: 0.6rem 0.85rem !important;
  }
}

.brand-logo-img {
  transform: scale(0.94);
  transform-origin: center center;
}

.section-download-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-radius: 9999px;
  border: 1px solid rgba(165, 243, 252, 0.2);
  background: #cffafe;
  padding: 0.55rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.15;
  color: #020617;
  box-shadow: 0 10px 25px -8px rgba(8, 47, 73, 0.35);
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  text-align: center;
}

.section-download-btn::after {
  content: "7 dias grátis";
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.78;
  line-height: 1;
}

.section-download-btn:hover {
  transform: scale(1.03);
  border-color: rgba(165, 243, 252, 0.35);
  background: #ecfeff;
  box-shadow: 0 12px 28px -8px rgba(8, 47, 73, 0.4);
}

/* Teste: CTA do cabeçalho em duas linhas ("Acesse Já" + "7 dias grátis").
   Só o botão fixo do topo por enquanto; os demais "Acesse Já" da página
   continuam com o estilo de linha única até validação.
   Tamanhos 10% maiores que a primeira versão (botão + as duas fontes). */
.section-download-btn.header-cta-trial {
  flex-direction: column;
  gap: 0;
  padding: 0.44rem 0.935rem;
  line-height: 1.15;
}

.header-cta-trial .header-cta-main {
  font-size: 0.825rem;
  font-weight: 600;
}

.header-cta-trial .header-cta-sub {
  font-size: 0.619rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(2, 6, 23, 0.62);
}

@media (min-width: 640px) {
  .section-download-btn.header-cta-trial {
    padding: 0.605rem 1.21rem;
  }

  .header-cta-trial .header-cta-main {
    font-size: 0.9625rem;
  }

  .header-cta-trial .header-cta-sub {
    font-size: 0.756rem;
  }
}

/* Mesma ideia (Acesse Já + 7 dias grátis), agora no resto da página:
   os 6 CTAs laterais das dobras e o CTA final antes dos depoimentos.
   Reaproveita os mesmos tamanhos já validados do cabeçalho. */
.section-download-btn.cta-two-line {
  flex-direction: column;
  gap: 0;
  padding: 0.44rem 0.935rem;
  line-height: 1.15;
}

.cta-two-line .cta-two-line-main {
  font-size: 0.825rem;
  font-weight: 600;
}

.cta-two-line .cta-two-line-sub {
  display: block;
  font-size: 0.619rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(2, 6, 23, 0.62);
}

@media (min-width: 640px) {
  .section-download-btn.cta-two-line {
    padding: 0.605rem 1.21rem;
  }

  .cta-two-line .cta-two-line-main {
    font-size: 0.9625rem;
  }

  .cta-two-line .cta-two-line-sub {
    font-size: 0.756rem;
  }
}

/* Variante maior para os dois CTAs mais proeminentes: o principal do hero
   (com ícone de seta) e o do bloco final de download. Mantém o padding e o
   tamanho da linha principal que cada um já tinha; só empilha e acrescenta
   a linha "7 dias grátis". */
.cta-two-line-lg {
  flex-direction: column;
  gap: 0.15rem;
  line-height: 1.15;
}

.cta-two-line-lg .cta-two-line-main {
  font-weight: 600;
}

.cta-two-line-lg .cta-two-line-sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(2, 6, 23, 0.6);
}

@media (min-width: 640px) {
  .cta-two-line-lg .cta-two-line-sub {
    font-size: 0.8rem;
  }
}

/* Baixar App + hambúrguer fixos ao rolar (só até 1023px).
   A partir de 1024px cada dobra tem o seu próprio "Acesse Já", então o do topo
   rola junto com o cabeçalho para não aparecerem dois botões ao mesmo tempo. */
.header-actions-fixed {
  position: fixed;
  top: 32px; /* Centro nav (40px) + topo header (12px) - centro botão (~21px, +10%) = 32px */
  right: max(0.75rem, calc((100vw - 1360px) / 2 + 0.75rem));
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .header-actions-fixed {
    top: 60px; /* Centro nav (56px) + topo header (24px) - centro botão (~26px, +10%) = 60px */
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .header-actions-fixed {
    /* Absolute no topo do documento: rola junto com o cabeçalho.
       Faixa da mesma altura do nav (lg:h-32) a partir do topo do header
       (lg:top-8), com o botão no centro vertical — mesma linha do logo. */
    position: absolute;
    top: 1.25rem;
    height: 5.75rem;
    align-items: center;
  }
}

/* CTA da nav (desktop): some no celular/tablet. O .btn-hero-primary do
   ds-skin define display:inline-flex e ganhava do Tailwind `hidden`. */
.header-nav-cta-slot {
  display: none !important;
}

/* Desktop largo: 3 colunas (logo original | menu | botão), mesma linha,
   mesmas distâncias nas 4 folgas. Não reduz a logo. Celular/tablet intactos. */
@media (min-width: 1280px) {
  .header-nav-cta-slot {
    display: inline-flex !important;
  }
  #header nav {
    max-width: 1360px;
    gap: 2.5rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  #header .brand-logo-wrap {
    margin-left: 0 !important;
  }

  .header-nav-links {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    pointer-events: auto;
  }

  .header-nav-links-inner {
    margin-left: 0 !important;
    gap: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    max-width: 100%;
  }

  .header-nav-links-inner a {
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

/* WhatsApp suporte — fixo canto inferior direito. Docs: docs/whatsapp-suporte.md */
.whatsapp-fab {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 72;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #25d366;
  color: #0b1220;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow:
    0 12px 32px -10px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(37, 211, 102, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
  box-shadow:
    0 16px 36px -10px rgba(0, 0, 0, 0.6),
    0 0 24px -4px rgba(37, 211, 102, 0.45);
}

.whatsapp-fab:focus-visible {
  outline: 2px solid #a5f3fc;
  outline-offset: 3px;
}

.whatsapp-fab iconify-icon {
  display: block;
  flex-shrink: 0;
}

.duvidas-fab {
  position: fixed;
  right: max(0.85rem, env(safe-area-inset-right));
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  z-index: 72;
}

.duvidas-fab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(103, 232, 249, 0.35);
  background: #22d3ee;
  color: #082f49;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow:
    0 12px 32px -10px rgba(0, 0, 0, 0.55),
    0 0 24px -6px rgba(34, 211, 238, 0.45);
  cursor: pointer;
}

.duvidas-fab-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.duvidas-fab-btn:hover {
  filter: brightness(1.05);
}

@media (max-width: 639px) {
  .duvidas-fab-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }

  .duvidas-fab-icon {
    width: 24px;
    height: 24px;
  }

  .duvidas-fab-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.duvidas-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  width: min(22rem, calc(100vw - 1.7rem));
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d1420;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}

.duvidas-panel[hidden] {
  display: none;
}

.duvidas-panel h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.duvidas-panel p.hint {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #94a3b8;
}

.duvidas-panel label {
  display: block;
  margin-bottom: 0.55rem;
}

.duvidas-panel label span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.7rem;
  color: #cbd5e1;
}

.duvidas-panel input,
.duvidas-panel textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080c14;
  color: #f8fafc;
  padding: 0.55rem 0.7rem;
  font-size: 0.875rem;
}

.duvidas-panel textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.duvidas-panel .hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.duvidas-panel button[type="submit"] {
  width: 100%;
  margin-top: 0.35rem;
  border: 0;
  border-radius: 9999px;
  padding: 0.65rem 1rem;
  background: #22d3ee;
  color: #082f49;
  font-weight: 700;
  cursor: pointer;
}

.duvidas-panel .status {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  color: #67e8f9;
}

.duvidas-panel .status.err {
  color: #fda4af;
}

/* Menu hambúrguer (mobile) — ancorado nos botões fixos */
.mobile-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  left: auto;
  width: min(20.5rem, calc(100vw - 1.5rem));
  z-index: 81;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-panel {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.92);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-menu-link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus-visible {
  background: rgba(34, 211, 238, 0.1);
  color: #a5f3fc;
  outline: none;
}

.mobile-menu-link--cta {
  margin-top: 0.35rem;
  text-align: center;
  background: #cffafe;
  color: #020617;
}

.mobile-menu-link--cta:hover,
.mobile-menu-link--cta:focus-visible {
  background: #ecfeff;
  color: #020617;
}

body.mobile-menu-open,
body.coming-soon-open {
  overflow: hidden;
}

/* Modal Em breve / Instagram */
.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.coming-soon-modal[hidden] {
  display: none;
}

.coming-soon-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.coming-soon-dialog {
  position: relative;
  z-index: 1;
  width: min(28rem, 100%);
}

.coming-soon-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(11, 18, 32, 0.75);
  color: #cbd5e1;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.coming-soon-close:hover {
  color: #fff;
  border-color: rgba(103, 232, 249, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-card .pain-callout-sheen {
    animation: none;
  }
}

/* Botão no meio do vão: fim do card → borda do site
   (right negativo compensa o padding da section até a border-x) */
.callout-with-cta {
  position: relative;
  margin-bottom: 2.25rem;
}

.callout-cta-slot {
  display: none;
}

.callout-cta-mobile {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}

/* Celular: só o Baixar App fixo do topo; compacta as dobras */
@media (max-width: 1023px) {
  .callout-cta-mobile {
    display: none;
  }

  .callout-with-cta {
    margin-bottom: 1.5rem;
  }

  /* Esconde os Baixar App do conteúdo; mantém o fixo do cabeçalho */
  main .section-download-btn {
    display: none !important;
  }

  #planos .planos-cta-stack .section-download-btn {
    display: flex !important;
    width: 100%;
  }

  #dores .callout-with-cta {
    margin-bottom: 5.5rem;
  }

  #dores .pain-visual img {
    display: block;
    width: 100%;
    margin-top: -33%;
    margin-bottom: -29%;
  }
}

/* Planos: selo pequeno no centro; Começar agora maior embaixo, mesmo eixo */
#planos .planos-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
  gap: 0.875rem;
}

#planos .planos-economia {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
  border-radius: 9999px;
  border: 1px solid rgba(110, 231, 183, 0.3);
  background: rgba(52, 211, 153, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgb(167, 243, 208);
}

#planos .planos-cta-stack .section-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 0.5rem;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding: 0.9rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  white-space: nowrap;
  color: #fafafa !important;
}

@media (min-width: 1024px) {
  .callout-with-cta {
    margin-bottom: calc(2.5rem + 5mm);
  }

  .callout-cta-slot {
    position: absolute;
    top: 0;
    bottom: 0;
    /* Estende até a borda do site (section lg:px-10 = 2.5rem) */
    right: -2.5rem;
    /* Início no fim do card centralizado (max-w-4xl / 2 = 28rem) */
    left: calc(50% + 28rem);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 20;
  }

  .callout-cta-slot .section-download-btn {
    pointer-events: auto;
  }

  .callout-cta-mobile {
    display: none;
  }
}

/* Se a tela for xl e a seção usar o mesmo padding */
@media (min-width: 1280px) {
  .callout-cta-slot {
    right: -2.5rem;
  }
}

/* Dobra Orçamento PDF */
.pdf-flow-step,
.pdf-before,
.pdf-after {
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.pdf-flow-step:hover {
  transform: translateY(-3px);
}

.pdf-after:hover {
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 20px 50px -24px rgba(16, 185, 129, 0.35);
}

.pdf-before:hover {
  border-color: rgba(248, 113, 113, 0.3);
}

/* Dobra Financeiro — barras do gráfico */
.fin-bar,
.fin-cat-bar {
  transform-origin: inherit;
  will-change: transform;
}

.fin-kpi {
  transition: transform 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.fin-kpi:hover {
  transform: translateY(-3px);
}

/* Dobra Assistente IA — ondas e pulso */
.ai-wave {
  display: block;
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(to top, #22d3ee, #6ee7b7);
  transform-origin: center;
  animation: ai-wave-pulse 0.9s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

@media (min-width: 640px) {
  .ai-wave {
    width: 4px;
    height: 16px;
  }
}

@keyframes ai-wave-pulse {
  0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
  50% { transform: scaleY(2.8); opacity: 1; }
}

.ai-pulse {
  animation: ai-glow-pulse 2.4s ease-in-out infinite;
}

.ai-pulse-slow {
  animation: ai-glow-pulse 3.2s ease-in-out infinite;
}

@keyframes ai-glow-pulse {
  0%, 100% { opacity: 0.35; transform: scale(0.95); }
  50% { opacity: 0.9; transform: scale(1.08); }
}

.ai-speech-dot {
  animation: ai-dot-blink 1.2s ease-in-out infinite;
}

@keyframes ai-dot-blink {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

.ai-thinking span {
  animation: ai-think 1.1s ease-in-out infinite;
}

.ai-thinking span:nth-child(2) { animation-delay: 0.15s; }
.ai-thinking span:nth-child(3) { animation-delay: 0.3s; }

@keyframes ai-think {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-3px); opacity: 1; }
}

.ai-orb {
  animation: ai-orb-spin 14s linear infinite;
}

@keyframes ai-orb-spin {
  from { box-shadow: 0 0 50px rgba(52, 211, 153, 0.22), inset 0 0 20px rgba(34, 211, 238, 0.08); }
  50% { box-shadow: 0 0 70px rgba(34, 211, 238, 0.32), inset 0 0 28px rgba(52, 211, 153, 0.12); }
  to { box-shadow: 0 0 50px rgba(52, 211, 153, 0.22), inset 0 0 20px rgba(34, 211, 238, 0.08); }
}

/* Dobra DAS MEI — código de barras */
.das-barcode span {
  display: block;
  width: 2px;
  height: var(--h, 60%);
  background: #e2e8f0;
  border-radius: 1px;
  flex-shrink: 0;
  transform-origin: bottom center;
}

.das-barcode span:nth-child(odd) {
  width: 3px;
  background: #f8fafc;
}

/* Depoimentos — carrossel infinito (movimento via JS; CSS só layout) */
.reviews-marquee {
  overflow: hidden;
  margin-top: 0.5rem;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.reviews-marquee.is-dragging {
  cursor: grabbing;
}

.reviews-track {
  display: flex;
  width: max-content;
  gap: 1.5rem;
  padding-inline: 1.25rem;
  will-change: transform;
  /* JS controla o translateX — CSS animation travava no mobile por :hover sticky */
}

.review-card {
  width: min(22rem, 82vw);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 17.5rem;
  pointer-events: none; /* arraste no container, sem “grudar” no card */
}

/* Cláusulas limitativas do termo de fidelidade (CDC art. 54: destaque visual) */
.legal-limit-clause {
  border: 1px solid rgba(251, 191, 36, 0.38);
  background: rgba(245, 158, 11, 0.1);
  box-shadow: inset 0 1px 0 rgba(253, 230, 138, 0.08);
}

.legal-limit-mark {
  color: #fde68a;
  font-weight: 700;
}

/* Título da dobra de fidelidade: abre o espaço entre palavras
   (tracking-tighter da landing colava Indique/3, próximo/mês, etc.) */
.fidelidade-title {
  font-size: 1.55rem;
  line-height: 1.35;
  letter-spacing: 0;
  word-spacing: 0;
}
.fidelidade-title > span {
  display: block;
  white-space: nowrap;
}
.fidelidade-title > span + span {
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .fidelidade-title { font-size: 2.15rem; }
}
@media (min-width: 1024px) {
  .fidelidade-title { font-size: 2.75rem; }
}

/* Título da dobra de orçamento: duas linhas fixas, sem quebrar no meio da frase */
.pdf-fold-title {
  font-size: 1.7rem;
  line-height: 1.35;
}
.pdf-fold-title > span {
  display: block;
  white-space: nowrap;
}
.pdf-fold-title > span + span {
  margin-top: 0.75rem;
}
@media (min-width: 640px) {
  .pdf-fold-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .pdf-fold-title { font-size: 3.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pain-callout-glow { animation: none; }
  .hero-desc .pain-callout-sheen,
  .brand-logo-card .pain-callout-sheen { animation: none; }
  .pain-callout-card,
  .pain-callout-card:hover { transition: none; transform: none; }
  .pdf-flow-step:hover { transform: none; }
  .fin-kpi:hover { transform: none; }
  .ai-wave,
  .ai-pulse,
  .ai-pulse-slow,
  .ai-speech-dot,
  .ai-thinking span,
  .ai-orb { animation: none; }
}
