/* Container principal que envolve os boxes */
.box-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 15px; /* margem uniforme entre boxes */
	padding: 4%;
	padding-top: 1% !Important;
	box-sizing: border-box;
}

/* Cada box individual */
.box {
	position: relative;
	flex: 1 1 32%; /* ocupa cerca de 32% da largura do container */
	max-width: 300px;
	min-width: 160px;
	/*min-height: 350px;*/
	padding: 10px 7px 5px 7px;
	background-color: rgba(255, 255, 255, 0.7) !important;
	overflow: hidden;
	transition: 0.3s linear all;
	box-sizing: border-box;
}



.box:hover {
	background-color: rgba(255, 255, 255, 1) !important;
}

.box div:nth-child(1) {
	text-align:center; /* centraliza .box img */
	}
	
.box img {
	opacity: 0.8;
	position: relative;
	right: 10px;
	bottom: 10px;
	max-width: 130px;
	max-height: 100px;
	margin: 25px 10px 10px 10px;
	border-radius: 0 0 0 7px;
}

.titBox {
	display: none;
}

.box p {
	font-family: 'PT Sans Narrow', sans-serif;
	color: #000;
	font-size: 15px;
	line-height: 18px;
	margin: 0 4% 3px 4%;
	font-weight: 700;
	letter-spacing: 0.3px;
}

.box span {
	font-weight: 300 !important;
}
