.pyc-hero-slider {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	height: 62vh;
	min-height: 440px;
	max-height: 640px;
	background: linear-gradient(135deg, #123642 0%, var(--pyc-teal, #287090) 55%, #1c5876 100%);
	color: #fff;
}

.pyc-hero-track {
	position: relative;
	height: 100%;
}

.pyc-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 24px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.9s ease;
	background: radial-gradient(circle at 20% 20%, rgba(240, 152, 72, 0.18), transparent 55%),
		radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 50%);
}

.pyc-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.pyc-hero-slide-inner {
	max-width: 760px;
}

.pyc-hero-eyebrow {
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--pyc-orange, #F09848);
	background: rgba(255, 255, 255, 0.1);
	padding: 6px 16px;
	border-radius: 999px;
	margin-bottom: 22px;
}

.pyc-hero-slide h2 {
	font-family: var(--pyc-font-heading, 'Playfair Display', Georgia, serif);
	font-size: clamp(2rem, 4.5vw, 3.4rem);
	line-height: 1.15;
	margin: 0 0 18px;
	color: #fff;
}

.pyc-hero-slide p {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.55;
	opacity: 0.92;
	margin: 0 0 28px;
}

.pyc-hero-datos {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 28px;
	margin: 0 0 28px;
	padding: 0;
	font-size: 1.02rem;
}

.pyc-hero-datos li strong {
	display: block;
	color: var(--pyc-orange, #F09848);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
	font-weight: 600;
}

.pyc-hero-cta {
	display: inline-block;
	background: var(--pyc-orange, #F09848);
	color: #fff !important;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 999px;
	text-decoration: none;
	letter-spacing: 0.02em;
	box-shadow: 0 10px 24px rgba(240, 152, 72, 0.35);
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pyc-hero-cta:hover {
	background: var(--pyc-orange-dark, #D67D2E);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(240, 152, 72, 0.45);
}

.pyc-hero-dots {
	position: absolute;
	left: 50%;
	bottom: 26px;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 2;
}

.pyc-hero-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
	padding: 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.pyc-hero-dot.is-active {
	background: var(--pyc-orange, #F09848);
	transform: scale(1.25);
}

.pyc-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	color: #fff;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.pyc-hero-arrow:hover {
	background: rgba(255, 255, 255, 0.28);
}

.pyc-hero-arrow.prev { left: 24px; }
.pyc-hero-arrow.next { right: 24px; }

/* Diapositivas de imagen (banners de campaña subidos por el admin) */
.pyc-hero-slider-imagenes {
	background: #123642;
	cursor: pointer;
	height: auto;
	aspect-ratio: 2 / 1;
	min-height: 0;
	max-height: 700px;
}

.pyc-hero-slider-imagenes .pyc-hero-slide {
	padding: 0;
	background: none;
}

.pyc-hero-slider-imagenes .pyc-hero-slide img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
	background: #123642;
}

@media (max-width: 680px) {
	.pyc-hero-slider:not(.pyc-hero-slider-imagenes) { height: 72vh; min-height: 500px; }
	.pyc-hero-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
	.pyc-hero-arrow.prev { left: 10px; }
	.pyc-hero-arrow.next { right: 10px; }
	.pyc-hero-datos { flex-direction: column; gap: 12px; }
}
