/* Estilos para o Footer */
footer {
    background-color: #141414;
    color: #FFFFFF;
    padding: 30px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact {
    margin-top: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: #97AF5A;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #b8d072;
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 150px;
    }
}
