/* ===== Landing pages de produto — sem menu de navegação, foco em conversão ===== */

body.landing-page .lp-header{
  position:static;
  border-bottom:1px solid var(--line);
  background:var(--paper);
}
.lp-header-inner{
  max-width:1280px;margin:0 auto;padding:20px 32px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.lp-logo{height:42px;width:auto;display:block;}
.lp-header-cta{white-space:nowrap;}

/* header aqui não é fixo (não sobrepõe conteúdo), então a página não herda o padding-top gigante do site */
body.landing-page .product-hero{padding-top:56px;}

/* botão flutuante do WhatsApp — ver definição completa mais abaixo, junto do ajuste mobile */

/* faixa de CTA intermediária, entre seções */
.lp-cta-band{background:var(--panel);padding:56px 0;}
.lp-cta-band .wrap{
  display:flex;align-items:center;justify-content:space-between;gap:28px;flex-wrap:wrap;
}
.lp-cta-band-text h3{
  font-family:var(--display);font-weight:800;font-size:26px;line-height:1.15;
  color:var(--panel-ink);text-transform:uppercase;margin-bottom:8px;
}
.lp-cta-band-text p{color:rgba(234,227,210,.72);font-size:14px;max-width:480px;}
.lp-cta-band .btn{flex-shrink:0;}

/* chips não clicáveis (segmentos, na landing, sem levar a outra página) */
.chip-static{cursor:default;}
.chip-static:hover{background:transparent;color:inherit;}
.chip-static:hover b{color:var(--stamp);}

/* rodapé minimalista — só contato, sem links de navegação do site */
.lp-footer{background:var(--panel);color:var(--panel-ink);padding:52px 0 26px;}
.lp-footer .wrap{text-align:center;}
.lp-footer-brand{
  font-family:var(--display);font-weight:800;font-size:19px;text-transform:uppercase;margin-bottom:16px;
}
.lp-footer-contact{
  display:flex;gap:28px;justify-content:center;flex-wrap:wrap;
  font-family:var(--mono);font-size:13px;margin-bottom:24px;
}
.lp-footer-contact a{color:var(--panel-ink);display:inline-flex;align-items:center;gap:7px;}
.lp-footer-contact a:hover{color:var(--stamp);}
.lp-footer-bottom{
  font-family:var(--mono);font-size:11px;color:rgba(234,227,210,.5);
  border-top:1px solid rgba(234,227,210,.15);padding-top:18px;
}

.btn-wa{display:inline-flex;align-items:center;gap:9px;}
.btn-wa svg{width:16px;height:16px;fill:currentColor;}

/* ===================== MOBILE — prioridade máxima, é onde a maioria vai ver ===================== */
@media (max-width:640px){
  /* espaçamento vertical das seções — no desktop os blocos têm 100-130px de padding,
     o que em tela pequena vira rolagem excessiva e sensação de "página vazia" */
  body.landing-page .block{padding:56px 0;}
  body.landing-page .final{padding:64px 0 70px;}
  body.landing-page .product-hero{padding-top:20px;}
  .lp-cta-band{padding:40px 0;}
  .lp-cta-band-text h3{font-size:21px;}
  .lp-cta-band-text p{font-size:13.5px;}

  /* CTAs em largura total e empilhados — alvo de toque maior, hierarquia mais clara,
     evita botões de tamanhos desiguais lado a lado */
  .pcta-row, .btn-row, .lp-cta-band .wrap{flex-direction:column;align-items:stretch;}
  .pcta-row .btn, .btn-row .btn, .lp-cta-band .btn{width:100%;justify-content:center;text-align:center;}
  .lp-cta-band .wrap{gap:20px;}

  /* botões — altura mínima confortável para toque (padrão ~44-48px) */
  .btn{padding:16px 22px;font-size:13px;}
}

@media (max-width:480px){
  /* cabeçalho: nome do botão do WhatsApp precisa sumir antes de estourar a tela —
     ícone sozinho já comunica a ação e mantém o alvo de toque generoso */
  .lp-header-inner{padding:14px 20px;gap:10px;}
  .lp-logo{height:32px;}
  .lp-header-cta{padding:0;width:46px;height:46px;justify-content:center;border-radius:50%;flex-shrink:0;}
  .lp-header-cta .cta-label{display:none;}
  .lp-header-cta svg{width:22px;height:22px;}
}

/* botão flutuante do WhatsApp — visível o tempo todo, em qualquer ponto da rolagem */
.wa-float{
  position:fixed;right:22px;bottom:22px;z-index:200;
  width:60px;height:60px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 24px rgba(0,0,0,.28);
  transition:transform .18s ease;
  /* respeita a área segura em iPhones com barra de gestos */
  right:max(22px, env(safe-area-inset-right));
  bottom:max(22px, env(safe-area-inset-bottom));
}
.wa-float:hover{transform:scale(1.08);}
.wa-float svg{width:28px;height:28px;fill:#fff;}
@media (max-width:640px){
  .wa-float{width:56px;height:56px;right:max(16px, env(safe-area-inset-right));bottom:max(16px, env(safe-area-inset-bottom));}
  .wa-float svg{width:26px;height:26px;}
}

/* galeria — no mobile as setas precisam de alvo de toque real (mín. ~40px), não 32px */
@media (max-width:640px){
  .gallery-wrap{touch-action:pan-y;}
  .gallery-nav{width:40px;height:40px;font-size:14px;}
  .gallery-dot{width:9px;height:9px;}
}

/* ficha técnica — tabela de 2 colunas não cabe em telas muito estreitas com layout automático;
   table-layout:fixed força quebra de linha em vez de estourar a largura da tela */
@media (max-width:480px){
  body.landing-page table.spec-table{table-layout:fixed;font-size:12.5px;}
  body.landing-page table.spec-table th,
  body.landing-page table.spec-table td{padding:10px 8px;word-wrap:break-word;overflow-wrap:break-word;}
  body.landing-page table.spec-table td:first-child,
  body.landing-page table.spec-table th:first-child{width:40%;}
}
