/* Ajuste tipográfico global — mantém layout, cores e conteúdo originais */
:root {
  --font-sans: "Poppins", system-ui, sans-serif !important;
  --font-display: "Poppins", system-ui, sans-serif !important;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
  font-family: "Poppins", system-ui, sans-serif !important;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body * {
  font-family: inherit;
}

body h1,
body h2,
body h3,
body h4,
body .font-bold,
body .font-extrabold {
  font-family: "Poppins", system-ui, sans-serif !important;
}

/* Headline principal — mobile first */
body h1 {
  font-size: 1.875rem !important; /* exatamente 30px no mobile */
  font-weight: 800 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.5px !important;
  text-align: center !important;
  max-width: 760px !important;
  margin-inline: auto !important;
  text-wrap: balance;
}

/* Títulos de seção — mobile first */
body h2 {
  font-size: 1.375rem !important; /* exatamente 22px no mobile */
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.25px !important;
  text-align: center !important;
  max-width: 900px !important;
  margin-inline: auto !important;
  text-wrap: balance;
}

/* Títulos de cards e benefícios */
body h3 {
  font-size: 0.875rem !important; /* 14px no mobile */
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

/* Textos comuns */
body p,
body li,
body figcaption,
body button,
body a,
body span,
body div {
  overflow-wrap: normal;
  hyphens: none;
}

body p {
  font-size: 0.875rem !important; /* 14px */
  font-weight: 400;
  line-height: 1.6 !important;
}

/* Subheadline principal — primeiro parágrafo após o h1 */
body section:first-of-type p {
  font-size: 0.9375rem !important; /* 15px */
  font-weight: 400 !important;
  line-height: 1.5 !important;
  text-align: center !important;
  max-width: 620px !important;
}

/* Palavras destacadas */
body strong,
body b,
body .font-bold,
body .font-semibold,
body .font-medium {
  font-weight: 800 !important;
}

/* CTAs e botões */
body .btn-cta,
body button {
  font-size: 0.9375rem !important; /* 15px */
  font-weight: 700 !important;
  line-height: 1.2 !important;
  min-height: 52px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: normal !important;
}

body .btn-cta {
  width: min(100%, 28rem) !important;
}

/* Descrições menores em cards */
body .card-surface p {
  font-size: 0.8125rem !important; /* 13px */
  line-height: 1.55 !important;
}

/* Microtextos e selos sem comprometer toque/leitura */
body .text-xs,
body .text-\[11px\] {
  font-size: 0.75rem !important;
  line-height: 1.35 !important;
}

/* Conteúdo sempre contido */
body section,
body article,
body figure,
body img,
body video {
  max-width: 100% !important;
}

body img,
body video {
  height: auto !important;
}

body figure img {
  height: 100% !important;
  object-fit: cover;
}

/* Escala fluida para desktop */
@media (min-width: 640px) {
  body h1 {
    font-size: clamp(2.875rem, 5vw, 3.375rem) !important; /* 46px → 54px */
  }

  body h2 {
    font-size: clamp(1.875rem, 3vw, 2.25rem) !important; /* 30px → 36px */
  }

  body p {
    font-size: 1rem !important;
  }

  body section:first-of-type p {
    font-size: clamp(1.0625rem, 1.6vw, 1.1875rem) !important; /* 17px → 19px */
  }

  body h3 {
    font-size: 1rem !important;
  }

  body .card-surface p {
    font-size: 0.875rem !important;
  }
}

/* ===== Bloco de Garantia — layout responsivo (selo à esquerda no desktop) ===== */
body .garantia-wrap {
  flex-direction: column !important;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  body .garantia-wrap {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }
  body .garantia-wrap .garantia-text {
    text-align: left;
  }
  body .garantia-wrap img.garantia-seal {
    width: 11rem !important; /* 176px */
    height: 11rem !important;
    flex-shrink: 0;
  }
}
