@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');

*{
    padding: 0;
    margin: 0;
    outline: none;
    border: none;
    box-sizing: border-box;
}

img{
    width: 100%;
    display: flex;
}
a{
    text-decoration: none;
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: #FCEAD6;
}
nav{
    max-width: 1200px;
    margin: auto;
    padding: 2rem 1rem;
    display:flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    
}
.nav-logo{
    max-width: 150px;
}
.nav-link{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10rem;
    font-size: 24px;   
}
.link a{
    position: relative;
    padding-bottom: 0.75rem;
    color: #623207;
}
.link a::after{
    content: "";
    align-items: center;
    position: absolute;
    width: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    background-color: #623207;
    border-radius: 30px;
    transition: all 1s ease;
}
.link a:hover::after{
    width: 60%;
}
.btn{
    background: transparent;
    padding: 10px;
    width: 200px;
    border: 2px #623207 solid;
    border-radius: 10px;
    transition: 0.5s;
}
.btn a{
    font-family: 'Poppins' sans-serif;
    color: #623207;
    font-size: 16px;
    font-weight: 700;
}

.btn:hover{
    background: #623207;
    a{
        color: #fff;
    }
}
.container{
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
    
}
    
header{
    position: relative;
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 2rem;
    transition: 1s;

}
    
    
    header .content h4{
        color: #623207;
}
    header .content h1{
    color: #623207;
    font-family: 'Poppins';
    font-weight: 800;
    span{
        background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: #623207 1px;
        transition: 2.5s;
    }
}
header .content h1:hover{
    span{
        background-position: 100%;
    }
}
header .content p{
    background: #623207;
    background-clip: text;

    transition: 2.5s;
}
header .content .btn{
    border: 2px none;
    margin-top: 2rem;
    background: #623207;
    transition: 1s;
    a{
        color: #fff;
    }
}
header .content .btn:hover{
    border: #623207 1px solid;
    margin-top: 2rem;
    background: #ffffff;
    transition: 1s;
    a{
        color: #623207;
    }
}
header .image{
    margin-left: 5rem;
    width: 500px;
        p{
            color: #343436;
            font-size: 10px;
        }
}
.espaco{
    height: 300px;
}
.cardapio{
    max-width: 1200px;
    margin: auto;
    padding: 1rem 2rem;
}
.cardapio .content h1{
    font-size: 46px;
    background-clip: text;
        -webkit-text-fill-color: transparent;
        -webkit-text-stroke: #623207 2px;
}
.cardapio .content .produto{
    margin: 2rem;
    font-family: 'Poppins';
    .titulo{
        color: #623207;
    }
}
footer{
    margin-top: 100px;
    width: 100%;
    text-align: center;
    padding: 50px;
    font-size: 14px;
    color: #FCEAD6;
    background-color: #623207;
}
footer p{
    margin: 3px;
}
.link-whatzap img{
    height: 60px;
    position: fixed;
    right: 20px;
    bottom: 20px;
}
@media (max-width: 800px){
    *{
        max-width: 400px;
        
    }
    nav{
        display:flex;
        .nav-link{
            gap: 2rem;


        }
        .link a{
        font-size: 12px;
        }
    }

    .inicio{
        width: 100%;
        vertical-align: middle;
        margin-bottom: 30px;
    }
    .nav-logo{
        width: 150px;
        align-items: center;
    }
    .cardapio{
        font-size: 26px;
        padding-left: 50px;
        padding-right: 50px;
        text-align:justify;
    }

    header{
        display: block;
        gap: 0;
    }
    .btn a{
        font-size: 10px;
    }
    .cardapio{
        margin: auto;
        padding: 1rem 2rem;
    }
    .cardapio .content h1{
        font-size: 36px;
        background-clip: text;
            -webkit-text-fill-color: transparent;
            -webkit-text-stroke: #623207 2px;
    }
    .cardapio .content .produto{
        margin: 0.25rem;
        font-family: 'Poppins';
        .titulo{
            color: #623207;
            font-size: 16px;
        }
        p{
            font-size: 12px;
        }
    }
    header .image{
        width: 300px;
        margin: 0.25rem;
    }
}