nav {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: linear-gradient(90deg, #1D2025 0%, #4C5A62 67.71%, #3B434B 100%);
    /* padding: 10px 0px !important; */
    background-size: cover;
    font-family: 'poppins';
}

.paa-2{
    padding: 11px;
}

nav img {
    max-width: 200px;
    position: absolute;
    margin-top: -14px;
}

.nav-item.active a {
    color: #fff !important;
    text-decoration: underline !important;
}

.nav-item a {
    color: #fff !important;
    font-size: 16px;
}

.navbar label {
    position: relative;
    padding: 0px 15px !important;
    height: 20px;
    display: grid;
    align-items: center;
    justify-items: center;
    width: 10px;
    margin-top: 10px;
    display: none;
}

.navbar label span {
    width: 100%;
    height: 3px;
    background: #f3f3f4;
    position: absolute;
    left: 0;
    transition: all 0.3s ease-in-out;
}

.navbar label span:nth-child(1) {
    top: 0px;
}

.navbar label span:nth-child(2) {
    top: 8px;
}

.navbar label span:nth-child(3) {
    top: 16px;
}

.navbar label.menu_button_active span:nth-child(1) {
    transform: rotate(-45deg);
    top: 8px;
}

.navbar label.menu_button_active span:nth-child(2) {
    opacity: 0;
}

.navbar label.menu_button_active span:nth-child(3) {
    transform: rotate(45deg);
    top: 8px;
}

.menu_button_mobile.menu_button_active {
    animation: animate_button 0.6s;
}

.whatsapp-menu {
    margin-left: 1rem;
    z-index: 2;
    height: 40px;
    padding: 0px 20px;
    background-color: #01e675;
    color: white;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline-style: none !important;
    cursor: pointer;
    font-weight: 600;
    font-size: 22px;
    transition: all 0.6s ease;
    width: 40px;
}











@keyframes animate_button {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-90deg);
    }
}

@media(max-width: 991px) {
    nav {
        padding: 20px 15px !important;
    }

    .nav-item a {
        color: #fff !important;
        font-size: 30px;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        position: fixed;
        top: -14px;
        left: 0;
        background-color: #212529;
        justify-content: space-around;
        align-items: center;
        transform: translateY(-150%);
        transition: .3s;
        z-index: 1;
        margin-top: 84px;
        overflow: auto;
        padding-bottom: 100px;
        height: 100vh;
    }

    .scroll-hidden {
        overflow-y: hidden;
    }

    .show_menu {
        transform: translateY(0) !important;
    }

    .collapse:not(.show) {
        display: flex;
        background: #fff;
        z-index: 1;
    }

    .navbar label {
        display: grid;
    }

    .logo_centralizar {
        display: flex;
        /*justify-content: center;*/
        width: 40%;
    }

    nav img {
        max-width: 200px;
        position: absolute;
        margin-top: -30px;
    }
}