/* small extras for the live hero */
.dash-row.tick-on {
  background: var(--accent-soft) !important;
  border-color: var(--accent);
}
.dash-row.tick-on .stat { color: var(--brand); font-weight: 600; }

/* Form: marcador "(opcional)" ao lado do label */
.field-optional {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-soft);
  margin-left: 4px;
  letter-spacing: 0;
}

/* Form: estado loading do botão de envio */
form[data-contact] button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: progress;
}

/* Form: estado de erro nos inputs */
form[data-contact] .error {
  border-color: var(--danger) !important;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.10);
}

/* Hero: micro-bloco discreto com cidade — abaixo dos trust pills */
.hero-locale {
  margin: 28px 0 0;
  font-size: 14px;
  line-height: 22px;
  color: #2D3B57;
  font-weight: 500;
  max-width: 540px;
}
.hero-locale strong { color: var(--text); font-weight: 700; }
.hero-locale i {
  color: var(--brand);
  display: inline-block;
  vertical-align: -2px;
  margin-right: 4px;
}

/* Footer: NAP block (Name · Address · Phone) — endereço estruturado */
.footer-nap {
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  line-height: 22px;
  color: rgba(245,245,247,0.62);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-nap a { color: rgba(245,245,247,0.78); text-decoration: none; transition: color 140ms; }
.footer-nap a:hover { color: #fff; }

/* Footer: smartphones reais (≤480px) ganham 1 coluna em vez de 2.
   Em ≤768px o site.css já vai pra 2-col com gap 32px; em iPhone SE (375px)
   e Galaxy (360px) cada coluna ficaria ≈148px, com links quebrando em 2 linhas.
   Empilhar é mais elegante. */
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}
