/* =========================================
   🎨 Estilos customizados ALEMS
   ========================================= */

/* Ajusta a fonte global */
body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Navbar personalizada */
.navbar-brand {
    font-weight: bold;
    font-size: 1.25rem;
}

.navbar {
    background-color: #003366 !important; /* Azul ALEMS */
}

.navbar .nav-link {
    color: #e6e6e6 !important;
    font-weight: 500;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* Botões */
.btn-primary {
    background-color: #0066cc;
    border-color: #005bb5;
}

.btn-primary:hover {
    background-color: #004c99;
    border-color: #003d80;
}

/* Cards */
.card {
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

/* 🔹 Rodapé fixo e elegante */
footer {
    background-color: #f8f9fa; /* mesmo do bg-light */
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); /* sombra superior sutil */
    position: relative; /* garante sobreposição correta */
    z-index: 10;
}

/* Títulos */
h1, h2, h3, h4 {
    font-weight: 600;
    color: #003366;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    color: #004c99;
    text-decoration: underline;
}
