
.numero-como-funciona{
	font-size: 40px;
    color: black;
    font-weight: bold;
}


.how-it-works {
	background-color: #fff;
	padding: 50px 20px;
	text-align: center;
}

.how-it-works h2 {
	font-size: 36px;
	margin-bottom: 40px;
	color: #333;
}


.steps-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
}

.step {
	background-color: #f9f9f9;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	flex: 1 1 calc(33.333% - 40px);
	max-width: calc(33.333% - 40px);
	box-sizing: border-box;
	border:1px solid black;
}

.step:hover {
	background-color: #fdffd2;
	cursor:pointer;
}

.step .icon {
	background-color: #FFEB3B;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
	border:1px solid black;
}

.step .icon i {
	font-size: 40px;
	color: white;
}

.step h3 {
	font-size: 24px;
	color: #333;
	margin-bottom: 10px;
}

.step p {
	font-size: 16px;
	color: #666;
}

@media (min-width: 768px) {
	.how-it-works {
		padding-bottom:400px;
	}
}


@media (max-width: 768px) {
	.steps-container {
		flex-direction: column;
		align-items: center;
	}

	.step {
		max-width: 100%;
		flex: none;
	}
}


/**/
