@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

header {
    display: flex;
    height: 80px;
    align-items: center;
    width: 100vw;
    background-color: #FFFDFE;
    color: #000;
    padding: 25px 3%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.19);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }


.header-img img {
    width: 60px;
    margin-top: 5px;
}

#navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#nav-list {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-item a {
    text-decoration: none;
    color: #000000;
    font-weight: 400;
    padding: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
}

#mobile_btn {
    display: none;
}

#mobile_menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background-color: #fff;;
    padding: 20px;
    width: 100%;
    position: absolute;
    top: 79px;
    left: 0;
    z-index: 200;
}

.list-btn {
    display: flex;
    gap: 30px;
}

.list-btn button {
    display: flex; /* Para alinhar corretamente o ícone */
    justify-content: center;
    align-items: center;
    background-color: #7ABF93;
    border: none;
    border-radius: 50%; /* Mantém o botão redondo */
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Efeito suave ao passar o mouse */
}

.list-btn button img {
    width: 25px; /* Um tamanho um pouco menor para melhor proporção */
    height: auto; /* Mantém a proporção da imagem */
}
.list-btn2 {
    display: flex;
    margin-top: 10px;
    gap: 30px;
}

.list-btn2 button {
    display: flex; /* Para alinhar corretamente o ícone */
    justify-content: center;
    align-items: center;
    background-color: #7ABF93;
    border: none;
    border-radius: 50%; /* Mantém o botão redondo */
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Efeito suave ao passar o mouse */
}

.list-btn2 button img {
    width: 25px; /* Um tamanho um pouco menor para melhor proporção */
    height: auto; /* Mantém a proporção da imagem */
}

@media screen and (max-width: 1170px) {
    #navbar {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #nav-list,
    .list-btn {
        display: none;
    }

    #mobile_btn {
        display: block;
        border: none;
        background-color: transparent;
        font-size: 1.3rem;
        cursor: pointer;
        color: #989C83;
    }
    
    #mobile_menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    #mobile_nav_list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 12px 0px;
    }
    #mobile_nav_list .nav-item {
        list-style: none;
        text-align: center;
    }
    
}