/* ===========================================================================
   Seções de venda compartilhadas pelas três lojas (frentedecaixapdv, pdvopen e
   programadecaixa).

   Os três domínios vendem o mesmo produto pelo mesmo preço, então oferta,
   teste grátis, público-alvo e depoimentos são o mesmo texto e o mesmo
   comportamento em todos. Estas classes existem para que sejam também o mesmo
   HTML: o que muda de loja para loja é a cor, e ela entra pelos tokens abaixo,
   declarados no elemento que embrulha a página (`.offer-scope`).
   =========================================================================== */

.offer-scope {
  --offer-ink: #0f172a;
  --offer-muted: #475569;
  --offer-surface: #ffffff;
  --offer-bg: #f8fafc;
  --offer-line: #e2e8f0;
  --offer-accent: #0ea5e9;
  --offer-accent-ink: #0369a1;
  --offer-accent-soft: rgba(14, 165, 233, 0.12);
  --offer-cta: #f97316;
  --offer-cta-dark: #ea580c;
  --offer-sale: #e11d48;
  --offer-sale-soft: #fff1f2;
  --offer-sale-line: #fecdd3;
  --offer-radius: 18px;
  --offer-shell: min(1180px, calc(100% - 40px));
  --offer-font: inherit;
}

.offer-scope--pdvopen {
  --offer-ink: #132247;
  --offer-muted: #4c618d;
  --offer-bg: transparent;
  --offer-line: rgba(21, 57, 140, 0.14);
  --offer-accent: #1d6cff;
  --offer-accent-ink: #0a43cf;
  --offer-accent-soft: rgba(29, 108, 255, 0.12);
}

.offer-scope--programa {
  --offer-accent: #0f766e;
  --offer-accent-ink: #0b5f58;
  --offer-accent-soft: rgba(15, 118, 110, 0.12);
}

.offer-scope .offer-shell {
  width: var(--offer-shell);
  margin: 0 auto;
}

/* --- Faixa de promoção, acima do cabeçalho ------------------------------- */

.offer-scope .offer-strip {
  background: linear-gradient(90deg, #b91c1c, var(--offer-sale));
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
}

.offer-scope .offer-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  flex-wrap: wrap;
}

/* As três homes trazem regras genéricas de cor por elemento (`.home-page span`,
   por exemplo). Elas ganham de qualquer herança, então cada texto destas seções
   declara a própria cor — inclusive os que só precisariam herdar. */
.offer-scope .offer-strip span,
.offer-scope .offer-strip strong {
  color: #fff;
}

.offer-scope .offer-strip strong {
  font-weight: 800;
}

.offer-scope .offer-strip__divider {
  opacity: 0.5;
}

.offer-scope .offer-strip a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

/* --- Botões ------------------------------------------------------------- */

.offer-scope .offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.offer-scope .offer-btn--primary {
  background: linear-gradient(180deg, var(--offer-cta), var(--offer-cta-dark));
  border-color: var(--offer-cta-dark);
  color: #fff;
  box-shadow: 0 12px 24px -10px rgba(234, 88, 12, 0.65);
}

.offer-scope .offer-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px -12px rgba(234, 88, 12, 0.7);
  color: #fff;
}

.offer-scope .offer-btn--trial {
  background: var(--offer-accent);
  border-color: var(--offer-accent);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(15, 23, 42, 0.5);
}

.offer-scope .offer-btn--trial:hover {
  transform: translateY(-2px);
  background: var(--offer-accent-ink);
  border-color: var(--offer-accent-ink);
  color: #fff;
}

.offer-scope .offer-btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--offer-accent-ink);
}

.offer-scope .offer-btn--ghost:hover {
  background: var(--offer-accent-soft);
}

.offer-scope .offer-btn--block {
  width: 100%;
}

/* --- Bloco do teste grátis ---------------------------------------------- */

.offer-scope .offer-trial {
  padding: 72px 0;
  background: var(--offer-bg);
}

.offer-scope .offer-trial__box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 44px;
  color: #e2e8f0;
  background: linear-gradient(135deg, #0f172a 0%, #111d3a 55%, #0b3350 100%);
  box-shadow: 0 30px 60px -35px rgba(15, 23, 42, 0.8);
}

.offer-scope .offer-trial__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.offer-scope .offer-trial__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.offer-scope .offer-trial h2 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
}

.offer-scope .offer-trial h2 em {
  font-style: normal;
  color: #7dd3fc;
}

.offer-scope .offer-trial__lead {
  margin: 0 0 24px;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
}

.offer-scope .offer-trial__steps {
  display: grid;
  gap: 14px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.offer-scope .offer-trial__steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #e2e8f0;
  line-height: 1.5;
}

.offer-scope .offer-trial strong {
  color: inherit;
}

.offer-scope .offer-trial__steps span {
  color: #e2e8f0;
}

.offer-scope .offer-trial__step-number {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.16);
  border: 1px solid rgba(125, 211, 252, 0.4);
  color: #7dd3fc;
  font-weight: 800;
  font-size: 0.9rem;
}

.offer-scope .offer-trial__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.offer-scope .offer-trial__actions .offer-btn--ghost {
  color: #e2e8f0;
  border-color: rgba(226, 232, 240, 0.45);
}

.offer-scope .offer-trial__actions .offer-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.offer-scope .offer-trial__note {
  margin: 18px 0 0;
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.55;
}

.offer-scope .offer-trial__card {
  border-radius: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
}

.offer-scope .offer-trial__card h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.offer-scope .offer-trial__card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-scope .offer-trial__card li {
  display: flex;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
}

.offer-scope .offer-trial__card li::before {
  content: "✓";
  color: #4ade80;
  font-weight: 800;
}

.offer-scope .offer-trial__card-buy {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.offer-scope .offer-trial__card-buy p {
  margin: 0 0 12px;
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
}

.offer-scope .offer-trial__card-buy span {
  display: block;
  margin-top: 10px;
  color: #94a3b8;
  font-size: 0.82rem;
}

/* --- Formulário do teste grátis (o link vai por e-mail) ------------------ */

.offer-scope .offer-trial__form {
  margin-top: 26px;
}

.offer-scope .offer-trial__form-label {
  display: block;
  margin-bottom: 8px;
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-scope .offer-trial__form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.offer-scope .offer-trial__form-input {
  flex: 1 1 260px;
  min-width: 0;
  padding: 15px 18px;
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.35);
  background: rgba(15, 23, 42, 0.45);
  color: #f8fafc;
  font-size: 1rem;
  font-family: inherit;
}

.offer-scope .offer-trial__form-input::placeholder {
  color: #94a3b8;
}

.offer-scope .offer-trial__form-input:focus {
  outline: none;
  border-color: var(--offer-accent);
  box-shadow: 0 0 0 3px var(--offer-accent-soft);
}

.offer-scope .offer-trial__form .offer-btn--trial {
  flex: 0 0 auto;
  font-size: 0.98rem;
}

.offer-scope .offer-trial__form-error {
  margin: 0 0 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(225, 29, 72, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.5);
  color: #fecdd3;
  font-size: 0.9rem;
  font-weight: 600;
}

.offer-scope .offer-trial__form-note {
  margin: 12px 0 0;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Isca de robô: fora da tela, mas ainda preenchível por quem preenche tudo. */
.offer-scope .offer-trial__form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* --- Páginas soltas da oferta (/teste-gratis) ---------------------------- */

.offer-scope.offer-page {
  min-height: 100vh;
  background: var(--offer-bg);
  color: var(--offer-ink);
}

.offer-scope .offer-page__topbar {
  padding: 18px 0;
  background: var(--offer-surface);
  border-bottom: 1px solid var(--offer-line);
}

.offer-scope .offer-page__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.offer-scope .offer-page__logo-image {
  height: 38px;
  width: auto;
}

.offer-scope .offer-btn--sm {
  padding: 11px 20px;
  font-size: 0.92rem;
}

.offer-scope .offer-page__panel {
  padding: 64px 0;
}

.offer-scope .offer-page__panel-inner {
  max-width: 720px;
  padding: 36px;
  border-radius: 20px;
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
}

.offer-scope .offer-page__panel-inner h1 {
  margin: 16px 0 12px;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  line-height: 1.2;
}

.offer-scope .offer-page__lead {
  margin: 0 0 24px;
  color: var(--offer-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}

.offer-scope .offer-page__steps li {
  color: var(--offer-ink);
}

.offer-scope .offer-page__steps span:not(.offer-trial__step-number) {
  color: var(--offer-muted);
}

/* O selo e os números do teste são desenhados para o bloco escuro da home; no
   painel claro desta página eles precisam da cor de acento para aparecer. */
.offer-scope .offer-page__panel-inner .offer-trial__tag {
  background: var(--offer-accent-soft);
  border-color: var(--offer-accent);
  color: var(--offer-accent-ink);
}

.offer-scope .offer-page__steps .offer-trial__step-number {
  background: var(--offer-accent-soft);
  border-color: var(--offer-accent);
  color: var(--offer-accent-ink);
}

.offer-scope .offer-page__buy {
  margin-top: 28px;
  padding: 22px;
  border-radius: 16px;
  background: var(--offer-sale-soft);
  border: 1px solid var(--offer-sale-line);
  text-align: center;
}

.offer-scope .offer-page__buy p {
  margin: 0 0 14px;
  color: var(--offer-ink);
  font-size: 1rem;
}

.offer-scope .offer-page__note {
  margin: 22px 0 0;
  color: var(--offer-muted);
  font-size: 0.9rem;
}

.offer-scope .offer-page__back {
  padding-bottom: 48px;
}

.offer-scope .offer-page__back a {
  color: var(--offer-accent-ink);
  font-weight: 600;
  text-decoration: none;
}

/* Na página solta o bloco do teste é o conteúdo, não uma seção da home. */
.offer-scope.offer-page .offer-trial {
  padding: 48px 0 32px;
  background: transparent;
}

/* --- Oferta / preço ------------------------------------------------------ */

.offer-scope .offer-pricing {
  padding: 78px 0;
  background: var(--offer-bg);
}

.offer-scope .offer-heading {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}

.offer-scope .offer-heading__badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--offer-accent-soft);
  color: var(--offer-accent-ink);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-scope .offer-heading h2 {
  margin: 16px 0 12px;
  color: var(--offer-ink);
  font-size: clamp(1.8rem, 3.6vw, 2.45rem);
  line-height: 1.15;
  font-weight: 800;
}

.offer-scope .offer-heading p {
  margin: 0;
  color: var(--offer-muted);
  font-size: 1.06rem;
  line-height: 1.6;
}

.offer-scope .offer-compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 18px;
  max-width: 820px;
  margin: 0 auto 40px;
}

.offer-scope .offer-compare__col {
  flex: 1 1 0;
  padding: 24px;
  border-radius: var(--offer-radius);
  border: 1px solid var(--offer-line);
  background: var(--offer-surface);
  opacity: 0.75;
}

.offer-scope .offer-compare__col--ours {
  border-color: var(--offer-accent);
  box-shadow: 0 20px 40px -30px rgba(15, 23, 42, 0.6);
  opacity: 1;
}

.offer-scope .offer-compare__tag {
  display: block;
  margin-bottom: 8px;
  color: var(--offer-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-scope .offer-compare__price {
  display: block;
  margin-bottom: 16px;
  color: var(--offer-ink);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

/* O risco fica no span do valor, e não no <strong> inteiro: decoração de texto
   propaga para os descendentes e riscaria também o "por mês". */
.offer-scope .offer-compare__col:not(.offer-compare__col--ours) .offer-compare__price span {
  text-decoration: line-through;
  text-decoration-color: var(--offer-sale);
}

.offer-scope .offer-compare__price small {
  display: block;
  color: var(--offer-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.offer-scope .offer-compare ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-scope .offer-compare li {
  color: var(--offer-muted);
  font-size: 0.93rem;
  line-height: 1.45;
}

.offer-scope .offer-compare__col--ours li {
  color: var(--offer-ink);
}

.offer-scope .offer-compare__vs {
  align-self: center;
  color: var(--offer-muted);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-scope .offer-card__guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(22, 163, 74, 0.28);
  background: rgba(22, 163, 74, 0.08);
  color: #15803d;
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: left;
}

.offer-scope .offer-card__guarantee strong {
  color: #14532d;
}

.offer-scope .offer-card__guarantee span {
  color: inherit;
}

@media (max-width: 720px) {
  .offer-scope .offer-compare {
    flex-direction: column;
  }

  .offer-scope .offer-compare__vs {
    align-self: center;
  }
}

.offer-scope .offer-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 34px 34px;
  border-radius: 24px;
  background: var(--offer-surface);
  border: 2px solid var(--offer-accent);
  box-shadow: 0 34px 60px -34px rgba(15, 23, 42, 0.45);
  text-align: center;
}

.offer-scope .offer-card__flag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 20px;
  border-radius: 999px;
  background: var(--offer-sale);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px -10px rgba(225, 29, 72, 0.8);
}

.offer-scope .offer-card h3 {
  margin: 10px 0 6px;
  color: var(--offer-ink);
  font-size: 1.35rem;
  font-weight: 800;
}

.offer-scope .offer-card__subtitle {
  margin: 0 0 22px;
  color: var(--offer-muted);
  font-size: 0.98rem;
}

.offer-scope .offer-card__anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.offer-scope .offer-card__was {
  color: #94a3b8;
  font-size: 1.1rem;
  text-decoration: line-through;
}

.offer-scope .offer-card__off {
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--offer-sale-soft);
  border: 1px solid var(--offer-sale-line);
  color: var(--offer-sale);
  font-size: 0.85rem;
  font-weight: 800;
}

.offer-scope .offer-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  color: var(--offer-ink);
}

.offer-scope .offer-card__currency {
  color: var(--offer-ink);
  font-size: 1.5rem;
  font-weight: 700;
}

.offer-scope .offer-card__amount {
  color: var(--offer-ink);
  font-size: clamp(3rem, 8vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.offer-scope .offer-card__term {
  color: var(--offer-muted);
  font-size: 1rem;
  font-weight: 600;
}

.offer-scope .offer-card__savings {
  margin: 12px 0 24px;
  color: #15803d;
  font-size: 0.98rem;
  font-weight: 700;
}

.offer-scope .offer-card__list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 24px 0 0;
  border-top: 1px solid var(--offer-line);
  list-style: none;
  text-align: left;
}

.offer-scope .offer-card__list li {
  display: flex;
  gap: 10px;
  color: var(--offer-ink);
  font-size: 0.98rem;
  line-height: 1.5;
}

.offer-scope .offer-card__list li::before {
  content: "✓";
  color: #16a34a;
  font-weight: 800;
}

.offer-scope .offer-card__actions {
  display: grid;
  gap: 12px;
}

.offer-scope .offer-card__reassurance {
  margin: 18px 0 0;
  color: var(--offer-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.offer-scope .offer-card__reassurance strong {
  color: var(--offer-ink);
}

.offer-scope .offer-assist {
  padding: 0 0 60px;
  background: var(--offer-bg);
  text-align: center;
}

.offer-scope .offer-assist p {
  margin: 0;
  color: var(--offer-muted);
  font-size: 1rem;
}

.offer-scope .offer-assist a {
  color: var(--offer-accent-ink);
  font-weight: 700;
}

/* --- "Saiba mais": o que não decide a compra fica a um clique -------------

   Ninguém lê uma home inteira. O que responde "serve para mim?" e "quanto
   custa?" fica na página; a lista exaustiva de recursos e as perguntas de
   segunda ordem entram aqui, fechadas — presentes para quem procura, invisíveis
   para quem só quer comprar. */

.offer-scope .offer-more {
  margin: 26px 0 0;
  border-top: 1px solid var(--offer-line);
  padding-top: 22px;
}

.offer-scope .offer-more > summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--offer-line);
  background: var(--offer-surface);
  color: var(--offer-accent-ink);
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.offer-scope .offer-more > summary::-webkit-details-marker {
  display: none;
}

.offer-scope .offer-more > summary::after {
  content: "▾";
  font-size: 0.8rem;
}

.offer-scope .offer-more[open] > summary::after {
  content: "▴";
}

.offer-scope .offer-more > summary:hover {
  border-color: var(--offer-accent);
  background: var(--offer-accent-soft);
}

.offer-scope .offer-more__body {
  padding-top: 24px;
}

.offer-scope .offer-more--centered {
  text-align: center;
}

.offer-scope .offer-more--centered .offer-more__body {
  text-align: left;
}

/* --- Para quem é --------------------------------------------------------- */

.offer-scope .offer-audience {
  padding: 78px 0;
  background: var(--offer-surface);
}

.offer-scope .offer-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.offer-scope .offer-audience__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--offer-radius);
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.55);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-scope a.offer-audience__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 45px -28px rgba(15, 23, 42, 0.6);
}

.offer-scope .offer-audience__media {
  position: relative;
  aspect-ratio: 3 / 2;
  background: #e2e8f0;
}

.offer-scope .offer-audience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-scope .offer-audience__body {
  padding: 22px;
}

.offer-scope .offer-audience__body h3 {
  margin: 0 0 8px;
  color: var(--offer-ink);
  font-size: 1.12rem;
  font-weight: 800;
}

.offer-scope .offer-audience__body p {
  margin: 0;
  color: var(--offer-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.offer-scope .offer-audience__more {
  margin: 34px 0 0;
  text-align: center;
  color: var(--offer-muted);
  font-size: 0.98rem;
}

.offer-scope .offer-audience__more a {
  color: var(--offer-accent-ink);
  font-weight: 700;
}

/* --- Depoimentos --------------------------------------------------------- */

.offer-scope .offer-testimonials {
  padding: 78px 0;
  background: var(--offer-bg);
}

.offer-scope .offer-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.offer-scope .offer-testimonial {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--offer-radius);
  background: var(--offer-surface);
  border: 1px solid var(--offer-line);
  box-shadow: 0 20px 40px -34px rgba(15, 23, 42, 0.5);
}

.offer-scope .offer-testimonial,
.offer-scope .offer-testimonial blockquote {
  margin: 0;
}

.offer-scope .offer-testimonial__stars {
  color: #f59e0b;
  font-size: 1.05rem;
  letter-spacing: 2px;
}

.offer-scope .offer-testimonial p {
  margin: 0;
  color: var(--offer-ink);
  font-size: 1rem;
  line-height: 1.65;
}

.offer-scope .offer-testimonial__author {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--offer-line);
}

.offer-scope .offer-testimonial__author strong {
  color: var(--offer-ink);
  font-size: 0.98rem;
}

.offer-scope .offer-testimonial__author span {
  color: var(--offer-muted);
  font-size: 0.88rem;
}

/* --- Responsivo ---------------------------------------------------------- */

@media (max-width: 960px) {
  .offer-scope .offer-trial__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .offer-scope .offer-trial__box {
    padding: 32px 24px;
  }

  .offer-scope .offer-audience__grid,
  .offer-scope .offer-testimonials__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .offer-scope .offer-trial,

  .offer-scope .offer-pricing,

  .offer-scope .offer-audience,

  .offer-scope .offer-testimonials {
    padding: 52px 0;
  }

  .offer-scope .offer-audience__grid,
  .offer-scope .offer-testimonials__grid {
    grid-template-columns: 1fr;
  }

  .offer-scope .offer-card {
    padding: 36px 22px 28px;
  }

  .offer-scope .offer-trial__actions .offer-btn {
    width: 100%;
  }

  .offer-scope .offer-trial__form-row {
    flex-direction: column;
  }

  .offer-scope .offer-trial__form .offer-btn--trial,
  .offer-scope .offer-trial__form-input {
    width: 100%;
  }

  .offer-scope .offer-page__panel-inner {
    padding: 26px 20px;
  }
}

/* Linha de links do blog: leitura de topo de funil não pode ocupar o espaço de
   três cards logo antes do último botão de compra. */
.offer-scope .home-blog-links {
  padding: 0 0 56px;
  text-align: center;
}

.offer-scope .home-blog-links p {
  color: var(--offer-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.offer-scope .home-blog-links a {
  color: var(--offer-accent-ink);
  font-weight: 600;
}

/* Prova do hero em uma linha de texto: substituiu três cards que repetiam a
   faixa de confiança logo abaixo. */
.offer-scope .home-hero-proof {
  margin: 4px 0 0;
  color: var(--offer-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.offer-scope .home-hero-proof strong {
  color: var(--offer-ink);
  font-weight: 700;
}
