* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

header {
    background-color: #6AB04C;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

header .logo img {
    max-width: 150px;
    height: auto;
}

.nav-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu span {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 5px;
    border-radius: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.close-menu {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

section.promo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: #F4F4F4;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

section.promo-section:nth-child(even) {
    background-color: #EAEAEA;
}

.promo-image img {
    max-width: 80%; /* Diminuído para 80% */
    height: auto;
    border-radius: 10px;
}

.promo-info {
    margin-left: 40px;
    color: #2D8F47; /* Cor da logo */
    text-align: center;
    max-width: 500px;
}

section:nth-child(even) .promo-info {
    order: 2;
    margin-left: 0;
    margin-right: 40px;
}

.promo-info h2 {
    color: #6AB04C; /* Cor da logo */
    margin-bottom: 20px;
    font-size: 28px;
}

.promo-info p {
    font-size: 18px;
    line-height: 1.6;
}

footer {
    background-color: #6AB04C;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-info p {
    margin: 5px 0;
}

/* Seção do Mapa */
.map-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background-color: #F4F4F4;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.map-frame iframe {
    max-width: 80%;
    border-radius: 10px;
}

.map-info {
    margin-left: 40px;
    color: #2D8F47; /* Cor da logo */
    text-align: center;
    max-width: 500px;
}

.map-info h2 {
    color: #6AB04C; /* Cor da logo */
    margin-bottom: 20px;
    font-size: 28px;
}

.map-info p {
    font-size: 18px;
    line-height: 1.6;
}
/* Estilo do botão WhatsApp flutuante */
.emp-zap-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emp-zap-icon {
    width: 60%;
    height: 60%;
}



@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #6AB04C;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 20px;
    }

    .close-menu {
        display: block;
    }

    section.promo-section,
    .map-section {
        flex-direction: column;
        text-align: center;
    }

    .promo-info,
    .map-info {
        margin-left: 0;
        margin-top: 20px;
        margin-right: 0;
    }

    section:nth-child(even) .promo-info,
    .map-info {
        order: 1;
        margin-right: 0;
    }
    
}
