/* =========================================================
   bp_home_hero — slider principal del home
   ========================================================= */

.bp-hero {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--bp-navy);
}

.bp-hero__slide {
	position: relative;
	aspect-ratio: 21 / 9;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	color: var(--bp-white);
}

.bp-hero__content {
	max-width: 620px;
	padding-top: 60px;
	padding-bottom: 60px;
	text-align: left;
}

.bp-hero__title {
	font-size: clamp(34px, 5vw, 60px);
	font-weight: 800;
	color: var(--bp-white);
	line-height: 1.05;
	margin: 0 0 20px;
	letter-spacing: -0.01em;
}

.bp-hero__text {
	font-size: clamp(15px, 1.3vw, 18px);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.55;
	margin: 0 0 28px;
	max-width: 520px;
}

/* ---- Flechas ---- */
.bp-hero__arrow {
	width: 44px;
	height: 44px;
	margin-top: -22px;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.4);
	color: var(--bp-white);
	border-radius: 50%;
	backdrop-filter: blur(4px);
	transition: background var(--bp-trans), border-color var(--bp-trans);
	cursor: pointer;
}

.bp-hero__arrow:hover {
	background: var(--bp-blue);
	border-color: var(--bp-blue);
}

.bp-hero__arrow::after {
	font-size: 16px;
	font-weight: 700;
}

.bp-hero__arrow.swiper-button-disabled {
	opacity: 0.35;
	pointer-events: none;
}

/* ---- Dots ---- */
.bp-hero__dots {
	bottom: 20px !important;
}

.bp-hero__dots .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--bp-white);
	opacity: 0.45;
	transition: opacity var(--bp-trans), transform var(--bp-trans), background var(--bp-trans);
}

.bp-hero__dots .swiper-pagination-bullet-active {
	background: var(--bp-blue);
	opacity: 1;
	transform: scale(1.2);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
	.bp-hero__slide {
		aspect-ratio: 4 / 5;
	}
	.bp-hero__content {
		padding-top: 40px;
		padding-bottom: 70px;
	}
	.bp-hero__arrow {
		display: none;
	}
}
