:root {
  --ink: #0d171c;
  --ink-2: #14222a;
  --ink-3: #1c2e38;
  --ink-card: #182832;
  --paper: #f5f4ee;
  --paper-2: #ffffff;
  --paper-card: #ffffff;
  --muted: #5e6f77;
  --muted-light: #94a5ad;
  --line: #dcdad2;
  --line-dark: #293d48;
  --accent: #e26138;
  --accent-hover: #c94f27;
  --accent-soft: #faebe4;
  --accent-glow: rgba(226, 97, 56, 0.25);
  --success: #208756;
  --success-soft: #eaf6ef;
  --white: #ffffff;
  --margem: clamp(16px, 4vw, 40px);
  --raio: 8px;
  --transicao: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   TOPO & NAVEGAÇÃO
   ========================================================================== */
.topo {
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.topo-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px var(--margem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.marca {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 20px;
}

.marca-simbolo {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--ink-3);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-size: 18px;
  color: var(--accent);
}

.marca-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted-light);
  background: var(--ink-3);
  padding: 2px 8px;
  border-radius: 20px;
  border: 1px solid var(--line-dark);
  letter-spacing: 0;
}

.topo-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.menu-link {
  color: #cfd8dc;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transicao);
}

.menu-link:hover {
  color: var(--accent);
}

.topo-acoes {
  display: flex;
  align-items: center;
  gap: 12px;
}

.botao-prumo-topo {
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  color: var(--white);
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transicao);
}

.botao-prumo-topo:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.botao-prumo-topo .seta {
  color: var(--accent);
  transition: var(--transicao);
}

.botao-prumo-topo:hover .seta {
  color: var(--white);
}

/* ==========================================================================
   ESPAÇOS GOOGLE ADSENSE
   ========================================================================== */
.container-anuncio {
  max-width: 1240px;
  margin: 18px auto;
  padding: 0 var(--margem);
}

.container-anuncio.intermediario {
  margin: 48px auto;
}

.bloco-anuncio {
  background: #ebe9e0;
  border: 1px dashed #cfccc0;
  border-radius: var(--raio);
  padding: 10px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.anuncio-cabecalho {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.anuncio-rotulo {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #8c979d;
  text-transform: uppercase;
}

.anuncio-slot {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.anuncio-placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  color: #79868c;
  font-size: 13px;
}

.anuncio-placeholder.retangular {
  min-height: 250px;
  background: #f1efea;
  border-radius: 4px;
}

.anuncio-badge {
  display: inline-block;
  background: #dedcd3;
  color: #556268;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.banner-resultado {
  margin-top: 32px;
  background: #f8f7f2;
}

/* ==========================================================================
   HERO DA PÁGINA
   ========================================================================== */
.pagina {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px var(--margem) 60px;
}

.hero-cabecalho {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 36px;
}

.selo-novidade {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: #cfd8dc;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.ponto-pulso {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulso 1.8s infinite;
}

@keyframes pulso {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(226, 97, 56, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(226, 97, 56, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(226, 97, 56, 0); }
}

.hero-titulo {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--ink);
}

.hero-titulo .destaque {
  color: var(--accent);
}

.hero-subtitulo {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--muted);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 720px;
}

/* ==========================================================================
   QUADRO PRINCIPAL DA FERRAMENTA
   ========================================================================== */
.quadro {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: 0 12px 36px rgba(13, 23, 28, 0.06);
  position: relative;
}

.quadro-topo-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.selo-etapa {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.limites {
  display: flex;
  gap: 16px;
  margin: 0;
  flex-wrap: wrap;
}

.limite-item {
  border-left: 2px solid var(--line);
  padding-left: 10px;
}

.limite-item.bonus-destaque {
  border-left-color: var(--accent);
}

.limite-item dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.limite-item dd {
  margin: 2px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.limite-item.bonus-destaque dd {
  color: var(--accent);
}

/* ==========================================================================
   ÁREA DE SOLTURA (DRAG & DROP)
   ========================================================================== */
.solta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  border: 2px dashed #b5bec2;
  border-radius: 10px;
  background: #faf9f5;
  cursor: pointer;
  text-align: center;
  padding: 36px 20px;
  transition: var(--transicao);
  outline: none;
}

.solta:hover,
.solta:focus-visible {
  border-color: var(--accent);
  background: #fff8f5;
  transform: translateY(-2px);
}

.solta:active {
  transform: translateY(0);
}

.solta input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.solta-circulo {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  margin-bottom: 16px;
  transition: var(--transicao);
}

.solta:hover .solta-circulo {
  background: var(--accent);
}

.solta-icone {
  font-size: 26px;
  line-height: 1;
}

.solta .principal {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.solta .secundaria {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.solta .aviso-formato {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted-light);
  background: #eeebe1;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Representação de cota visual */
.cota-tecnica {
  margin: 28px 0 10px;
  position: relative;
  text-align: center;
}

.cota-svg {
  width: 100%;
  height: 14px;
  color: #aebbc0;
  display: block;
}

.cota-texto {
  display: inline-block;
  position: relative;
  top: -12px;
  background: var(--paper-2);
  padding: 0 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ==========================================================================
   ISCA DE LEADS (BÔNUS DE COTAS)
   ========================================================================== */
.card-lead-rapido {
  margin-top: 24px;
  background: #fbf8f5;
  border: 1px solid #ebd9cf;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-lead-rapido .lead-info {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lead-icone {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}

.card-lead-rapido h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.card-lead-rapido p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

.lead-form .campo-grupo {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lead-form input[type="email"] {
  flex: 2;
  min-width: 240px;
  padding: 12px 16px;
  border: 1px solid #c9c7be;
  border-radius: 6px;
  font-size: 14px;
  background: var(--white);
}

.lead-form input[type="email"]:focus {
  outline: 2px solid var(--accent);
  border-color: var(--accent);
}

.lead-form select {
  flex: 1.5;
  min-width: 210px;
  padding: 12px 14px;
  border: 1px solid #c9c7be;
  border-radius: 6px;
  font-size: 13px;
  background: var(--white);
  color: var(--ink);
}

.lead-feedback {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
}

.lead-feedback.sucesso {
  color: var(--success);
}

.lead-feedback.erro {
  color: #c92a2a;
}

/* ==========================================================================
   TELA MEDINDO (PROGRESSO)
   ========================================================================== */
.estado-medindo-wrapper {
  text-align: center;
  padding: 40px 20px;
}

.medindo-titulo {
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
}

.nome-arquivo-ativo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--accent);
  background: #fdf5f1;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 28px;
}

.barra-progresso-container {
  max-width: 480px;
  height: 6px;
  background: #e6e3da;
  border-radius: 4px;
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
}

.barra-progresso-animada {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: var(--accent);
  border-radius: 4px;
  animation: varredura 1.4s ease-in-out infinite alternate;
}

@keyframes varredura {
  from { left: 0%; width: 30%; }
  to { left: 70%; width: 30%; }
}

.medindo-passos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.passo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.passo.ativo {
  color: var(--ink);
  font-weight: 600;
}

.passo-ponto {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.medindo-aviso {
  font-size: 13px;
  color: var(--muted-light);
  margin-top: 20px;
}

/* ==========================================================================
   TELA PRONTO (RESULTADO)
   ========================================================================== */
.resultado-topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.selo-sucesso {
  display: inline-block;
  background: var(--success-soft);
  color: var(--success);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.medida {
  font-size: clamp(52px, 10vw, 96px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
  margin: 0;
  color: var(--ink);
}

.medida-apoio {
  font-size: 15px;
  color: var(--muted);
  margin: 8px 0 0;
}

.acoes-download {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Laudo Técnico */
.laudo-container {
  margin-top: 24px;
}

.laudo-titulo {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 12px;
}

.carimbo {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fbfaf6;
  margin: 0;
}

.carimbo div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.carimbo div:last-child {
  border-right: none;
}

.carimbo dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.carimbo dd {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.aviso {
  background: #fff8f4;
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--ink-2);
  border-radius: 0 6px 6px 0;
}

/* Prévia da Prancha */
.previa {
  margin: 26px 0 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.previa img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: contain;
  background: #ffffff;
}

.previa figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 16px;
  border-top: 1px solid var(--line);
  background: #fbfaf6;
}

.previa.carregando::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.7) 50%, transparent 70%);
  animation: desliza 1.2s linear infinite;
}

@keyframes desliza {
  to { transform: translateX(100%); }
}

/* ==========================================================================
   TELA DE RECUSA (ERRO / RASTER)
   ========================================================================== */
.recusa-card {
  padding: 10px 0;
}

.recusa-cabecalho {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.recusa-icone {
  font-size: 36px;
  line-height: 1;
}

.recusa-cabecalho h2 {
  font-size: 24px;
  margin: 0 0 8px;
  color: #ad3326;
}

.recusa-card .motivo {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
}

.recusa-solucoes {
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.recusa-solucoes h4 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.lista-dicas {
  margin: 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--ink-2);
}

.lista-dicas li {
  margin-bottom: 10px;
}

.recusa-acoes {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.link-secundario {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}

/* ==========================================================================
   BOTÕES GERAIS
   ========================================================================== */
.botao {
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transicao);
  text-decoration: none;
}

.botao-destaque {
  background: var(--accent);
  color: var(--white);
}

.botao-destaque:hover {
  background: var(--accent-hover);
}

.botao-sucesso {
  background: var(--success);
  color: var(--white);
}

.botao-sucesso:hover {
  background: #196f45;
}

.botao-vazado {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.botao-vazado:hover {
  border-color: var(--ink);
}

.botao-neutro {
  background: #eae8e1;
  color: var(--ink);
}

.botao-neutro:hover {
  background: #dcd8d0;
}

.botao-cta-gigante {
  background: var(--accent);
  color: var(--white);
  padding: 16px 28px;
  font-size: 16px;
  border-radius: 8px;
}

.botao-cta-gigante:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* ==========================================================================
   SEÇÕES DE CONTEÚDO (COMO FUNCIONA / COMPARATIVO)
   ========================================================================== */
.secao {
  padding: 72px 0;
}

.secao-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--margem);
}

.secao-container.pequeno {
  max-width: 860px;
}

.secao-cabecalho {
  margin-bottom: 48px;
}

.secao-cabecalho.centralizado {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.selo-secao {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.secao-cabecalho h2 {
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.secao-cabecalho p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
}

/* Grade de passos */
.grade-passos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-passo {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 26px;
  position: relative;
  transition: var(--transicao);
}

.card-passo:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
}

.passo-numero {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 20px;
}

.card-passo h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.card-passo p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* Tabela Comparativa */
.tabela-container {
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.tabela-comparativa {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tabela-comparativa th,
.tabela-comparativa td {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.tabela-comparativa thead th {
  background: #fbfaf6;
  font-weight: 700;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tabela-comparativa .coluna-destaque {
  background: #fff8f5;
  font-weight: 600;
  color: var(--ink);
}

.status-ok {
  color: var(--success);
  font-weight: 800;
  margin-right: 6px;
}

.status-ruim {
  color: #c92a2a;
  font-weight: 800;
  margin-right: 6px;
}

/* ==========================================================================
   SEÇÃO PRUMO ERP & ECOSSISTEMA (ISCA DE VENDAS)
   ========================================================================== */
.secao-prumo {
  background: var(--ink);
  color: var(--white);
  padding: 84px 0;
  position: relative;
}

.secao-cabecalho.claro h2 {
  color: var(--white);
}

.secao-cabecalho.claro p {
  color: var(--muted-light);
}

.prumo-badge-topo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.prumo-ponto {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.grade-produtos-prumo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.card-produto-prumo {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transicao);
}

.card-produto-prumo:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.card-produto-prumo.destaque-borda {
  border-color: var(--accent);
  background: var(--ink-card);
}

.selo-card-destaque {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
}

.produto-icone {
  font-size: 32px;
  margin-bottom: 16px;
}

.produto-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--white);
}

.produto-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

.produto-descricao {
  font-size: 13px;
  color: #b2c2c9;
  line-height: 1.5;
  margin: 0 0 20px;
}

.produto-lista {
  margin: 0 0 24px;
  padding-left: 18px;
  font-size: 12px;
  color: #d1dde2;
}

.produto-lista li {
  margin-bottom: 8px;
}

.produto-rodape {
  margin-top: auto;
}

.botao-card-prumo {
  width: 100%;
  background: var(--ink-3);
  border: 1px solid var(--line-dark);
  color: var(--white);
}

.botao-card-prumo:hover {
  background: var(--white);
  color: var(--ink);
}

/* Banner de Fechamento */
.banner-cta-prumo {
  background: linear-gradient(135deg, var(--ink-card) 0%, #172a33 100%);
  border: 1px solid var(--line-dark);
  border-radius: 12px;
  padding: 40px clamp(24px, 4vw, 48px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.banner-cta-prumo .cta-texto {
  flex: 1;
  min-width: 280px;
}

.banner-cta-prumo h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.banner-cta-prumo p {
  color: #b2c2c9;
  font-size: 15px;
  margin: 0;
  max-width: 580px;
}

/* ==========================================================================
   FAQ & ACORDION
   ========================================================================== */
.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 22px;
  transition: var(--transicao);
}

.faq-item[open] {
  border-color: #c9c6bc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-pergunta {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

.faq-pergunta::-webkit-details-marker {
  display: none;
}

.faq-pergunta::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
}

.faq-item[open] .faq-pergunta::after {
  content: "−";
}

.faq-resposta {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-resposta p {
  margin: 0;
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */
.rodape {
  background: #081014;
  color: #8c9ba0;
  padding: 60px 0 30px;
  border-top: 1px solid #14222a;
}

.rodape-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--margem);
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.marca.clara {
  color: var(--white);
  margin-bottom: 14px;
}

.rodape-sobre {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 360px;
}

.rodape-seguranca {
  display: inline-block;
  font-size: 12px;
  color: #a8b8be;
}

.rodape-coluna h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.rodape-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rodape-links li {
  margin-bottom: 10px;
}

.rodape-links a {
  font-size: 13px;
  color: #8c9ba0;
  transition: var(--transicao);
}

.rodape-links a:hover {
  color: var(--accent);
}

.rodape-inferior {
  max-width: 1240px;
  margin: 0 auto;
  padding: 24px var(--margem) 0;
  border-top: 1px solid #14222a;
  text-align: center;
  font-size: 12px;
  color: #5c6b70;
}

/* ==========================================================================
   ALVO GLOBAL DE ARRASTO DE ARQUIVO
   ========================================================================== */
.alvo-global {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 23, 28, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.arrastando .alvo-global {
  display: flex;
}

.moldura {
  border: 2px dashed var(--accent);
  border-radius: 12px;
  padding: 60px 80px;
  background: var(--ink-2);
  color: var(--white);
}

.moldura-icone {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}

.moldura strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
}

.moldura span {
  display: block;
  color: #aebbc0;
  margin-top: 8px;
  font-size: 14px;
}

.oculto {
  display: none !important;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE / TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .grade-produtos-prumo {
    grid-template-columns: repeat(2, 1fr);
  }
  .carimbo {
    grid-template-columns: repeat(2, 1fr);
  }
  .carimbo div:nth-child(2) {
    border-right: none;
  }
  .carimbo div:nth-child(1),
  .carimbo div:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .rodape-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .topo-menu {
    display: none;
  }
  .marca-badge {
    display: none;
  }
  .grade-passos {
    grid-template-columns: 1fr;
  }
  .grade-produtos-prumo {
    grid-template-columns: 1fr;
  }
  .rodape-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .banner-cta-prumo {
    flex-direction: column;
    text-align: center;
  }
  .banner-cta-prumo p {
    margin: 0 auto;
  }
  .acoes-download {
    width: 100%;
  }
  .acoes-download .botao {
    flex: 1;
    min-width: 140px;
  }
  .lead-form .campo-grupo {
    flex-direction: column;
  }
  .lead-form input[type="email"],
  .lead-form select,
  .lead-form button {
    width: 100%;
    min-width: 0;
  }
  .moldura {
    padding: 36px 20px;
  }
}

