/**
 * Botões compartilhados - Portal IPVA PHP
 * Classe unificada para o botão "Acessar o sistema"
 * Usada em: index.php, resultado.php, pagamento.php
 */

/* =============================================
   BOTÃO "ACESSAR O SISTEMA" - PADRÃO ÚNICO
   ============================================= */
.sistema-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #0066cc;
  color: #0066cc;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.15s;
}

.sistema-btn:hover {
  background: #f9f9f9;
}

.sistema-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =============================================
   MOBILE - BOTÃO COMPACTO E CENTRALIZADO
   ============================================= */
@media (max-width: 768px) {
  .sistema-btn {
    width: auto;
    width: fit-content;
    max-width: 100%;
    max-width: fit-content;
    min-width: 0;
    display: inline-flex;
    justify-content: center;
    padding: 10px 18px;
    font-size: 14px;
    white-space: nowrap;
    margin: 0 auto;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .sistema-btn {
    padding: 9px 16px;
    font-size: 13px;
  }
}
