@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: 'Roboto', sans-serif;
    
}
html{
    scroll-behavior: smooth;
}
.cabecalho-produtos{
    display: flex;
    align-items: center;
    width: 100%;
    background: linear-gradient(120deg, #ec8e18, #ae6540, rgb(240, 104, 0)  );
    height: 250px;
    font-size: 35px;
    text-align: center;
    color: aliceblue;
}
.desc-produtos{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    width: 100%;
    margin: auto;
}
.desc-tela-produtos{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: auto;
    margin-top: 50px;
}
.itens-produtos {
    display: flex;
    flex-direction: column;
    
}

.menu-tela-produtos ul li{
    list-style: none;
    border: 4px solid rgba(0, 0, 0, 0.068);
    border-radius: 10px;
    margin: 5px;
    margin-bottom: 10px;
}
.menu-tela-produtos ul li a{
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 450px;
    height: 50px;
    transition: background-color .4s;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    
}

.menu-tela-produtos ul li a i{
    padding: 10px;
    
}
.menu-tela-produtos ul a:hover{
    background-color: #ec8e18;
    border-radius: 10px;
    
}
.desc-produto-item{
    padding: 20px;
      
}
.desc-produto-item h2{
    color: #ec8e18;
    margin-top: 40px;
    padding: 10px;
    border-left: 5px solid black;
    border-radius: 5px;
}
.desc-produto-item p{
    padding: 10px;
    font-size: 20px;
    font-weight: 600;
}