.pl-ingresso-card {
	--pl-accent: #0f6b24;
	--pl-price: var(--pl-accent);
	--pl-icon-bg: var(--pl-accent);
	--pl-button-bg: var(--pl-accent);
	--pl-button-text: #ffffff;
	--pl-button-hover-bg: var(--pl-button-bg);
	--pl-placeholder-bg: linear-gradient(135deg, rgba(15, 107, 36, 0.92), rgba(16, 39, 18, 0.92)), radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 28%);
	width: 100%;
	background: #ffffff;
	border: 1px solid #ece4d7;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 14px 35px rgba(16, 39, 18, 0.10);
	font-family: inherit;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pl-ingresso-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 45px rgba(16, 39, 18, 0.16);
}

.pl-ingresso-image {
	position: relative;
	height: 150px;
	overflow: visible;
	background: #0f3b1f;
}

.pl-ingresso-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pl-ingresso-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-weight: 700;
	background: var(--pl-placeholder-bg);
}

.pl-ingresso-icon {
	position: absolute;
	left: 24px;
	bottom: -26px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--pl-icon-bg);
	border: 4px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	z-index: 2;
	color: #ffffff;
}

.pl-ingresso-icon svg,
.pl-ingresso-icon i {
	width: 25px;
	height: 25px;
	font-size: 25px;
	line-height: 1;
	fill: currentColor;
	color: #ffffff;
}

.pl-ingresso-content {
	padding: 40px 24px 24px;
}

.pl-ingresso-title {
	margin: 0 0 18px;
	color: var(--pl-accent);
	font-size: 27px;
	line-height: 1.15;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.pl-ingresso-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pl-ingresso-list li {
	position: relative;
	padding-left: 24px;
	color: #4f594b;
	font-size: 15px;
	line-height: 1.45;
}

.pl-ingresso-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--pl-accent);
	font-weight: 900;
}

.pl-ingresso-price {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	margin-bottom: 18px;
}

.pl-ingresso-price-prefix {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 5px;
	color: var(--pl-price);
}

.pl-ingresso-price-value {
	font-size: 46px;
	line-height: 0.9;
	font-weight: 900;
	letter-spacing: -0.04em;
	color: var(--pl-price);
}

.pl-ingresso-price-suffix {
	color: #6d7468;
	font-size: 14px;
	margin-left: 8px;
	margin-bottom: 5px;
}

.pl-ingresso-button {
	display: block;
	width: 100%;
	text-align: center;
	background: var(--pl-button-bg);
	color: var(--pl-button-text) !important;
	text-decoration: none !important;
	border-radius: 8px;
	padding: 15px 20px;
	font-size: 15px;
	font-weight: 800;
	line-height: 1.2;
	transition: filter 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.pl-ingresso-button:hover,
.pl-ingresso-button:focus {
	background: var(--pl-button-hover-bg);
	filter: brightness(0.92);
	color: var(--pl-button-text) !important;
	transform: translateY(-1px);
}

@media (max-width: 767px) {
	.pl-ingresso-title {
		font-size: 24px;
	}

	.pl-ingresso-price-value {
		font-size: 40px;
	}
}
