.ai-banner {
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 40px 10%; 
	min-height: 600px; 
	background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
	margin: 20px 0;
	overflow: hidden;
	font-family: 'Inter', sans-serif;
	justify-content: center; 
}

.carousel-wrapper {
	position: relative;
	width: 100%;
	height: auto;
}

.ai-slide {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	opacity: 0;
	visibility: hidden;
	transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
	transform: translateY(-50%) translateX(30px);
}

.ai-slide.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%) translateX(0);
}

.ai-content h2 {
	margin-top: 5px;
	margin-bottom: 15px;
	font-size: 26px;
	font-weight: bold;
	color: #111827;
}


/* .novedades-tag {
	display: inline-block;
	margin-top: 0;
	color: #00b4d8; 
	font-weight: 800; 
	font-size: 13px; 
	letter-spacing: 2px; 
	text-transform: uppercase;
} */

.ai-content {
	max-width: 500px; z-index: 2;
}

/* Barras de Progreso */
.carousel-indicators {
	position: absolute;
	bottom: 50px;
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 10;
}

.counter {
	font-weight: 700;
	color: #475569;
	margin-left: 10px;
	font-size: 14px;
}

.subtitulos-nuevo {
	margin: 6px 0 15px 0;
	color: #6b7280;
	font-size: 14px;
}


.descripciones-funciones-nuevas{
	color: #374151;
	font-size: 14px;
	line-height: 1.5;
	max-width: 420px;
	text-align: justify;
}







/* dots */

.slider-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 200px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(29, 2, 87, 0.3);
	transition: all 0.3s ease;
}

.slider-dot.active {
	width: 32px;
	border-radius: 20px;
	background: #00b4d8;
}













