.slider {
    width: 100vw;
    max-width: 100vw;
    height: 556px;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.slider .list {
    position: absolute;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;

}

.active_button {
    background-color: var(--cor-verde) !important;
    color: white !important;
    font-family: 'm-bold' !important;
    text-transform: uppercase;
    border: 0px !important;
}

.l2.active_button {
    background-color: var(--cor-verde) !important;
    color: white !important;
}

.slider .list img {
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    object-fit: fill;
}

.slider .buttons {
    position: absolute;
    top: 45%;
    left: 2%;
    width: 95%;
    display: flex;
    justify-content: space-between;


}

.slider .buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}

.slider .dots {
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .dots li {
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    transition: 0.5s;
}

.slider .dots li.active {
    width: 30px;
    background-color: var(--cor-azul);
}

@media screen and (max-width: 768px) {

    .slider {
        width: 100vw;
        max-width: 100vw;
        height: 213px;
        margin: auto;
        position: relative;
        overflow: hidden;
        margin-top: 0px;
    }

    .slider .list img {
        width: 100vw;
        max-width: 100vw;
        height: 100%;
        object-fit: cover;
    }


    .slider .buttons {
        position: absolute;
        top: 40%;
        left: 2%;
        width: 95%;
        display: flex;
        justify-content: space-between;
    }

    .slider .buttons img {
        width: 45px;
        height: 45px;
    }



    .list_container ul {
        list-style-type: none;
        padding: 0;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }


    .form-simul-button {
        grid-column: 1 / span 2;
        width: 100%;
        margin: auto;
        padding: 10px;
        background-color: var(--cor-cinza);
        color: white;
        font-weight: bold;
        border: 0;
    }

    .implantacao-imagem .img_implantacao {
        width: 100%;
  height: 239px !important;
        object-fit: contain;
    }




    .slider .list {
        position: absolute;
        width: 100%;
        height: 213px !important;
        left: 0;
        top: 0;
        display: flex;
        transition: 1s;

    }

    

    .info_infra {
        display: flex;
        grid-column: 1 / span 1;
        justify-content: center;
        justify-content: space-around;
        color: white;
        text-align: center;
        text-transform: uppercase;
        flex-direction: column;
    }

    .info_infra .text {
        color: var(--cor-verde);
        font-size: 1.3rem !important;
        font-family: 'm-bold';
        display: flex;
        justify-content: center;
    }
}