.tickety-cards-wrapper {
	font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
}

.tickety-cards-vazio {
	text-align: center;
	color: #888;
	padding: 40px 0;
}

.tickety-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 28px;
}

.tk-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(20, 20, 20, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tk-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 28px rgba(20, 20, 20, 0.12);
}

.tk-card-capa {
	position: relative;
	height: 180px;
	background: linear-gradient(135deg, #ff7a3d 0%, #e8460a 100%);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tk-card-capa-placeholder {
	font-size: 48px;
	opacity: 0.85;
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
}

.tk-card-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 6px 14px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #fff;
	backdrop-filter: blur(4px);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.tk-badge-aberta {
	background: rgba(30, 158, 58, 0.92);
}

.tk-badge-em-breve {
	background: rgba(34, 113, 177, 0.92);
}

.tk-card-corpo {
	padding: 20px 22px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.tk-card-titulo {
	margin: 0;
	font-size: 19px;
	font-weight: 800;
	color: #1a1a1a;
	line-height: 1.3;
}

.tk-card-meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.tk-card-meta-item {
	font-size: 13.5px;
	color: #555;
}

.tk-card-preco {
	font-size: 15px;
	font-weight: 700;
	color: #e8460a;
}

.tk-card-prazo {
	margin: 0;
	font-size: 12.5px;
	color: #b26a00;
	font-weight: 600;
}

.tk-card-acoes {
	margin-top: auto;
	padding-top: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	flex-wrap: wrap;
}

.tk-card-botao {
	display: inline-block;
	padding: 10px 20px;
	background: #e8460a;
	color: #fff !important;
	border-radius: 10px;
	font-weight: 800;
	font-size: 14px;
	text-decoration: none !important;
	text-align: center;
	transition: background 0.2s ease;
}

.tk-card-botao:hover {
	background: #cc3d09;
}

.tk-card-botao-desabilitado {
	background: #e2e2e2;
	color: #888 !important;
	cursor: default;
}

.tk-card-link-pdf {
	font-size: 13px;
	color: #555 !important;
	text-decoration: none !important;
	font-weight: 600;
}

.tk-card-link-pdf:hover {
	color: #e8460a !important;
}

@media (max-width: 480px) {
	.tickety-cards-grid {
		grid-template-columns: 1fr;
	}
}
