/* Fonte base moderna */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    background: url('assets/bg.png') repeat !important;
    background-size: cover !important;
}


/* Títulos */
h2, h3, h4 {
    color: #0056b3;
    font-weight: 700;
}

/* Botões Laranja */
.btn-warning {
    background-color: #f57c00 !important;
    border: none;
    color: #fff !important;
    transition: background-color 0.3s ease;
}
.btn-warning:hover {
    background-color: #e86c00 !important;
}

/* Botões Secundários */
.btn-secondary {
    background-color: #6c757d !important;
    color: #fff !important;
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: #5a6268 !important;
}

.container {
    background: transparent !important;
}

