.mobivida-cta-150 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #000000 0%, #BF2424 100%);
	position: relative;
	overflow: hidden;
}

/* Subtle background overlay effect */
.mobivida-cta-150::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
	pointer-events: none;
	z-index: 1;
}

.mobivida-cta-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.mobivida-cta-badge {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 50px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(191, 36, 36, 0.5); /* #BF2424 with opacity */
	color: #D4E157; /* Light lime green for accent */
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

.mobivida-cta-title {
	color: #ffffff;
	font-family: inherit; /* Inherit from site or set in controls */
	font-size: 42px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0;
}

.mobivida-cta-description {
	color: #ffffff;
	font-family: inherit;
	font-size: 18px;
	line-height: 1.6;
	opacity: 0.9;
	margin: 0;
}

.mobivida-cta-button {
	display: inline-block;
	padding: 16px 32px;
	background-color: #D4E157; /* Lime green */
	color: #000000;
	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	transition: all 0.3s ease;
	cursor: pointer;
	margin-top: 16px;
}

.mobivida-cta-button:hover {
	background-color: #c0ca33;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.mobivida-cta-150 {
		padding: 60px 20px;
	}

	.mobivida-cta-title {
		font-size: 32px;
	}

	.mobivida-cta-description {
		font-size: 16px;
	}
}
