.vitrine-cursos {
	width: 100%;
	margin: 24px 0;

	@media screen and (min-width: 768px) {
		margin: 32px 0;
	}
}

.vitrine-cursos 
.carregando-vitrine img {
	width: 80px;
	object-fit: cover;
	animation: pulseOpacity 1s ease-in-out infinite;
}

@keyframes pulseOpacity {
	0%,
	100% {
		opacity: 0.3;
	}

	50% {
		opacity: 1;
	}
}

.vitrine-cursos 
.container {
	gap: var(--md-spacing);

	@media screen and (min-width: 768px) {
		gap: var(--xl-spacing);
	}
}

/* .melhores-oportunidades-container {
	font-family: 'Dosis', sans-serif;
	position: relative;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: start;
	gap: 1rem;
} */

.topo-vitrine {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: var(--sm-spacing);

	@media screen and (min-width: 768px) {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
		gap: var(--lg-spacing);
	}
}

.topo-vitrine button {
	display: none;

	@media screen and (min-width: 768px) {
		display: block;
	}
}

.titulo-melhores {
	/* flex: 1 1 auto;
	text-align: left;
	font-weight: 700;
	color: #2a2a2a; */
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--sm-spacing);
	max-width: 650px;

	@media screen and (min-width: 768px) {
		align-items: flex-start;
		gap: var(--md-spacing);
	}
}

.titulo-melhores h2 {
	text-align: center;

	@media screen and (min-width: 768px) {
		text-align: left;
	}
}

/* .botao-oportunidades {
	flex-shrink: 0;
} */

/* .btn-oportunidades {
	background-color: #30ADE7;
	color: white;
	border: none;
	padding: 10px 14px;
	border-radius: 14px;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-right: 10px;
	box-shadow: 1px #000;
} */

/* .btn-custom:hover {
	background-color: #219ccf;
}

.btn-oportunidades:hover {
	background-color: #2499c6;
} */

.lista-cards {
	display: grid;
	grid-template-columns: repeat(2, 132px);
	flex-wrap: wrap;
	gap: var(--sm-spacing);

	@media screen and (min-width: 375px) {
		grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	}

	@media screen and (min-width: 425px) {
		grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
		gap: var(--md-spacing);
	}

	@media screen and (min-width: 1024px) {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	}
}

.card-curso {
	background: white;
	border: 2px solid #EFEFEF;
	border-radius: var(--sm-border-radius);
	box-shadow: 0 10px 24px -8px #ECECEC;
	text-align: center;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}

.card-curso:hover {
	/* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1); */
	transform: translateY(-4px);
}

.card-curso .card-logo img {
	max-width: 100%;
	object-fit: contain;
	display: block;
	border-radius: 16px;
}

/* .final-card {
	margin-top: auto;
	display: flex;
	justify-content: center;
} */

.final-card {
	margin-top: auto;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: var(--md-spacing);
	padding: 16px;
}

.final-card h5 {
	text-align: center;
	font-size: 16px;

	@media screen and (min-width: 768px) {
		text-align: left;
		font-size: 24px;
	}
}

/* .final-card p {
	font-size: 0.95rem;
	font-weight: bold;
	color: #2F2F2F;
	margin-bottom: 10px;
} */

/* Preço */
.card-curso .card-preco {
	font-size: 0.95rem;
	color: #555;
	border-top: 1px solid #eee;
	padding-top: 12px;
}

/* .valor_slide span {
	color: #30ADE7;
	font-weight: 900;
	font-size: 16px;
} */

/* .valor_slide {
	font-family: 'REM', sans-serif;
	padding: 20px 10px;
	text-align: center;
} */

.valor-slide {
	/* font-family: 'REM', sans-serif; */
	display: flex;
	flex-direction: column;
	/* gap: var(--sm-spacing); */
	gap: 4px;
	padding-bottom: 8px;
	text-align: center;

	@media screen and (min-width: 768px) {
		text-align: left;
	}
}

.valor-slide p {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;

	@media screen and (min-width: 768px) {
		flex-direction: row;
		gap: var(--sm-spacing);
	}
}

.valor-slide span {
	font-family: var(--font-descriptions-bold);
	color: var(--primary-color);
	/* font-weight: 900;
	font-size: 16px; */
}

.desc_slide-oportunidades {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	gap: 6px;
}

.desc_slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}

.desc_slide div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.desc_slide span {
	font-weight: bold;
	/* font-size: 16px; */
}

.card-curso .card-preco span {
	color: #30ADE7;
	font-weight: bold;
}