/* ===== PRODUCT CARDS ===== */
.order-header {
  margin-bottom: var(--step-section-gap);
}

/* Cabeçalho legado (revendedor): h2 "Pedido para X" + parágrafo simples.
   O público usa o padrão do redesign (step-kicker/step-title/step-lead). */
.order-header h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: #000;
  font-weight: 400;
  line-height: 1.4;
}

.order-header h2 strong {
  font-weight: 700;
}

.order-header p:not(.step-lead) {
  font-size: 0.92rem;
  color: var(--ink);
  margin-top: 4px;
}

.products-list {
  display: block;
}

.prod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Com quantidade ímpar de produtos, o último card fica centralizado em vez de
   sozinho na coluna esquerda (largura de uma coluna: 50% menos meio gap). */
@media (min-width: 768px) {
  .prod-grid>.prod-row:nth-child(odd):last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
}

.prod-row {
  position: relative;
  background: #fff;
  border: 1px solid var(--card-border-soft);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  transition: background 400ms ease, border-color 400ms ease;
}

.prod-row.has-qty {
  background: #fffdf8;
  border-color: #e1d2b2;
}

.prod-img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: #faf6ec;
  border: 1px solid #f0e6d2;
  flex: none;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prod-info {
  flex: 1 1 190px;
  min-width: 150px;
}

.prod-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink-strong);
}

.prod-mode {
  font-size: 12px;
  color: var(--muted-soft);
  margin-top: 4px;
}

.prod-ctrl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-basis: 100%;
  min-width: 0;
}

.prod-sub {
  min-width: 96px;
}

.prod-sub-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.prod-sub-val {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 19px;
  margin-top: 2px;
  color: var(--ink-strong);
}

.prod-units {
  font-size: 11px;
  color: var(--muted-soft);
  margin-top: 4px;
  white-space: nowrap;
}

/* Stepper pill redondo */
.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #f6f0e3;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 4px;
  flex: none;
}

.qty-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease, transform 120ms ease, box-shadow 160ms ease;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.qty-btn:active {
  transform: scale(0.92);
}

.qty-minus {
  background: transparent;
  color: #7a6b56;
}

/* Hover do redesign: nas linhas de produto o "−" acende branco (o pill é
   bege). */
.qty-minus:hover:not(:disabled) {
  background: #fff;
  color: var(--ink-strong);
}

.qty-minus:disabled {
  background: transparent;
  color: #c2bbac;
  cursor: not-allowed;
}

.qty-plus {
  background: #fff;
  color: var(--cta);
  box-shadow: 0 1px 2px rgba(39, 32, 26, 0.12);
}

/* No redesign o "+" não muda de cor no hover, só ganha sombra. */
.qty-plus:hover {
  box-shadow: 0 2px 5px rgba(39, 32, 26, 0.18);
}

.qty-input {
  width: 44px;
  min-width: 44px;
  text-align: center;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-strong);
  padding: 0 2px;
  background: transparent;
  appearance: textfield;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* O input em si não mostra outline (o número fica no meio do pill); o foco de
   teclado aparece como anel no próprio pill, só para navegação por teclado. */
.qty-input:focus-visible {
  outline: none;
}

.qty-control:has(.qty-input:focus-visible) {
  border-color: var(--cta);
  box-shadow: 0 0 0 2px rgba(180, 18, 40, 0.35);
}

@media (pointer: coarse) {
  .qty-control .qty-input {
    font-size: 16px;
  }
}

/* Linha do preço unitário: valor com desconto (accent da faixa), preço cheio
   riscado, selo "% OFF" e nota explicativa. */
.prod-price-line {
  flex-basis: 100%;
  border-top: 1px dashed #ece2cf;
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.prod-price-main {
  flex: 0 0 auto;
  width: 230px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.prod-price-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 3px;
}

.prod-price-vals {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.prod-price-now {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1;
  font-size: 19px;
  color: var(--ink-strong);
  transition: color 400ms ease;
}

.prod-price-now.discounted {
  color: var(--cta);
}

.prod-price-full {
  font-size: 11px;
  color: #bcae97;
  text-decoration: line-through;
  opacity: 0;
  transition: opacity 400ms ease;
  white-space: nowrap;
}

.prod-price-full.visible {
  opacity: 1;
}

.prod-pct {
  box-sizing: border-box;
  min-height: 17px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--cta);
  padding: 3px 8px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 400ms ease, background 400ms ease;
  white-space: nowrap;
}

.prod-pct.visible {
  opacity: 1;
}

.prod-price-note {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 11px;
  line-height: 1.45;
  color: var(--muted);
  text-wrap: pretty;
}

/* Em telas menores, a nota quebra para baixo do preço. */
@media (max-width: 868px) {
  .prod-price-line {
    flex-wrap: wrap;
  }

  .prod-price-note {
    flex: 0 0 100%;
    margin-top: 2px;
  }
}

.product-error {
  color: var(--cta);
  font-size: 0.84rem;
  display: none;
  flex-basis: 100%;
}

.product-error.visible {
  display: block;
}

@media (max-width: 767px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }

  .prod-price-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .prod-price-main {
    width: auto;
  }
}

/* ===== FLOATER ===== */
.floater {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid var(--card-border-soft);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 16px 16px max(16px, env(safe-area-inset-bottom));
  z-index: 100;
  display: none;
}

/* Usado apenas quando a visual viewport encolhe bastante, como com teclado. */
.floater.floater-vv-positioned {
  top: var(--floater-top, auto);
  bottom: auto;
}

.floater.visible {
  display: block;
}

/* Mobile: ao focar um campo de quantidade, o teclado encolhe a viewport e o
   floater (reposicionado para o topo do teclado) acaba cobrindo o próprio
   input. Enquanto o usuário digita, ocultamos o floater visualmente — mas
   mantemos a caixa no layout (visibility, não display:none) para que a medição
   de altura continue válida e ele volte à posição certa ao sair do campo. */
.floater.floater-input-hidden {
  visibility: hidden;
  pointer-events: none;
}

.floater-inner {
  display: grid;
  gap: 10px;
  max-width: 380px;
  margin: 0 auto;
}

.floater-payment {
  position: relative;
}

/* Esconde o seletor de pagamento quando só há uma forma disponível */
.floater-inner:has(.floater-select option:only-of-type) .floater-payment {
  display: none;
}

.floater-totals {
  grid-column: 1 / -1;
  margin: 0;
}

.floater-btn {
  grid-column: 1 / -1;
  margin-top: 0;
}

.floater-payment-label,
.floater-discount-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
  height: 14px;
  line-height: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.floater-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 42px;
  background: #faf6ee;
  border: 1px solid var(--card-border-heavy);
  border-radius: 7px;
  padding: 0 36px 0 14px;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}

.floater-select:focus {
  border-color: var(--gold);
}

.floater-payment::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 17px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
  pointer-events: none;
}

.floater-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
}

.floater-bruto {
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
}

.floater-bruto span {
  font-family: 'Work Sans', sans-serif;
  font-weight: 500;
  color: var(--ink);
}

.floater-discount {
  color: var(--wine-3);
  font-weight: 600;
  font-size: 13px;
}

.floater-discount span {
  color: var(--wine-3);
  font-weight: 600;
}

.floater-total-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--card-border-strong);
  margin-top: 6px;
  padding-top: 6px;
}

.floater-total-line::before {
  content: "Total";
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
}

.floater-total-line .floater-row--end {
  padding: 0;
}

.floater-total-val {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-strong);
}

/* Botão "Revisar pedido" no padrão do redesign: cores/hover/disabled vêm de
   .btn-primary (CTA, opacity 0.45); aqui só o formato de barra fixa. */
.floater-btn .btn {
  width: 100%;
  font-size: 13px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  line-height: normal;
  padding: 16px 24px;
  white-space: nowrap;
}

/* As regras desktop do floater (grid de desconto + pagamento + totais) são
   específicas do revendedor e vivem em css/revendedor.css. O floater do
   público (.floater--public) controla o próprio layout em css/principal.css. */

/* ===== TELA ÚNICA FINAL (etapa 5) — revisão nas duas páginas =====
   Cards CLIENTE/PAGAMENTO (+ REVENDEDOR na revenda), tabela de produtos
   tracejada e bloco TOTAL FINAL, como o Passo 4 do redesign. */
.final-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

/* No público os cards vêm logo após o título (sem step-lead, proposital);
   este respiro reproduz os 24px que o lead daria. No revendedor o lead existe
   e o seletor não casa. As margens adjacentes (12px do título) colapsam. */
.step-title+.final-cards {
  margin-top: var(--step-section-gap);
}

.final-card {
  background: #fff;
  border: 1px solid var(--card-border-soft);
  border-radius: 14px;
  padding: 20px;
  min-width: 0;
}

.final-card--items {
  margin-top: 16px;
}

.fc-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.fc-name {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: var(--ink-strong);
  overflow-wrap: break-word;
}

.fc-line {
  font-size: 14px;
  color: var(--muted-strong);
  margin-top: 4px;
  overflow-wrap: break-word;
}

.fc-line--gap {
  margin-top: 8px;
}

.fc-line b {
  color: var(--ink-strong);
}

/* "PIX à vista" em Fraunces vinho grande (público); a variante --rev serve
   para os rótulos longos de pagamento e o código do revendedor. */
.fc-pay {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1;
  color: var(--cta);
  overflow-wrap: break-word;
}

.fc-pay i {
  font-weight: 500;
}

.fc-pay--rev {
  font-size: 24px;
}

/* Tabela de produtos tracejada */
.review-items-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.review-items-table th {
  text-align: left;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 0 12px;
  border-bottom: 1px solid #f0e8d8;
}

.review-items-table th:not(:last-child) {
  padding-right: 12px;
}

.review-items-table th:nth-child(1) {
  width: 45%;
}

.review-items-table th:nth-child(2) {
  width: 30%;
}

.review-items-table th:nth-child(3) {
  width: 25%;
}

.review-items-table td {
  padding: 12px 0;
  border-bottom: 1px dashed #efe6d3;
  overflow-wrap: break-word;
  vertical-align: baseline;
}

.review-items-table td:not(:last-child) {
  padding-right: 12px;
}

.review-product-name {
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.35;
  color: var(--ink-strong);
}

.review-qty {
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

.review-qty-main,
.review-qty-pack {
  display: inline-block;
  white-space: nowrap;
}

.review-items-table td:last-child {
  text-align: right;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink-strong);
  white-space: nowrap;
}

.review-items-table th:last-child {
  text-align: right;
}

/* Totais: bruto, desconto e o bloco TOTAL FINAL com filete escuro. */
.review-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  padding-top: 16px;
}

.review-totals .rt-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 14px;
  color: var(--muted-strong);
}

.review-totals .rt-line .rt-val {
  font-weight: 700;
  color: var(--ink-strong);
  white-space: nowrap;
}

.review-totals .rt-line.discount,
.review-totals .rt-line.discount .rt-val {
  color: var(--cta);
}

.review-totals .rt-final {
  border-top: 1.5px solid var(--ink-strong);
  margin-top: 8px;
  padding-top: 8px;
  align-items: center;
}

.review-totals .rt-final .rt-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink-strong);
}

.review-totals .rt-final .rt-val {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--ink-strong);
}

/* Em telas muito estreitas o valor grande pode quebrar (como no redesign). */
@media (max-width: 369px) {
  .review-totals .rt-final .rt-val {
    white-space: normal;
  }
}

.review-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--step-action-gap);
}

/* Título centralizado antes do cartão-chat (público) / bloco de confirmação
   (revendedor): "Agora, é só enviar a mensagem" / "Confirmar pedido?". */
.wa-heading {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  color: var(--ink-strong);
  margin: 40px 0 24px;
}

/* ===== CARTÃO-CHAT do WhatsApp (público) ===== */
.chat-card {
  max-width: 520px;
  margin: 0 auto;
  background: #efe7d7;
  border: 1px solid #e0d6c0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 14px 36px -20px rgba(40, 32, 18, 0.4);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: #ded3bd;
  flex: none;
}

.chat-id b {
  display: block;
  font-size: 14.5px;
  line-height: 1.1;
  color: var(--ink-strong);
}

.chat-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: #127a3a;
  margin-top: 2px;
}

.chat-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wa);
  flex: none;
}

.chat-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #e7dfcd;
  border: 1px solid #d8cdb6;
  border-radius: 16px;
  padding: 16px;
}

/* Bolha verde-clara alinhada à direita, com hora + ✓✓ no canto. */
.chat-bubble {
  position: relative;
  align-self: flex-end;
  max-width: 94%;
  background: #d9fdd3;
  color: #0c1f12;
  border-radius: 12px 3px 12px 12px;
  padding: 9px 13px 19px;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.07);
}

.chat-msg {
  white-space: pre-line;
  overflow-wrap: break-word;
}

/* Negritos da mensagem no peso do WhatsApp (como na bolha do redesign). */
.chat-msg b {
  font-weight: 600;
}

.chat-meta {
  position: absolute;
  right: 11px;
  bottom: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: #5e7a64;
}

.chat-note {
  margin: 16px 0 0;
  text-align: center;
  font-size: 11.5px;
  letter-spacing: 0.03em;
  line-height: 1.5;
  color: #8f877a;
}

.chat-note b {
  color: #9d1f2c;
  font-weight: 600;
}

@media (max-width: 520px) {
  .chat-note b {
    display: block;
  }
}

/* Botão verde pulsante "ENVIAR PEDIDO" (vt-wa-pulse + vt-wa-shine). */
.btn-whatsapp {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 16px;
  background: var(--wa-mid);
  color: #fff;
  border-radius: 14px;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px -12px rgba(18, 122, 58, 0.8);
  animation: vt-wa-pulse 3s ease-in-out infinite;
}

.btn-whatsapp:hover:not(:disabled) {
  background: var(--wa-deep);
}

.btn-whatsapp .wa-btn-icon,
.btn-whatsapp .btn-text,
.btn-whatsapp .spinner {
  position: relative;
  z-index: 1;
}

.btn-whatsapp .wa-btn-icon {
  flex: none;
}

.btn-whatsapp .btn-text {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 42px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0) 100%);
  filter: blur(2px);
  animation: vt-wa-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.btn-whatsapp:disabled {
  cursor: wait;
  animation: none;
}

.btn-whatsapp:disabled::before {
  display: none;
}

@keyframes vt-wa-pulse {
  0% {
    box-shadow: 0 10px 22px -12px rgba(18, 122, 58, 0.8), 0 0 0 0 rgba(37, 211, 102, 0);
  }

  15% {
    box-shadow: 0 10px 22px -12px rgba(18, 122, 58, 0.8), 0 0 0 3px rgba(37, 211, 102, 0.45);
  }

  70% {
    box-shadow: 0 10px 22px -12px rgba(18, 122, 58, 0.8), 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 10px 22px -12px rgba(18, 122, 58, 0.8), 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes vt-wa-shine {

  0%,
  15% {
    transform: translateX(-60px) skewX(-20deg);
  }

  37% {
    transform: translateX(620px) skewX(-20deg);
  }

  100% {
    transform: translateX(620px) skewX(-20deg);
  }
}

/* ===== BLOCO DE CONFIRMAÇÃO → RESUMO DE SUCESSO (revendedor) ===== */
.confirm-final {
  max-width: 520px;
  margin: 0 auto;
}

.confirm-card {
  background: #fff;
  border: 1px solid var(--card-border-soft);
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 14px 36px -20px rgba(40, 32, 18, 0.35);
}

.confirm-card .confirm-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted-strong);
  text-wrap: pretty;
}

.success-content {
  text-align: center;
  padding: var(--step-action-gap) 0 0;
  max-width: 520px;
  margin: 0 auto;
}

.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--ok);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

.success-content h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  line-height: 1.2;
  color: var(--ink-strong);
  margin-bottom: 24px;
}

.success-action-card {
  background: #fff;
  border: 1px solid var(--card-border-soft);
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 14px 36px -20px rgba(40, 32, 18, 0.35);
}

.success-summary {
  text-align: left;
}

.success-summary .ss-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed #efe6d3;
  font-size: 14px;
}

.success-summary .ss-row:first-child {
  padding-top: 0;
}

.success-summary .ss-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.success-summary .ss-label {
  color: var(--muted);
  flex: 0 0 auto;
}

.success-summary .ss-val {
  color: var(--ink-strong);
  font-weight: 700;
  text-align: right;
  overflow-wrap: break-word;
  word-break: break-word;
  min-width: 0;
}

/* Lembrete pós-cadastro (cliente novo), na paleta bege/dourada do redesign. */
.success-warning {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #fbf6ec;
  border: 1px solid #e7dcc9;
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #5d5142;
  text-align: center;
}

.success-warning-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.success-warning-text strong {
  color: var(--gold-dark);
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {

  .btn-whatsapp,
  .btn-whatsapp::before {
    animation: none;
  }
}