@charset "UTF-8";
/*
* Trunk version 2.0.0
*/
/* Container principal */
.produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 100px;/*Espaço entre colunas*/
  max-width: 1348px;
/*  padding: 40px 112px;*/
}

div.prod{
	width:300px !important;
	height:280px !important;
	border:2px solid #D3D3D3;
    border-radius: 15px 50px;
	padding-top:1%;
	/*background-color: aqua !important;*/
 }

/* 2 colunas para telas médias */
    @media (max-width: 1000px) {
      div.prod {
        width: 45%;
      }
    }

    /* 1 coluna para telas pequenas */
    @media (max-width: 600px) {
      div.prod {
        width: 90%;
      }
    }


p > img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}

h6{
	font-family: "Droid", sans-serif;
	font-size: 16px;
	line-height: 1.2;
	letter-spacing: .2em;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 0;
	color: #151515;
	text-align: center;
	/*background-color: #d1ecf1;*/

}

a, a:focus, a:active, a:hover {
	text-decoration: none;
}

a, a:focus, a:active {
	color: #007bff;
}

a:hover {
	color: #0056b3;
}

.prod-round{
	min-width:300px !important; 
	min-height:230px !important;
	border:2px solid #D3D3D3;
    border-radius: 15px 50px;	 
}

.text-size-16 {
  font-size: 16px !important;
  line-height: 1.4;
}

.text-line-height-1 {
  line-height: 1;
}

.text-dark {
  color: #000000 !important;
} 

.margin-top-0 {margin-top: 0 !important;}

.margin-top-0,.margin-bottom-60{display: block;}



