*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
	list-style: none;
	text-decoration: none;
	scroll-behavior: smooth;
}
:root{
	--bg-color: #ffffff; /*cor do fundo*/
	--text-color: #111111; /*cor das letras*/
	--main-color: #5fc8b3;/*cor dos botão*/
	--big-font: 4.5rem; /*tamanho do nome look*/
	--h2-font: 3.3rem;
	--h3-font: 2rem;
	--normal-font: 1rem;
}

body{
	background: var(--bg-color);
	color: var(--text-color);
}
header{
    margin: 0;
	width: 100%;
	top: 0;
	right: 0;
	z-index: 1000;
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #ffffff;
	padding: 2px 14%;
	transition: all .35s ease;
	background-image: linear-gradient(90deg, #72fc72 0%, #E2D45C 50.52%, #7ca2e7 100%);
}
.logo{
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 1px;
	color: var(--text-color);
}
.navlist{
	display: flex;
}
.navlist a{
	color: var(--text-color);
	font-weight: 600;
	padding: 10px 25px;
	font-size: var(--normal-font);
	transition: all .36s ease;
}
.navlist a:hover{
	color: var(--main-color);
}
.header-icons img{
	font-size: 32px;
	color: var(--text-color);
	margin-right: 20px;
	transition: all .36s ease;
}
.header-icons i:hover{
	color: var(--main-color);
}

/*catalogo*/


#produtos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;

  }
.produto:hover{
		transform: scale(1.1);
		cursor: pointer;
        position: relative;
	    transition: all .35s ease;
}
.catalog{
		
        width:100vw ;
        padding: 40px; /*tirar la de cima*/
        margin-left:150px;
      }
h6{
	color: black;
    font-size: 50px;
   padding: 100px;
    margin-left: 400px;
    border-radius: 30px;
	
}
section .produtos{
    border: groove;
	border-radius: 10px;
    max-width: 1500px;
    height: 40%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    grid-gap: 40px;
    padding: 50px;
	background-color: white;
	

}
section .produto{
	border: groove;
    height: 400px; /*separa d camisa a letra*/
    background: var(--gray);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
	padding-bottom: 20px;
	background-color: hsl(0, 0%, 100%);
	
}
section .prod {
    height: 8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
} 

.prod h3 {
	font-size: 15px;
}

.prod p {
	margin-top: 10px;
	color:rgb(12, 2, 121);
	font-weight: 700;
}
