footer {
    background-color: #00BFFF; /* Azul celeste */
    padding: 30px 0;
    color: white;
    text-align: center;
    font-family: Arial, sans-serif;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-menu ul li {
    display: inline;
    margin: 0 15px;
}

.footer-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-menu ul li a:hover {
    color: #FFA500; /* Efeito hover em laranja */
}

.footer-social {
    margin: 20px 0;
}

.footer-social a img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1); /* Deixa o ícone branco */
    transition: transform 0.3s ease;
}

.footer-social a:hover img {
    transform: scale(1.1); /* Efeito de zoom no hover */
}

.footer-credits {
    margin-top: 20px;
    font-size: 14px;
    color: #f0f0f0;
}

/* Responsividade */
@media only screen and (max-width: 768px) {
    .footer-menu ul li {
        display: block;
        margin: 10px 0;
    }

    .footer-social a img {
        width: 30px;
        height: 30px;
    }
}
