/* Estilos do Rodapé */
.site-footer {
    background-color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 0;
    border-top: 1px solid #eaeaea;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-logo {
    flex: 0 0 auto;
}

.footer-logo-img {
    max-width: 180px;
    height: auto;
}

.footer-info {
    flex: 1 1 auto;
    text-align: center;
    padding: 0 20px;
}

.footer-info p {
    margin: 5px 0;
    color: #5A7D9A;
    font-weight: 500;
}

.footer-social {
    flex: 0 0 auto;
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #5A7D9A;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-social .fa-instagram:hover {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

.footer-social .fa-whatsapp:hover {
    background-color: #25D366;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
}

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

/* Responsividade do Rodapé */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    
    .footer-social {
        margin-top: 10px;
        justify-content: center;
    }
}
