html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Fundo padrão limpo para todas as telas internas (Dashboard, Vagas, Currículos, etc.) */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa !important;
    background-image: none !important;
}

/* Garante o fundo de imagem apenas quando a classe estiver presente */
body.bg-com-fundo {
    background-image: url('../img/imgFundo1.jpg') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
}

/* Configuração da Navbar */
.navbar {
    width: 100% !important;
}

.fundo {
    background: #00072d !important;
    color: rgb(218, 215, 250);
}

.fundo2 {
    background: rgb(21, 105, 91) !important;
}

/* Ícone Home alinhado dentro do Header */
.nav-link-home {
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link-home:hover {
    color: #adf6f2 !important;
    transform: scale(1.1);
}

/* Botão Flutuante do WhatsApp */
.btn-whatsapp-flutuante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
    text-decoration: none;
}

.btn-whatsapp-flutuante:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

/* Rodapé */
footer {
    margin-top: auto;
    background: #00072d;
    color:antiquewhite;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}