/* BER Consulta CNPJ — apenas animações e elementos dinâmicos do JS */
/* Todo o layout visual está em estilos inline no PHP */

@keyframes ber-spin {
    to { transform: rotate(360deg); }
}
.ber-cnpj-spinner {
    animation: ber-spin 0.8s linear infinite;
}

/* Hover nos botões de ação dentro do hero */
#ber-gerar-pdf:hover     { background: #1558a0 !important; }
#ber-compartilhar:hover  { background: rgba(255,255,255,.2) !important; }
.ber-cnpj-copy-btn:hover { background: rgba(255,255,255,.2) !important; color: #fff !important; }

/* Links nas listas hover */
.ber-cnpj-list-item:hover { background: #f8fafc; }

/* Paginação */
.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: #475569;
    border: 1px solid #e2e8f0;
    margin: 2px;
    transition: all .15s;
}
.page-numbers:hover   { background: #f8fafc; border-color: #1e73be; color: #1e73be; }
.page-numbers.current { background: #1e3a5f; color: #fff; border-color: #1e3a5f; }
