/*#region Mac*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
    text-decoration: none;
}

header{
    position: fixed;
    display: flex;
    justify-content: space-between;
    margin: 0.5rem;
}

body{
    overflow-x: hidden;
}

header{
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.circle{
    border-radius: 50%;
    background-color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.5rem 1rem;
}

.circle img{
    width: 1.2rem;
}

.header-img img{
    width: 100vw;
    height: 35vh;
}

.establishment{
   display: flex;
   flex-direction: column; 
   margin: 1rem;
}

.banner{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.establishment .banner .about{
    display: flex;
    justify-content: center;
    align-items: center;
}

.establishment .banner .about img{
    width: 5rem;
    height: auto;
}

.establishment .banner .about .text{
    margin-left: .5rem;
}

.establishment .banner .about .text .title{
    font-size: 1.6rem;
    font-weight: 600;
}

.establishment .banner .about .text .desc{
    font-size: 1rem;
    color: #7E8392;
}

.aval{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: .5rem 1rem;
    border: rgba(0, 0, 0, 0.09) 1px solid;
    border-radius: 2rem;
}

.aval img{
    width: 1.4rem;
    margin-right: 1rem;
}

.aval .subtitle{
    font-size: 1.2rem;
    font-weight: 500;
}

.open{
    display: flex;
    align-items: center;
    color: #00B969;
    margin-top: .5rem;
    margin-bottom: 0.5rem;
}

.open img{
    width: 1.4rem;
}

.open .subtitle{
    margin-left: .5rem;
}

.line{
    width: 100vw;
    height: 1.4px;
    background-color: rgba(0, 0, 0, 0.09);
}

.scroll{
    margin: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.tag{
    border: rgba(0, 0, 0, 0.09) 1px solid;
    width: fit-content;
    padding: 0.5rem 1rem;
    border-radius: 71px;
    color: #7E8392;
}

.tag:hover{
    color: #FFB100;
    font-weight: 600;
}

.tag.active{
    border: #FFB100 1px solid;
    background-color: #FFB100;
    color: #fff;
    font-weight: 600;
}

.menu .title{
    margin: 0 1rem;
    font-size: 1.6rem;
    font-weight: 600;
}

.product .row{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.product .row .text{
    width: 65vw;
}

.product .row .img{
    width: 8rem;
    height: 8rem;
    background-color: rgba(0, 0, 0, 0.09);
    border-radius: 1rem;
    margin: 1rem 0;
}

.product .row img{
    width: 8rem;
    height: 8rem;
}

.product .row .text .subtitle{
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
}

.product .row .text .desc{
    font-size: 1rem;
    color: #7E8392;
}

.row:hover{
    opacity: .5;
}

.price{
    font-size: 1.4rem;
    font-weight: 600;
    color: black;
}
/*#endregion*/
