/* 1. FORÇA A COR DA LINHA DO TOPO (TODAS AS VARIANTES POSSÍVEIS) */
/*div[class*="bg-red"], 
div[class*="bg-brand"], 
.bg-red-500, 
.bg-brand-500,
header + div,
body > div:first-child {
    background-color: #114D88 !important;
}*/

/* 2. CUSTOMIZAÇÃO DO LOGO */
header svg { display: none !important; }
header a[href="/"]::before {
    content: "";
    display: inline-block;
    width: 150px;
    height: 50px;
    background: url(/custom-logo.png) no-repeat center;
    background-size: contain;
    margin-right: 10px;
}

/* 3. CORES DOS BOTÕES */
button, .btn, input[type="submit"], [class*="button"], [class*="btn"] {
    background-color: #114D88 !important;
    border-color: #114D88 !important;
    color: white !important;
    background-image: none !important;
}
button:hover, .btn:hover {
    background-color: #0d3a66 !important;
}
/* Força a cor na div que você identificou */
div.fixed.left-0.top-0.z-50.h-1.w-full {
    background-color: #114D88 !important;
}
