@media (max-width: 900px) {
    div.menu{
        gap: 20px;
        list-style: none;
        padding: 40px;
        justify-content:unset !important;
        text-align: center !important;
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 300px;
        background: #E6E6E6;
        flex-direction: column;
        padding-top: 80px;
        gap: 30px;
        transition: 0.3s ease-in-out;
        
    }

    div.menu *, div.wp-btn-header{
        justify-content: center !important;
    }


    div.hamburger span {
        width: 30px;
        height: 4px;
        margin-bottom: 5px;
        background: black;
        transition: 0.3s;
        
    }

    div.menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        margin-right: 20px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    /*SECTION 1*/

    section.section-1{
        position: relative;
        top: 95px;
        background-color: black;
        background-image: url("../Imagens/car\ background.webp");
        background-repeat: no-repeat;
        background-size:cover;
        background-position: center;
    }

    div.side-a{
        border-radius: 0;
        padding: 50px;
    }

    div.container-2-img{
        display: none;
    }

    /* SECTION 2 */

    section.logo-section{
        /* display: unset !important; */
    }

    /* SECTION 3 */

    div.seg-advantages{
        width: 90%;
    }

    /* SECTION 4 - LOCATION */

    div.google-maps iframe{
        width: 95%;
    }

    /* FOOTER */

    section.comp-utils{
        display: unset;
    }

    section.company-info, section.policies {
        margin-bottom: 40px;
    }

    /* SERVICES PAGE */

    section.serv-sec{
        top: 100px !important;
    }

    div.serv{
        flex-direction: column !important;
        transform: unset;
        height: 700px !important;
    }

    div.serv-content, div.serv-img{
        width: 100% !important;
        height: 400px !important;
    }


}