/* Layout do body para manter o footer embaixo */
html,
body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

/* Container principal com espaço para empurrar o footer */
.container-fluid.content {
    flex: 1;
}

/* Rodapé */
footer {
    background: linear-gradient(90deg, #0b1e49, #1c4ba8);
    color: white;
    padding: 15px;
}

footer ul li a {
    display: inline-block;
    transition: transform 0.3s ease, letter-spacing 0.3s ease;
}

footer ul li a:hover {
    transform: scale(1.05);
    letter-spacing: 0.5px;
}

