/* PortalFilm Theme: estilos del componente hero (home-page) - Swiper fade */

.pf_pfilm_home_hero {
	position: relative;
	min-height: 55vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.pf_pfilm_home_hero_backdrop {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.pf_pfilm_home_hero_swiper {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.pf_pfilm_home_hero_swiper .swiper-wrapper {
	height: 100%;
}

.pf_pfilm_home_hero_slide {
	position: relative;
	height: 100%;
	width: 100%;
}

.pf_pfilm_home_hero_slide_image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 35%;
	display: block;
}

.pf_pfilm_home_hero_slide_overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
	pointer-events: none;
}

.pf_pfilm_home_hero_placeholder {
	width: 100%;
	height: 100%;
	background: var(--color-primary-variant);
}

/* Paginación: solo indicadores, abajo centrados */
.pf_pfilm_home_hero_swiper .swiper-pagination {
	position: absolute;
	bottom: var(--spacing-lg);
	left: 0;
	width: 100%;
	z-index: 2;
}

.pf_pfilm_home_hero_swiper .swiper-pagination-bullet {
	--swiper-pagination-bullet-inactive-opacity: 0.5;
	background: #fff;
	opacity: var(--swiper-pagination-bullet-inactive-opacity);
	transition: opacity var(--transition-base), transform var(--transition-base);
}

.pf_pfilm_home_hero_swiper .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.2);
}

.pf_pfilm_home_hero_content {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: var(--spacing-xl) var(--spacing-md);
}

.pf_pfilm_home_hero_inner {
	text-align: center;
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
}

.pf_pfilm_home_hero_title {
	margin: 0 0 var(--spacing-sm);
	font-size: var(--font-size-h1);
	font-weight: 700;
	color: #fff;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.5);
}

.pf_pfilm_home_hero_subtitle {
	margin: 0 0 var(--spacing-lg);
	font-size: var(--font-size-base);
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8), 0 0 12px rgba(0, 0, 0, 0.4);
}

.pf_pfilm_home_hero_search {
	display: flex;
	justify-content: center;
}

.pf_pfilm_home_hero_search .pf_pfilm_common_search_bar {
	max-width: 100%;
}

.pf_pfilm_home_hero_search .pf_pfilm_common_search_bar_input {
	min-width: 16rem;
}