/* Branta Claud - Líneas de Negocio (diseño: cabecera + filas alternadas video/texto) */
.bc-lineas-negocios {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 3rem 1.5rem;
	box-sizing: border-box;
}

/* ——— Cabecera ——— */
.bc-ln-header {
	text-align: center;
	margin-bottom: 3rem;
}

.bc-ln-label {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #3b82f6;
}

.bc-ln-title {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #1e3a5f;
}

/* ——— Lista de filas ——— */
.bc-ln-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* ——— Fila: dos columnas (video + contenido) ——— */
.bc-ln-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: center;
}

.bc-ln-row--video-left .bc-ln-col-video { order: 1; }
.bc-ln-row--video-left .bc-ln-col-content { order: 2; }
.bc-ln-row--video-right .bc-ln-col-video { order: 2; }
.bc-ln-row--video-right .bc-ln-col-content { order: 1; }

@media (max-width: 767px) {
	.bc-ln-row {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
	.bc-ln-row--video-left .bc-ln-col-video,
	.bc-ln-row--video-left .bc-ln-col-content,
	.bc-ln-row--video-right .bc-ln-col-video,
	.bc-ln-row--video-right .bc-ln-col-content {
		order: unset;
	}
	.bc-ln-col-video {
		order: 1;
	}
	.bc-ln-col-content {
		order: 2;
	}
}

.bc-ln-col {
	min-width: 0;
}

/* ——— Bloque de video ——— */
.bc-ln-video-wrap {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: #0d9488;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bc-ln-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 12px;
}

.bc-ln-video-placeholder {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	background: linear-gradient(145deg, #0d9488 0%, #0f766e 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.bc-ln-play-icon {
	position: absolute;
	width: 72px;
	height: 72px;
	background: #3b82f6;
	border-radius: 50%;
	box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
	display: block;
}

.bc-ln-play-icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: 4px;
	margin-top: -12px;
	border-width: 12px 0 12px 20px;
	border-style: solid;
	border-color: transparent transparent transparent #fff;
}

/* ——— Contenido (icono, título, descripción, lista) ——— */
.bc-ln-content {
	padding: 0.5rem 0;
}

.bc-ln-line-icon-wrap {
	margin-bottom: 1rem;
}

.bc-ln-line-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	font-size: 1.5rem;
	line-height: 1;
	color: #3b82f6;
}

.bc-ln-line-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.bc-ln-line-title {
	margin: 0 0 1rem;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
	color: #1e3a5f;
}

.bc-ln-description {
	margin: 0 0 1.25rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #4b5563;
}

.bc-ln-services {
	margin: 0;
	padding: 0;
	list-style: none;
}

.bc-ln-services li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	line-height: 1.5;
	color: #374151;
}

.bc-ln-services li:last-child {
	margin-bottom: 0;
}

.bc-ln-services li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.4em;
	width: 6px;
	height: 10px;
	border: solid #3b82f6;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
