/* configuracoes/estilo.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Montserrat:wght@600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #1e293b;
}

h1, h2, h3, h4, .fonte-destaque {
    font-family: 'Montserrat', sans-serif;
}

.input-padrao {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    padding: 10px 16px;
    outline: none;
    transition: all 0.2s;
}

.input-padrao:focus {
    border-color: #005b9f;
    box-shadow: 0 0 0 3px rgba(0, 91, 159, 0.2);
}

.btn-primario {
    background-color: #005b9f;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-primario:hover { background-color: #004578; }

.btn-secundario {
    background-color: #2ba84a;
    color: white;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: opacity 0.3s;
    cursor: pointer;
    text-align: center;
}

.btn-secundario:hover { opacity: 0.8; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #005b9f; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #004578; }