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

* {
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    margin: 0 auto;
    padding: 0;
}

body {
    background-color: #f1f5f5;
}

header {
    background-color: #C68B59;
    width: 100%;
    box-shadow: 1px 1px 10px 1px #8fc0d471;
}

header a {
    color: white;
    font-weight: 500;
    margin: 10px;
}

.cabecalho {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-items: center;
}

.tamlogo {
    width: 240px;
    height: 138px;
}

.barrapesquisa {
    display: flex;
    justify-content: center;
}

.barrapesquisa input {
    width: 380px;
    min-width: 150px;
    font-size: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px 0px 0px 5px;
}

.barrapesquisa button {
    width: 25%;
    padding: 5px 10px;
    background-color: #FCDEC0;
    color: #483434;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-out;
    border-radius: 0px 5px 5px 0px;
}

.barrapesquisa button:hover {
    background-color: #865439;
    color: white;
}

.nav {
    margin: 0px;
    display: flex;
    align-items: center;
    list-style: none; 
}

.iconeperfil {
    width: 45px;
    height: 45px;
}

.dropbtn {
    background-color: #FCDEC0;
    color: #483434;
    padding: 16px 100px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-out;
    border-radius: 5px 5px 0px 0px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 296.475px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: #483434;
    padding: 12px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #865439;
    color: white;
}

.categoriassite {
    display: flex;
    align-items: center;
}

.linksuteis a:hover {
    color: #483434;
    text-decoration: underline;
}

.banner {
    display: block;
    width: 95%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    box-shadow: 1px 1px 10px #8fc0d470;
    border-radius: 5px;
}

.listadeproduto {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-left: 5%;
    margin-right: 5%;
}

.produto { 
    background-color: white;
    width: 300px;
    height: 300px;
    margin: 10px;
    padding: 10px;
    box-shadow: 1px 1px 10px #8fc0d471;
    border-radius: 5px;
}

.produto img {
    display: block;
    width: 235px;
    height: 196px;
    margin-top: 10px;
}

.nomeproduto {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.comprar { 
    background-color: #FCDEC0;
    color: #483434;
    padding: 10px;
    margin: 10px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-out;
    border-radius: 5px;
}

.comprar:hover {
    background-color: #865439;
    color: white;
}

.comprar1 { 
    background-color: #FCDEC0;
    color: #483434;
    padding: 10px;
    margin: 10px;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: all 300ms ease-out;
    border-radius: 5px;
}

.comprar1:hover {
    background-color: #865439;
    color: white;
}

main>h1 {
    color: #483434;
    margin-left: 1em;
    margin-top: 20px;
}

.produto h3 {
    color: #483434;
    font-weight: 400;
    font-size: 20px;
    margin: 0 auto;
    padding-top: 10px;
    padding-right: 10px;
    padding-left: 10px;
}

.produto h2 {
    color: #483434;
    font-weight: 500;
    font-size: 20px;
    margin: 0 auto;
    padding-right: 10px;
    padding-left: 10px;
}

.produto:hover {
    text-decoration: underline;
    color: #483434;
}

footer {
    color:white;
    background-color: #C68B59;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

@media only screen and (max-width: 1050px) {
.cabecalho {
    margin: 0 10px;
}

.tamlogo {
    width: 150px;
    height: 86px;
}

.barrapesquisa input {
    max-width: 250px;
    width: 220px;
    min-width: 150px;
    font-size: 15px;
    padding: 10px;
    border: none;
    transition: all 300ms;
}

.iconeperfil {
    width: 35px;
    height: 35px;
}

.iconecarrinho {
    width: 40px;
    height: 40px;
}

.produto { 
    background-color: white;
    width: 300px;
    height: 210px;
    margin: 10px;
    padding: 10px;
    box-shadow: 1px 1px 10px #8fc0d471;
    border-radius: 5px;
}

.produto img {
    width: 117px;
    height: 98px;
}
}

@media only screen and (max-width: 550px) {
.tamlogo {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.header a {
    margin-right: 0em;
    padding-right: 0em;
}

.iconeperfil {
    width: 25px;
    height: 25px;
}

.iconecarrinho {
    width: 30px;
    height: 30px;
}

.barrapesquisa {
    margin-bottom: 10px;
}

.perfilcarrinho {
    display: flex;
    justify-content: space-between;
}

.dropbtn {
    padding: 1em;
    font-size: 1em;
}

.listadeproduto {
    flex-direction: column;
    align-content: center
}

.produto {
    width: 80%;
    height: 40%;  
}      
}
        



