/* ── Banner Deltamed ──────────────────────────────────────────────────────── */

.banner-dm-wrap {
    background: #FAFAFA;
	width: 100%;
	overflow: hidden;
}

/* Cada slide ocupa el ancho del carousel */
.banner-dm-slide {
	width: 100%;
}

/* Contenedor interno: texto 40% | imagen 60% */
.banner-dm-inner {
	display: flex;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
}

.banner-dm-text {
    color:#294074;
	flex: 0 0 40%;
    font-family: "Roboto Flex", Sans-serif;
	max-width: 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0;
	box-sizing: border-box;
}

.banner-dm-image {
	flex: 0 0 60%;
	max-width: 60%;
	box-sizing: border-box;
	background-image: url('bg-globo.png');
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
}

.banner-dm-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
	object-position: center;
}

/* ── Owl dots ─────────────────────────────────────────────────────────────── */

.banner-dm-wrap .owl-dots {
	margin-top: 14px;
	text-align: center;
    margin-top: -25px;
    z-index: 999;
    position: relative;
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot{
    width: 15px;
    height: 15px;
    background:#9fc943;
    border:3px solid #fff;
    margin:5px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}

.owl-carousel button.owl-dot.active{
    width: 18px;
    height: 18px;
}
.banner-dm-wrap .owl-dot span {
	background: #ccc !important;
	transition: background .2s;
}

.banner-dm-wrap .owl-dot.active span,
.banner-dm-wrap .owl-dot:hover  span {
	background: #0071a1 !important;
}

/* ── Botón CTA ────────────────────────────────────────────────────────────── */

.banner-dm-btn {
	display: inline-block;
	align-self: flex-start;
	width: auto !important;
	margin-top: 20px;
	padding: 12px 28px;
	background: #9fc943;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	border-radius: 50px;
	transition: background .2s;
	white-space: nowrap;
	box-sizing: border-box;
}

.banner-dm-btn:hover {
	background: #005580;
	color: #ffffff;
}

/* ── Mobile: imagen arriba, texto abajo ───────────────────────────────────── */

@media (max-width: 768px) {

	.banner-dm-inner {
		flex-direction: column;
		max-width: 100%;
	}

	.banner-dm-image {
		flex: none;
		max-width: 100%;
		width: 100%;
		order: 1;
	}

	.banner-dm-text {
		flex: none;
		max-width: 100%;
		width: 100%;
		order: 2;
		padding: 28px 20px;
		text-align: center;
	}

	.banner-dm-image img {
		height: auto;
	}
    .banner-dm-btn {
        align-self: auto;
        margin: 20px 20%;
    }
}
