.melhores-oportunidades-container {
	font-family: 'Dosis', sans-serif;
	position: relative;
	padding: 40px 20px;
	max-width: 1200px;
	margin: 0 auto;
	text-align: start;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.topo-melhores-oportunidades {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.titulo-melhores {
	font-weight: 700;
	color: #2a2a2a;
	font-size: 1.8rem;
	flex: 1 1 auto;
	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;
    box-shadow: 1px #000;
}

.btn-oportunidades:hover {
	background-color: #2499c6;
}

.lista-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
	margin-bottom: 50px;
}

.card-curso {
	background: white;
	border-radius: 16px;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
	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 {
	width: 100%;
	object-fit: cover;
	border-radius: 16px 16px 0 0;
}

.final-card, .final-card-oportunidades {
	margin-top: auto;
	text-align: left;
	padding: 10px 16px;
}

.final-card p, .final-card-oportunidades p {
	font-size: 1rem;
	font-weight: bold;
	color: #2F2F2F;
}

.card-curso .card-preco {
	font-size: 0.95rem;
	color: #555;
	border-top: 1px solid #eee;
	padding-top: 12px;
}

.card-curso .card-preco span {
	color: #30ADE7;
	font-weight: bold;
}

.valor_slide, .valor_slide-oportunidades {
	font-family: 'REM', sans-serif;
	color: #30ADE7;
	font-weight: 900;
	font-size: 16px;
	padding: 20px 10px 8px;
	text-align: left;
}

.desc_slide, .desc_slide-oportunidades {
	display: flex;
	flex-direction: column;
	gap: 6px;
	text-align: left;
}

.desc_slide {
	align-items: center;
	text-align: center;
}

.desc_slide div {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 4px;
}

.desc_slide span {
	font-weight: bold;
	font-size: 16px;
}

/* Tablets: 3 por linha */
@media (max-width: 992px) {
	.lista-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Celulares: 2 por linha */
@media (max-width: 600px) {
	.lista-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.topo-melhores-oportunidades {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.titulo-melhores {
		text-align: center;
	}

	.botao-oportunidades {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.btn-oportunidades {
		width: auto;
	}
}

/* Ultra Pequenos (menos de 400px) */
@media (max-width: 400px) {
	.lista-cards {
		grid-template-columns: 1fr;
	}
}
