@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, .font-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;
    background-color: #fff;
}

.input-padrao:focus {
    border-color: #0284c7;
    box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #4d7c0f; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #3f6212; }