/* Page Title */
.page-title {
	text-align: center;
	padding: 60px 20px 20px;
}

.page-title h1 {
	font-size: 48px;
	font-weight: 700;
	color: #333;
	text-transform: lowercase;
	margin-bottom: 10px;
}

.subtitle {
	font-size: 18px;
	color: #666;
	font-weight: 400;
}

/* Selected Film Notice */
.selected-notice {
	max-width: 900px;
	margin: 20px auto;
	padding: 15px 20px;
	background: linear-gradient(135deg, #ee6f5e 0%, #f28276 100%);
	color: #fff;
	text-align: center;
	border-radius: 8px;
	font-size: 18px;
	font-weight: 600;
}

.selected-notice strong {
	text-transform: capitalize;
}

/* Pricing Banner */
.pricing-banner {
	max-width: 900px;
	margin: 40px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.pricing-option {
	background: #f8f8f8;
	padding: 30px;
	border-radius: 8px;
	text-align: center;
	position: relative;
}

.pricing-option.featured {
	background: linear-gradient(135deg, #52833f 0%, #42692f 100%);
	color: #fff;
	transform: scale(1.05);
	box-shadow: 0 8px 24px rgba(82, 131, 63, 0.3);
}

.badge {
	position: absolute;
	top: -12px;
	right: 20px;
	background: #FFD700;
	color: #333;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.pricing-option h3 {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
}

.pricing-option .price {
	font-size: 48px;
	font-weight: 900;
	margin-bottom: 10px;
}

.pricing-option .duration {
	font-size: 14px;
	margin-bottom: 20px;
	opacity: 0.8;
}

.bundle-btn {
	display: inline-block;
	padding: 12px 24px;
	background: #fff;
	color: #52833f;
	text-decoration: none;
	font-weight: 700;
	border-radius: 4px;
	transition: transform 0.2s;
}

.bundle-btn:hover {
	transform: translateY(-2px);
}

/* Films Grid */
.films-grid {
	max-width: 1200px;
	margin: 60px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.film-card {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.film-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Highlighted film (when selected from trabajos) */
.film-card.highlighted {
	border: 3px solid #52833f;  /* Changed from coral to green */
	box-shadow: 0 8px 32px rgba(82, 131, 63, 0.4);
	animation: pulse 2s ease-in-out 3;
}

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 8px 32px rgba(82, 131, 63, 0.4);
	}
	50% {
		box-shadow: 0 12px 40px rgba(82, 131, 63, 0.6);
	}
}
.film-poster {
	width: 100%;
	aspect-ratio: 2/3;
	overflow: hidden;
	position: relative;
}

.film-poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.film-info {
	padding: 20px;
}

.film-info h2 {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 8px;
	color: #333;
}

.film-info .duration {
	font-size: 14px;
	color: #888;
	margin-bottom: 12px;
}

.film-info .description {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 20px;
}

.buy-btn {
	width: 100%;
	padding: 14px;
	background: #ee6f5e;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.buy-btn span {
	font-size: 12px;
	font-weight: 400;
	opacity: 0.9;
}

.buy-btn:hover {
	background: #dc5847;
	transform: translateY(-2px);
}

/* Placeholder poster styling */
.film-poster.placeholder {
	background: linear-gradient(135deg, #ee6f5e 0%, #f28276 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.placeholder-text {
	font-size: 36px;
	font-weight: 900;
	text-align: center;
	color: rgba(255, 255, 255, 0.9);
	letter-spacing: 4px;
	padding: 20px;
}

/* Responsive */
@media (max-width: 768px) {
	.page-title h1 {
		font-size: 36px;
	}

	.pricing-banner {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.pricing-option.featured {
		transform: scale(1);
	}

	.films-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.placeholder-text {
		font-size: 28px;
		letter-spacing: 2px;
	}
	
	.selected-notice {
		font-size: 16px;
		padding: 12px 15px;
	}
}

.selected-checkmark {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 50px;
	height: 50px;
	background: #ee6f5e;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	font-weight: 900;
	animation: checkmarkAppear 0.5s ease-out forwards;
	z-index: 10;
}

@keyframes checkmarkAppear {
	0% {
		opacity: 0;
		transform: scale(0);
	}
	50% {
		opacity: 1;
		transform: scale(1.2);
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}