*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#F8F5F2;

}

header{

    height:80px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:0 80px;

    background:white;

    box-shadow:0 2px 10px rgba(0,0,0,.08);

}

.logo{

    font-size:32px;

    font-weight:bold;

    color:#6A4E42;

}

nav{

    display:flex;

    gap:40px;

}

nav a{

    text-decoration:none;

    color:#444;

    font-weight:bold;

}

.imagem-capa{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:contain;

    z-index:0;

}

.hero{

    height:calc(100vh - 80px);

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    text-align:center;

    padding:20px;

    position:relative;

}

.hero::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(255,255,255,0.45);

}

.hero h1,
.hero p{

    position:relative;

    z-index:1;

    transform:translateY(-180px);

}

.hero button{

    position:relative;

    z-index:1;

}
.hero h1{

    font-size:60px;

    color:#6A4E42;

    margin-bottom:20px;

}

.hero p{

    font-size:22px;

    max-width:700px;

    margin-bottom:40px;

    color:#555;

}

button{

    padding:18px 45px;

    border:none;

    border-radius:40px;

    background:#8B5E3C;

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

button:hover{

    background:#6A4E42;

}

/* PRODUTOS */

.produtos{

    padding:80px;

    text-align:center;

    background:#F8F5F2;

}


.produtos h2{

    font-size:40px;

    color:#6A4E42;

    margin-bottom:50px;

}


.lista-produtos{

    display:flex;

    justify-content:center;

    gap:40px;

    flex-wrap:wrap;

}


.produto{

    background:white;

    width:300px;

    transition:.3s;

    padding:25px;

    border-radius:20px;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

}


.produto img{

    width:100%;

    height:250px;

    object-fit:contain;

}


.produto h3{

    color:#6A4E42;

    font-size:24px;

    margin:15px 0;

}


.produto p{

    font-size:20px;

    color:#555;

    margin-bottom:20px;

}
/*sobre*/

.sobre{

    padding:100px 80px;

    text-align:center;

    background:white;

}


.sobre h2{

    font-size:40px;

    color:#6A4E42;

    margin-bottom:30px;

}


.sobre p{

    max-width:800px;

    margin:auto;

    font-size:20px;

    line-height:1.8;

    color:#555;

}

/*CONTATO*/

.contato{

    padding:100px 80px;

    text-align:center;

    background:#F8F5F2;

}


.contato h2{

    font-size:40px;

    color:#6A4E42;

    margin-bottom:30px;

}


.contato p{

    font-size:20px;

    color:#555;

    margin:15px;

}


.contato a{

    color:#8B5E3C;

    text-decoration:none;

    font-weight:bold;

}