/* BACKGROUND IMAGE */
.background-header {
    width: 100vw;
    height: 35vh;
    background-image: url(../imgs/img.png);
    background-size: cover;
    padding: 0;
}

/* FIM BACKGROUND IMAGE */

* {
    padding: 0;
    color: #323232;
}

html {
    overflow-x: hidden;
}

.main {
    background-color: white;
    margin-top: -2rem;
    border-radius: 24px 24px 0 0;
}

/* HEADER MAIN */
.header-main,
.menu {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.header-main {
    border: 1px solid rgba(0, 0, 0, .09);
}

.restaurante-rate,
.restaurante,
.rate,
.aberto-fechado {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.restaurante-rate {
    justify-content: space-between;
}

.restaurante .logo {
    padding: 0 1rem 0 0;
}

.rate {
    gap: .5rem;
    padding: .5rem 1rem;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 24px;
}

.about-restaurante h1 {
    font-weight: 600;
    font-size: 26px;
}

.about-restaurante p {
    opacity: 40%;
    font-size: 18px
}

.rate p {
    font-size: 18px;
    font-weight: 500;
}

.aberto-fechado {
    display: flex;
    flex-direction: row;
    gap: .3rem;
}

.aberto-fechado p {
    color: #00B969;
}

/* FIM HEADER MAIN */

/* DAQUI PRA BAIXO CSS MENU */
.menu nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.menu nav a {
    color: #7e8392;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(0, 0, 0, .09);
    border-radius: 24px;
    font-weight: 600;
    font-size: 15px;
}

.menu nav a.active {
    color: white;
    background-color: #FFB100;
    border-radius: 24px;
}

.menu nav a.active:hover {
    color: white;
}

.menu nav a:hover {
    color: #FFB100;
}

.class {
    font-weight: 600;
    font-size: 20px;
}

.item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    padding: 1rem 0 .5rem;
    border-bottom: 1px solid rgba(0, 0, 0, .09);
}

.img {
    width: 8rem;
    background-color: rgba(0, 0, 0, .09);
    padding: 0.5rem;
    border-radius: 24px
}

.prod {
    color: #7E8392;
}

.desc h3 {
    padding-top: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.btn{
    position: fixed;
    top: 0;
    z-index: 99;
}

.right{
    right: 0;
}

.left{
    left: 0;
}

a.btn{
    padding: 1rem;
}