

.site-footer {
    position: relative;
    padding: 120px 0 0 0;
    text-align: center;
    color: var(--cor-branca);
    margin-top: -9vh;

}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(23, 56, 107, 0.3), rgba(23, 56, 107, 0.2)), url('../images/footer.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.footer-profile-pic {
    width: 12vw;
    height: 24vh;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    object-fit: cover;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0px auto 12vh auto;
    max-width: 21vw;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {

    display: flex;
    align-items: center;
    justify-content: center;


    padding: 0 20px;
    height: 6vh;

    background-color: rgba(255, 255, 255, 0.9);
    color: var(--cor-primaria);
    width: 19vw;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-links a:hover {
    transform: scale(1.05);
    background-color: var(--cor-branca);
}

.footer-copyright {
    background-color: #0d1d35; /* Um azul ainda mais escuro para a barra */
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: #adb5bd;
    font-size: 0.9rem;
}