/* Identidade Malagueta: Cormorant (display) + Montserrat (corpo), servidas do
   proprio dominio - mesma fonte usada no site e no B2B, sem depender do Google. */
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Italic-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('/fonts/Cormorant-Variable.ttf') format('truetype-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant';
  src: url('/fonts/Cormorant-Italic-Variable.ttf') format('truetype-variations');
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

:root {
  /* Paleta oficial Malagueta */
  --vermelho: #B02A1D;         /* Vermelho Pimenta Cultural - CTA, assinatura */
  --vermelho-escuro: #8a2015;
  --terracota: #C65A2E;        /* apoio editorial */
  --off-white: #F4EFEA;        /* Off White Algodao Cru - base */
  --nude: #D8C4B6;
  --line: #E4DACE;             /* hairline / bordas */
  --preto: #111111;            /* Preto Brasil - tipografia */
  --preto-suave: #6B6259;      /* texto secundario (contraste AA sobre off-white) */
  --cinza: #BFB7AF;            /* Cinza Concreto Quente - texto sobre fundo escuro */
  --azul: #1F3A44;             /* Azul Petroleo - links do rodape */
  --paper: #FFFFFF;

  --radius: 14px;
  --radius-pill: 999px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(17, 17, 17, 0.07);

  --display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

/* button/input nao herdam fonte do body por padrao - sem isso os cards de peca saiam em Arial. */
button, input { font-family: inherit; }

.consent-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}

.consent-modal {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 440px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.consent-modal__logo { height: 24px; width: auto; display: block; margin-bottom: 20px; }
.consent-modal h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}
.consent-modal p { font-size: 14px; color: var(--preto-suave); margin: 0 0 12px; line-height: 1.6; }
.consent-modal p strong { color: var(--preto); }
.consent-modal__actions { display: flex; gap: 12px; margin-top: 20px; }
.consent-modal__actions .btn-secondary,
.consent-modal__actions .btn-primary { flex: 1; text-align: center; }

html {
  background: var(--off-white);
}

/* Fundo liso off-white. O banner da marca tem "Malagueta" e "Mg" escritos na propria imagem -
   como papel de parede atras dos cards o texto aparecia cortado por tras deles. */
body {
  margin: 0;
  color: var(--preto);
  font-family: var(--sans);
  line-height: 1.55;
  background: var(--off-white);
}

.topbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

@keyframes logo-in {
  0% { opacity: 0; transform: translateY(-6px) scale(0.94); }
  60% { opacity: 1; transform: translateY(0) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  animation: logo-in 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.logo img { height: 28px; width: auto; display: block; }

.topbar__tag {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--preto-suave);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 28px 16px 60px;
}

.hero {
  text-align: left;
  margin-bottom: 32px;
  max-width: 460px;
  background: rgba(244, 239, 234, 0.92);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 20px 24px;
  border-radius: var(--radius);
}
.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  font-size: clamp(30px, 5.2vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--preto);
}
.hero p { color: var(--preto-suave); margin: 0; }
.help-toggle { margin-top: 12px; }

.help-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.help-panel__steps {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
}
.help-panel__steps strong { font-weight: 600; }
.help-panel__note {
  font-size: 12px;
  color: var(--preto-suave);
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.steps { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.steps-col { display: flex; flex-direction: column; gap: 20px; }

.step {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.step__num {
  flex: 0 0 auto;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--vermelho-escuro);
  padding-top: 2px;
}

.step__body { flex: 1; min-width: 0; }
.step__body h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 24px;
  margin: 0 0 14px;
}
.hint { font-size: 13px; color: var(--preto-suave); margin: -8px 0 14px; }

.picker-collection {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vermelho-escuro);
  margin: -6px 0 12px;
}

.picker-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.picker-tab {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--preto-suave);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.picker-tab:hover { border-color: var(--vermelho); }
.picker-tab.active { background: var(--vermelho-escuro); border-color: var(--vermelho-escuro); color: #fff; }

.product-picker-wrap {
  position: relative;
  overflow: hidden;
  max-height: 4000px;
  transition: max-height 0.35s ease;
}
.product-picker-wrap.collapsed { max-height: 360px; }
.product-picker-wrap.collapsed::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 64px;
  background: linear-gradient(to bottom, transparent, #fff);
  pointer-events: none;
}

.product-picker {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}

.picker-toggle {
  display: block;
  margin: 12px 0 0;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--off-white);
  text-align: left;
  padding: 0;
}
.product-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.product-card span { display: block; font-size: 12px; padding: 7px 8px; color: var(--preto); }
.product-card.selected { border-color: var(--vermelho); border-width: 2px; }

.product-selected {
  display: flex;
  gap: 12px;
  align-items: center;
}
.product-selected img { width: 64px; height: 84px; object-fit: cover; border-radius: 10px; }
.product-selected p { margin: 0 0 4px; font-weight: 500; }
.size-link { display: block; margin: 0 0 6px; }

.dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  color: var(--preto-suave);
  cursor: pointer;
  min-height: 140px;
}
.dropzone.dragover { border-color: var(--vermelho); background: #FBF0EE; }
.dropzone img { max-height: 220px; border-radius: 10px; object-fit: cover; }

.btn-primary {
  background: var(--vermelho);
  color: var(--off-white);
  border: none;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 10px 24px rgba(176, 42, 29, 0.24);
  transition: background 0.15s ease, transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.2s ease;
}
.btn-primary:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-primary:not(:disabled):hover { background: var(--vermelho-escuro); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(176, 42, 29, 0.3); }
.btn-primary:active { transform: scale(0.97); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--preto);
  border: 1px solid var(--line);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.btn-secondary:hover { border-color: var(--vermelho); color: var(--vermelho); }

.btn-link {
  background: none;
  border: none;
  color: var(--vermelho-escuro);
  text-decoration: underline;
  cursor: pointer;
  font-size: 13px;
  padding: 0;
}

.result { margin-top: 20px; }
.result img { width: 100%; border-radius: var(--radius); display: block; background: var(--line); }
.result__actions { display: flex; flex-direction: column; gap: 12px; margin-top: 14px; }
.result__actions-row { display: flex; align-items: center; gap: 18px; }
.btn-buy { display: block; text-align: center; text-decoration: none; }

.suggestions { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.suggestions__title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--vermelho-escuro);
  margin: 0 0 10px;
}
.suggestions__list { display: grid; grid-template-columns: repeat(auto-fill, minmax(96px, 1fr)); gap: 8px; }
.suggestion-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--off-white);
  padding: 0;
  text-align: left;
}
.suggestion-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.suggestion-card span { display: block; font-size: 11px; padding: 6px 7px; color: var(--preto); }
.suggestion-card:hover { border-color: var(--vermelho); }

.loading { margin-top: 20px; text-align: center; color: var(--preto-suave); }
.loading__preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.loading__preview img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--line);
}
.loading__plus {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--vermelho-escuro);
}
.spinner {
  width: 32px; height: 32px; margin: 0 auto 12px;
  border: 2px solid var(--line);
  border-top-color: var(--vermelho);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.error {
  color: #8a4a1e;
  background: #f7efe4;
  border: 1px solid #e6d4b8;
  padding: 10px 12px;
  font-size: 13px;
  margin-top: 12px;
  border-radius: var(--radius);
}

.hidden { display: none !important; }

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 10.5px;
  letter-spacing: 1.5px;
  color: var(--preto-suave);
  padding: 28px;
}
.footer__mark { height: 20px; width: auto; opacity: 0.75; }

/* Desktop: peca + foto na esquerda, resultado grande fixo na direita (evita coluna unica esticada). */
@media (min-width: 900px) {
  .wrap { max-width: 1080px; padding: 48px 32px 80px; }
  .hero { margin-bottom: 40px; }

  .steps {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
    align-items: start;
    gap: 24px;
  }

  /* Colunas independentes: a coluna da esquerda cresce so com o proprio conteudo
     (passo 1 + passo 2), sem herdar altura do resultado na direita. Sem isso, o grid
     inflava a linha pra caber o resultado e sobrava espaco vazio embaixo do passo 1. */
  .step[data-step="3"] {
    position: sticky;
    top: 88px; /* abaixo do topbar, que agora tambem e sticky (~64px de altura) */
  }
}

@media (max-width: 480px) {
  .topbar { padding: 14px 16px; }
  .logo img { height: 22px; }
  .topbar__tag { font-size: 10px; letter-spacing: 1.5px; }

  .wrap { padding: 20px 14px 48px; }
  .hero { margin-bottom: 24px; }

  .step { padding: 16px; gap: 14px; }
  .step__body h2 { font-size: 20px; margin-bottom: 10px; }

  .product-picker { grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 8px; }

  .dropzone { padding: 20px; min-height: 120px; }
  .dropzone img { max-height: 180px; }

  .result__actions-row { flex-wrap: wrap; gap: 12px 18px; }
}

/* ============================================================
   TELA DE ABERTURA - mesma do portal B2B Malagueta (video, selo,
   titulo em Cormorant, dois botoes, rodape da loja), com o titulo
   do provador. Enquanto body.intro-open, o provador fica escondido.
   ============================================================ */
body.intro-open .topbar,
body.intro-open main.wrap,
body.intro-open > .footer { display: none; }
body:not(.intro-open) .whatsapp-float { display: none; } /* no provador cobriria os botoes do resultado no celular */

.intro { min-height: 100vh; display: flex; flex-direction: column; position: relative; background: var(--off-white); }

.intro__promo {
  position: absolute;
  top: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  background: rgba(244, 239, 234, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 239, 234, 0.28);
  color: var(--off-white);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.intro__hero {
  position: relative;
  overflow: hidden;
  background: var(--preto);
  color: var(--off-white);
  padding: 40px 44px 100px;
  text-align: left;
  flex: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.intro__brand {
  position: absolute;
  top: 34px; left: 44px;
  z-index: 6;
}
.intro__brand img { height: 40px; width: auto; display: block; }
.intro__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0.68;
  filter: saturate(1.15) contrast(1.05);
  transform: scale(1.03);
}
.intro__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.05) 22%, rgba(17, 17, 17, 0.1) 55%, rgba(17, 17, 17, 0.92) 100%),
    linear-gradient(100deg, var(--preto) 8%, rgba(17, 17, 17, 0.55) 40%, rgba(17, 17, 17, 0.15) 75%);
}
.intro__content { position: relative; z-index: 2; animation: introFadeUp 0.8s cubic-bezier(.16, 1, .3, 1) both; }
.intro__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--nude);
  margin-bottom: 18px;
}
.intro__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 4.2rem;
  line-height: 1.02;
  letter-spacing: -0.5px;
  margin: 0 0 22px;
  max-width: 760px;
}
.intro__title em { color: var(--nude); font-style: italic; }
.intro__lead {
  max-width: 520px;
  color: var(--cinza);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 36px;
}
.intro__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.intro__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  width: 30px; height: 30px;
  border: 1px solid rgba(244, 239, 234, 0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white);
  font-size: 0.85rem;
  animation: introScrollBounce 2.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes introFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
@keyframes introScrollBounce {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.55; }
  50% { transform: translate(-50%, 6px); opacity: 1; }
}

.intro-btn {
  display: inline-block;
  border-radius: var(--radius-pill);
  padding: 17px 34px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.34, 1.56, .64, 1), background 0.15s, border-color 0.2s, box-shadow 0.2s;
}
.intro-btn:active { transform: scale(0.93); transition: transform 0.08s ease; }
.intro-btn--primary {
  background: var(--vermelho);
  color: var(--off-white);
  border: none;
  box-shadow: 0 10px 24px rgba(176, 42, 29, 0.28);
}
.intro-btn--primary:hover { background: var(--vermelho-escuro); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(176, 42, 29, 0.34); }
.intro-btn--ghost {
  background: rgba(244, 239, 234, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--off-white);
  border: 1px solid rgba(244, 239, 234, 0.4);
}
.intro-btn--ghost:hover { border-color: var(--off-white); background: rgba(244, 239, 234, 0.16); transform: translateY(-2px); }

/* Provador aparecendo depois do "Provar agora" */
@keyframes provadorReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
body.provador-in .topbar { animation: provadorReveal 0.35s ease both; }
body.provador-in main.wrap { animation: provadorReveal 0.45s cubic-bezier(.16, 1, .3, 1) 0.08s both; }

/* Modal "Como funciona" (mesmo do B2B) */
.how-modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 900;
  animation: howOverlayFade 0.2s ease;
}
.how-modal__box {
  position: relative;
  background: var(--paper);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 760px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 44px 44px 36px;
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.35);
  animation: howModalPop 0.28s cubic-bezier(.2, .9, .3, 1.2);
}
.how-modal__close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--azul);
  cursor: pointer;
}
.how-modal__close:hover { color: var(--vermelho); }
.how-modal__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.9rem;
  margin: 0 0 26px;
}
.how-modal__note { font-size: 0.82rem; color: var(--preto-suave); margin: 28px 0 22px; }
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 24px 30px;
}
.how-num {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--vermelho);
  margin-bottom: 8px;
}
.how-item h3 { font-family: var(--display); font-weight: 700; margin: 0 0 6px; font-size: 1.25rem; }
.how-item p { margin: 0; color: var(--azul); font-size: 0.85rem; line-height: 1.5; }
@keyframes howOverlayFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes howModalPop {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: none; }
}

/* Rodape da loja (tela de abertura) */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 64px 44px 28px;
}
.site-footer__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 40px;
}
.site-footer__logo { height: 30px; width: auto; display: block; margin-bottom: 16px; }
.site-footer__about { margin: 0; max-width: 280px; font-size: 0.84rem; line-height: 1.6; color: var(--preto-suave); }
.site-footer h4 {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--preto);
  margin: 0 0 16px;
}
.site-footer__links,
.site-footer__contact { display: flex; flex-direction: column; gap: 13px; }
.site-footer__links { padding-top: 2px; }
.site-footer__links a,
.site-footer__contact a,
.site-footer__contact span {
  color: var(--azul);
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.5;
  transition: color 0.15s;
}
.site-footer__links a:hover,
.site-footer__contact a:hover { color: var(--vermelho); }
.site-footer__pay {
  max-width: 1180px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px dashed var(--line);
  text-align: center; font-size: 0.72rem; letter-spacing: 0.5px; color: var(--preto-suave);
}
.site-footer__bottom { text-align: center; font-size: 0.72rem; color: var(--preto-suave); margin-top: 18px; }

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s cubic-bezier(.34, 1.56, .64, 1);
}
.whatsapp-float:hover { transform: scale(1.08); }

@media (max-width: 860px) {
  .intro__hero { padding: 24px 22px 60px; min-height: 92vh; }
  .intro__title { font-size: 2.6rem; }
  .intro__brand { top: 24px; left: 22px; }
  .intro__brand img { height: 30px; }
  .intro__promo { top: 76px; font-size: 0.62rem; padding: 8px 16px; max-width: 88vw; white-space: normal; }
  .intro__scroll { display: none; }
  .how-modal__box { padding: 40px 24px 28px; }
}
@media (max-width: 720px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .site-footer { padding: 48px 24px 24px; }
}
@media (max-width: 420px) {
  .intro-btn { padding: 15px 26px; font-size: 0.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  .intro__content, .intro__scroll, .how-modal, .how-modal__box,
  body.provador-in .topbar, body.provador-in main.wrap { animation: none; }
}
