@media screen and (max-width: 768px){

    :root{
        font-size: 16px;
    }

    .header section{
        padding: 15px;
        justify-content: space-between;
    }

    .logo{
        position: relative;
        left: 0;
    }

    .logo img{
        height: 45px;
    }

    /* MENU */

    .menu-mobile{
        display: block;
    }

    .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .navbar.active{
        display: flex;
    }

    /* SLIDER */

   .list{
    margin-top: 70px;

    min-height: 620px;
}
.item{
    flex-direction: column;

    text-align: center;

    justify-content: center;

    align-items: center;

    padding: 40px 20px 90px;

    gap: 20px;

    height: 620px;
}

    .product-img img{
        max-width: 220px;
        max-height: 220px;
    }

    .product-img{
        flex: 1;

        display: flex;
        justify-content: center;
        align-items: center;

        max-height: 400px;
}
    .content{
        align-items: center;
        max-width: 100%;
    }

    .product-tag{
        font-size: 1.2rem;
    }

    .product-name{
        font-size: 2rem;
    }

    .description{
        font-size: 1rem;
        line-height: 1.7;
    }

    /* SETAS */

    .arrows{
        top: 38%;
        padding: 0 10px;
    }

    .arrow-btn{
        width: 40px;
        height: 40px;
    }


    /* SOBRE */

    .about{
        padding: 60px 5%;
    }

    .about .row{
        flex-direction: column;
        padding: 25px;
    }

    .about .container-image{
        width: 100%;
        flex-direction: column;
    }

    .image-box{
        width: 100%;
    }

    .about .content{
        width: 100%;
        text-align: center;
    }

    .about .content h3{
        font-size: 2rem;
    }

    .about .content p{
        font-size: 1rem;
    }

    /* MAPA */

    .address iframe{
        width: 90%;
        height: 220px;
    }

    /* FOOTER */

    .footer .share a img{
        width: 40px;
        height: 40px;
    }

    /* WHATSAPP */

    .whatsapp img{
        width: 55px;
    }
}