/* INFORMAÇÕES1 */  

    .servicosAreaTxt{
        max-height: 100%;
        overflow: auto;
    }
    /* .servicosAreaTxt{
        transition: transform 0.3s ease-in-out;
        transform: translateX(-100%);
    }
    .servicosAreaTxt.servicoActiveTxt{
        transform: translateX(0%);
    } */

    .servicosAreaBtn{
        padding-bottom: 10px;
        margin-bottom: 10px;
        cursor: pointer;
        /* border-right: solid 1px white; */
    }
    .servicosAreaBtn:not(:last-child){
        border-bottom: solid 1px var(--colorsecond);
    }
    
    .servicosAreaBtnInner{
        position: relative;

        transition: all 0.3s ease-in-out;
        color: var(--colorsecond) !important;
    }
    .servicoActiveBtn .servicosAreaBtnInner{
        color: var(--colorfirst) !important;
    }
    /* .servicoActiveBtn .servicosAreaBtnInner::after{
        content: '';
        position: absolute;
        right: 0;
        width: 3px;
        height: 100%;
        transform: translateX(67%);
        background-color: var(--colorfirst);
        z-index: 1;
    } */

    .servicosBtnsCol{
    }

    .servicosSection *{
        color: white;
    }

    
    .servicosSectionColorOverlay{
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: var(--darkgrey);
        opacity: 0.8;    
        z-index: -1;
    }

    .servicosBtnsCol,
    .servicosTextsCol{
        max-height: 305px;
        overflow-y: auto;
        overflow-x: visible;
    }
    .servicosTextsCol{
    }

/* END INFORMAÇÕES1 */


/* menu */

    .servicosMenu{
        position: absolute;
        padding: 30px 0px;
        width: 100%;
        transform: translateY(-100%);
    }
    .servicosMenu a{
        color: white;
        transition: all 0.2s ease-in-out;
        /* padding: 0 15px; */
    }
    /* .servicosMenu a:hover{
        color: var(--colorfirst);
    } */

    /* .servicosMenu a:not(:last-child)::after{
        content: '|';
        padding: 0 15px;
        display: inline-block;
    } */

    .servicoMenuSeparator{
        color: white;
        padding: 0 15px;
    }

    .servicosMenuBg{
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: var(--colorsecond);
        opacity: 0.7;
        top: 0;
        left: 0;
        z-index: -1;
    }

    .servicosMenuInner{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* MENU MOBILE */
        /* thin bars */
            .custom_bars_cont {
                cursor: pointer;
            }

            .custom_bars_bar {
                height: 3px;
                width: 40px;
                background-color: var(--verydarkgrey);
                margin: 7px 0;
                transition: all 0.3s ease-in-out;
            }
        /* thin bars */


        .servicosMenuMobileMenuBtn{
            position: fixed;
            top: 5%;
            right: 5%;
            z-index: 105;
        }

        .servicosMenuMobileMenu{
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 90vw;
            background-color: var(--verylightgrey);
            z-index: 100;
            padding: 50px;

            -webkit-box-shadow: 0px 0px 38px 0px rgba(0,0,0,0.51); 
            box-shadow: 0px 0px 38px 0px rgba(0,0,0,0.51);

            transform-origin: center center;
            transition: all 0.6s ease-in-out;
        }
        .servicosMenuMobileMenu.opened{
            right: 0%;
        }
        .servicosMenuMobileMenu .servicoMenuSeparator{
            display: none;
        }
        .servicosMenuMobileMenu a{
            padding: 15px 0;
            display: block;
        }


        .custom_bars_cont.opened .custom_bars_bar:nth-child(1),
        .custom_bars_cont.opened .custom_bars_bar:nth-child(2),
        .custom_bars_cont.opened .custom_bars_bar:nth-child(3),
        .custom_bars_cont.opened .custom_bars_bar:nth-child(4){
            margin: 0;
        }
        .custom_bars_cont.opened .custom_bars_bar:nth-child(1){
            opacity: 0;
            transform: translateY(100%) rotateZ(45deg);
        }
        .custom_bars_cont.opened .custom_bars_bar:nth-child(4){
            opacity: 0;
            transform: translateY(-100%) rotateZ(-45deg);
        }

        .custom_bars_cont.opened .custom_bars_bar:nth-child(2){
            transform: translateY(50%) rotateZ(45deg);
        }
        .custom_bars_cont.opened .custom_bars_bar:nth-child(3){
            transform: translateY(-50%) rotateZ(-45deg);
        }
    
    /* END MENU MOBILE */

/* END menu */


.pontos1Item,
.pontos2Item{
    margin: 0 15px;
    flex: 1 1 0px;
    width: 20%;
    max-width: 20%;
}


@media (max-width: 650px) {
    .pontos1Item,
    .pontos2Item{
        width: 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
    }
}