/* Branta Claud - Servicios Especializados (cabecera + grid de tarjetas) */
.bc-servicios-especializados {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 3rem 1.5rem;
	box-sizing: border-box;
}

/* ——— Cabecera ——— */
.bc-se-header {
	margin-bottom: 3rem;
	max-width: 800px;
}

.bc-se-label {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #007bff;
	position: relative;
	padding-bottom: 0.5rem;
}

.bc-se-label::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 60px;
	height: 2px;
	background-color: #007bff;
}

.bc-se-title {
	margin: 0 0 1rem;
	font-size: clamp(1.875rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #343a40;
}

.bc-se-description {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #6c757d;
}

/* ——— Grid de tarjetas ——— */
.bc-se-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 992px) {
	.bc-se-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.bc-se-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/* ——— Tarjeta ——— */
.bc-se-card {
	background: #ffffff;
	border-radius: 12px;
	padding: 1.75rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	text-align: left;
	border: 1px solid #f0f0f0;
}

.bc-se-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
}

/* Icono en cuadrado con fondo gris claro */
.bc-se-item-icon-wrap {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	background-color: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.bc-se-item-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	line-height: 1;
	color: #007bff;
}

.bc-se-item-icon svg {
	width: 1.5rem;
	height: 1.5rem;
}

.bc-se-item-title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.3;
	color: #343a40;
}

.bc-se-item-desc {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #6c757d;
	font-weight: 400;
}

/* Tags/Pills */
.bc-se-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.bc-se-tag {
	display: inline-block;
	padding: 0.375rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #6c757d;
	background-color: #f8f9fa;
	border-radius: 20px;
	border: 1px solid #e9ecef;
	line-height: 1.2;
}

/* ——— Valor Añadido y Colaboración (CTA) ——— */
.bc-se-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	margin-top: 3rem;
	padding: 2rem;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
	border: 1px solid #f0f0f0;
}

@media (max-width: 768px) {
	.bc-se-cta {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5rem;
	}
}

.bc-se-cta-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.bc-se-cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	line-height: 1;
	color: #007bff;
	margin-bottom: 0.25rem;
}

.bc-se-cta-icon svg {
	width: 1.5rem;
	height: 1.5rem;
	color: #007bff;
	fill: #007bff;
}

.bc-se-cta-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.3;
	color: #343a40;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.bc-se-cta-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #6c757d;
	font-style: italic;
}

.bc-se-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #ffffff;
	background-color: #007bff;
	border-radius: 8px;
	text-decoration: none;
	transition: background-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.bc-se-cta-button:hover {
	background-color: #0056b3;
	transform: translateY(-2px);
	text-decoration: none;
	color: #ffffff;
}

.bc-se-cta-button:active {
	transform: translateY(0);
}
