footer {
    background-color: #333;
    color: white;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.logo-footer h2 {
    font-size: 24px;
}

.menu, .contact, .map, .social {
    flex: 1;
    min-width: 200px;
}

.menu h3, .contact h3, .map h3, .social h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.menu-list, .phone-list, .email-list {
    list-style: none; /* Remove os pontos da lista */
    padding: 0;
    margin: 0;
}

.map iframe {
    width: 100%;
    height: 200px;
    border: none;
}

.social a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.copy {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .menu, .contact, .map, .social {
        min-width: auto;
        width: 100%;
    }

    .social a {
        justify-content: center;
    }
}
