/* Branta Claud - Valores (grid de tarjetas: icono + título + descripción) */
.bc-valores {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 3rem 1.5rem;
	box-sizing: border-box;
	background: #f8f9fa;
	border-radius: 0;
}

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

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

.bc-valores-subtitle {
	margin: 0;
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.02em;
	color: #343a40;
}

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

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

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

/* ——— Tarjeta ——— */
.bc-valores-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;
	position: relative;
	overflow: hidden;
}

.bc-valores-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 de fondo a la izquierda con transparencia */
.bc-valores-card-bg-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 120px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	pointer-events: none;
	z-index: 0;
	padding-left: 1rem;
	opacity: 0.08;
}

.bc-valores-card-bg-icon svg,
.bc-valores-card-bg-icon i {
	width: 100px !important;
	height: 100px !important;
	font-size: 100px !important;
	color: #007bff;
}

.bc-valores-card-bg-icon svg {
	fill: #007bff;
}

.bc-valores-card-inner {
	position: relative;
	z-index: 1;
}

/* Icono arriba a la izquierda */
.bc-valores-item-icon-wrap {
	margin-bottom: 1rem;
}

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

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

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

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