#footer-wexite {
    background-color: var(--header);
    display: flex;
    padding: 25px 0px;
    color: white;
    font-size: 14px;
    justify-content: center;
    gap: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode #footer-wexite {
    background-color: var(--bg-page);
}

#footer-wexite a {
    color: white;
}

#footer-wexite img {
    width: 200px;
    transition: all 0.3s ease;
}

#footer-wexite img:hover {
    width: 210px;
}

#footer-redes {
    display: none;
}

@media (max-width: 768px) {
    #footer-redes {
        display: flex;
        gap: 1vw;
        margin-top: 15px;
    }

    #footer-text {
        text-align: center;
        width: 90vw;
    }

    #footer-wexite {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}