
/*CONFIANZA*/
/* SECTION */
.enterprise-section{
	padding: 0px 0px 56px 0px;
	background: #ffffff;
}

/* WRAPPER */
.enterprise-wrapper{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

/* VIDEO */
.video-side{
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.video-side video{
	width: 100%;
	height: 420px;
	object-fit: cover;
	display: block;
}

/* CONTENT */
.content-side{
	padding-left: 40px;
}

/* TAG (pequeño, elegante) */
.enterprise-tag{
	display: inline-block;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-primary);
	background: rgba(37,99,235,0.08);
	border-radius: 20px;
	margin-bottom: 18px;
}

/* TITLE (YA NO TOSCO) */
.enterprise-title{
	font-size: 32px;
	font-weight: 600;
	color: var(--color-heading);
	line-height: 1.3;
	margin-bottom: 14px;
	letter-spacing: -0.3px;
}

/* DESCRIPTION (más ligera) */
.enterprise-description{
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text-muted);
	margin-bottom: 28px;
	max-width: 95%;
}

/* FEATURES LIST */
.enterprise-features{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* ITEM */
.feature-item{
	padding-left: 18px;
	position: relative;
}

/* DOT */
.feature-item::before{
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--color-primary);
}

/* TITLE SMALL */
.feature-item h3{
	font-size: 15px;
	font-weight: 600;
	color: var(--color-heading);
	margin-bottom: 3px;
}

/* TEXT LIGHT */
.feature-item p{
	font-size: 13.5px;
	font-weight: 400;
	color: var(--color-text-muted);
	margin: 0;
	line-height: 1.5;
}


/* RESPONSIVE */
@media(max-width:991px){

	.content-side{
        padding: 20px;
        margin-top: 30px;
	}

	.video-side video{
		height: 320px;
	}

	.enterprise-title{
		font-size: 26px;
	}
}

@media(max-width:768px){

	.enterprise-section{
		padding: 60px 0;
	}

	.video-side video{
		height: 240px;
	}

	.enterprise-title{
		font-size: 22px;
	}

	.enterprise-description{
		font-size: 14px;
	}
}
