/* ==========================================
   HERO SECTION
========================================== */
.dr1059hero {
	position: relative;
	overflow: hidden;
	background: radial-gradient(circle at top left, rgba(255, 211, 106, .12),
		transparent 30%),
		radial-gradient(circle at bottom right, rgba(255, 211, 106, .08),
		transparent 35%), linear-gradient(135deg, #071422, #0b1f33);
	color: #fff;
	font-family: 'Segoe UI', sans-serif;
}

.dr1059hero-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px 70px;
}

/* ==========================================
   SLIDER
========================================== */
.dr1059hero-slider {
	position: relative;
	width: 100%;
	height: 450px;
	overflow: hidden;
	border-radius: 24px;
	box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
}

.dr1059hero-track {
	width: 100%;
	height: 100%;
	position: relative;
}

.dr1059hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity .8s ease, visibility .8s ease;
}

.dr1059hero-slide.active {
	opacity: 1;
	visibility: visible;
}

.dr1059hero-slide img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.dr1059hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .18),
		rgba(0, 0, 0, .04));
}

/* ==========================================
   NAVIGATION
========================================== */
.dr1059hero-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
	background: rgba(0, 0, 0, .45);
	color: #fff;
	font-size: 20px;
	backdrop-filter: blur(10px);
	transition: .3s;
}

.dr1059hero-prev {
	left: 15px;
}

.dr1059hero-next {
	right: 15px;
}

.dr1059hero-nav:hover {
	background: #ffd36a;
	color: #111;
}

/* ==========================================
   CONTENT
========================================== */
.dr1059hero-content {
	text-align: center;
	margin-top: 35px;
}

.dr1059hero-badge {
	display: inline-block;
	padding: 8px 18px;
	border: 1px solid rgba(255, 211, 106, .45);
	border-radius: 40px;
	color: #ffd36a;
	font-size: 13px;
	margin-bottom: 20px;
}

.dr1059hero-content h1 {
	font-size: 48px;
	line-height: 1.2;
	margin: 0;
	font-weight: 800;
}

.dr1059hero-content h1 span {
	color: #ffd36a;
}

.dr1059hero-content p {
	max-width: 850px;
	margin: 24px auto;
	font-size: 18px;
	line-height: 1.8;
	opacity: .9;
}

/* ==========================================
   BUTTONS
========================================== */
.dr1059hero-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-top: 30px;
}

.dr1059hero-btn-primary, .dr1059hero-btn-whatsapp {
	text-decoration: none;
	padding: 14px 28px;
	border-radius: 12px;
	font-weight: 700;
	transition: .3s;
}

.dr1059hero-btn-primary {
	background: #ffd36a;
	color: #111;
}

.dr1059hero-btn-whatsapp {
	background: #25D366;
	color: #fff;
}

.dr1059hero-btn-primary:hover, .dr1059hero-btn-whatsapp:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .25);
}

/* ==========================================
   TRUST BAR
========================================== */
.dr1059hero-trust {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 50px;
}

.dr1059hero-trust div {
	text-align: center;
}

.dr1059hero-trust strong {
	display: block;
	font-size: 28px;
	color: #ffd36a;
}

.dr1059hero-trust span {
	display: block;
	font-size: 13px;
	opacity: .85;
}

/* ==========================================
   MOBILE
========================================== */
@media ( max-width :768px) {
	.dr1059hero-wrapper {
		padding: 90px 18px 60px;
	}
	.dr1059hero-slider {
		height: 260px;
	}
	.dr1059hero-content h1 {
		font-size: 30px;
	}
	.dr1059hero-content p {
		font-size: 16px;
	}
	.dr1059hero-trust {
		gap: 22px;
	}
	.dr1059hero-trust strong {
		font-size: 22px;
	}
	.dr1059hero-nav {
		width: 42px;
		height: 42px;
	}
}