@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

:root{
    --color01:#f2b88571; /*bege*/
    --color02:#A66038;/*ton terroso*/
    --color03:#734E40;/*cinza meio marrom*/
    --color04:#D9B1A3;/*meio branco com bege?*/
    --color05:#261514;/*preto meio cinza*/

    --font-padrao:"Quicksand", sans-serif; /*fonte para paragrafos e etc.*/
    --font-tittles:"Bebas Neue", sans-serif;/*fonte para titulos=> h1's, h2's etc*/

}
*{
    margin: 0px;
    padding: 0px;
}
body{
    font-family: var(--font-padrao);
}
header{
    background-color: var(--color03);
    height: 80px;
    padding: 20px;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
header h1{
    color: white;
    font-family: var(--font-tittles);
    font-weight: lighter;
    font-size: 3em;
    height: 56px;
    text-shadow: 3px -1px 7px rgba(0, 0, 0, 0.421);
}
header p{
    color:var(--color05);
    font-family: var(--font-padrao);
    font-weight: 500;
    font-size: 0.8em;
    padding-left: 30px;
    text-shadow: 3px -1px 7px rgba(0, 0, 0, 0.421);
}
header h1 > span{
    color:var(--color05);
    font-size: 1.2em;
}
nav{
    background-color: var(--color05);
    text-align: center;
    padding: 10px;
}
nav a{
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    transition-duration: 1s;
    border-radius: 5px;
    background-color: var(--color05);
}
nav a:hover{

    background-color: var(--color03);
    text-decoration: underline;
}
.presentation{
    text-align: center;
    padding: 20px;
    max-width: 700px ;
    margin: auto;
}
.presentation h1 {
    background-image: linear-gradient(to top, var(--color01), transparent);
    font-family: var(--font-tittles);
    font-weight: lighter;
    font-size: 1.7em;
    border-radius: 20px;
    box-shadow: rgb(38, 57, 77) 0px 5px 30px -10px;
}
.presentation p{
    display: inline-block;
    font-family: var(--font-padrao);
    font-weight: normal;
    font-size: 0.8em;
    text-align: justify;
    margin: 15px 0px;
    max-width: 380px;
}
.product-1{
    width: 300px;
    text-align: center;
    justify-content: center;
    justify-items: center;
    background-color: var(--color04);
    margin:  20px auto;
    border-radius: 20px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.136) 0px 14px 28px, rgba(0, 0, 0, 0.123) 0px 10px 10px;
}
.product-1 img{
    text-align: center;
    width: 200px;
    border-radius: 2px;
}
.product-1 p{
    width: 300px;
}
.product-2 {
    margin: auto;
    background-color: var(--color04);
    text-align: center;
    justify-items: center;
    padding: 10px;
    border-radius: 20px;
    width: 300px;
    box-shadow: rgba(0, 0, 0, 0.136) 0px 14px 28px, rgba(0, 0, 0, 0.123) 0px 10px 10px;
}
.product-2 img {
    width: 200px;
    border-radius: 2px;
}
.product-3{
    margin: 20px auto;
    background-color: var(--color04);
    text-align: center;
    padding: 10px;
    width: 300px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.136) 0px 14px 28px, rgba(0, 0, 0, 0.123) 0px 10px 10px;
}
.product-3 img{
    width: 200px;
    border-radius: 2px;
}
footer{
    color: white;
    background-color: black;
}
footer p {
    text-align: center;
    padding: 10px;
    font-size: 0.6em;
}
p > a{
    color: var(--color01);
    text-decoration: none;
    font-weight: bold;
}