/* Branta Claud - Misión y Visión (ancho total; Misión blanca / Visión azul; icono de fondo) */
.bc-mision-vision {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 3rem 1.5rem;
	box-sizing: border-box;
}

.bc-mv-main-header {
	margin-bottom: 2.5rem;
	text-align: center;
}

.bc-mv-main-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.875rem, 4.5vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: -0.02em;
}

.bc-mv-main-subtitle {
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #6b7280;
}

.bc-mv-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2rem;
	align-items: stretch;
}

@media (max-width: 767px) {
	.bc-mv-columns {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

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

.bc-mv-block {
	height: 100%;
	padding: 2rem;
	box-sizing: border-box;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	position: relative;
	overflow: hidden;
	text-align: left;
	border-radius: 16px;
}

/* Imagen de fondo detrás de la tarjeta */
.bc-mv-block-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
	border-radius: 16px;
}

.bc-mv-block-bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Icono de fondo detrás de la tarjeta */
.bc-mv-block-bg-icon {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 160px;
	height: 160px;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	pointer-events: none;
	z-index: 0;
}

.bc-mv-block-bg-icon svg,
.bc-mv-block-bg-icon i {
	width: 140px !important;
	height: 140px !important;
	font-size: 140px !important;
	opacity: 0.08;
}

.bc-mv-mision .bc-mv-block-bg-icon svg,
.bc-mv-mision .bc-mv-block-bg-icon i {
	color: #1d4ed8;
}

.bc-mv-vision .bc-mv-block-bg-icon svg,
.bc-mv-vision .bc-mv-block-bg-icon i {
	color: #ffffff;
	opacity: 0.12;
}

.bc-mv-block-inner {
	position: relative;
	z-index: 1;
}

/* ——— Misión: tarjeta blanca, borde gris ——— */
.bc-mv-mision .bc-mv-block {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.03);
}

.bc-mv-mision .bc-mv-block:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.bc-mv-mision .bc-mv-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 1.75rem;
	line-height: 1;
	background: #1d4ed8;
	color: #ffffff !important;
	border-radius: 12px;
}

.bc-mv-mision .bc-mv-icon svg,
.bc-mv-mision .bc-mv-icon i {
	color: #ffffff !important;
	fill: #ffffff !important;
}

.bc-mv-mision .bc-mv-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.bc-mv-mision .bc-mv-block-title {
	color: #1f2937;
}

.bc-mv-mision .bc-mv-block-text {
	color: #4b5563;
}

/* ——— Visión: tarjeta azul, texto blanco ——— */
.bc-mv-vision .bc-mv-block {
	background: #016cb0;
	border: none;
	box-shadow: 0 10px 25px -5px rgba(1, 108, 176, 0.25), 0 4px 10px -6px rgba(1, 108, 176, 0.2);
}

.bc-mv-vision .bc-mv-block:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 35px -5px rgba(1, 108, 176, 0.3), 0 10px 15px -6px rgba(1, 108, 176, 0.2);
}

.bc-mv-vision .bc-mv-icon {
	display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
    line-height: 1;
    background: #1e4ed8;
    color: #ffffff !important;
    border-radius: 29%;
}

.bc-mv-vision .bc-mv-icon svg,
.bc-mv-vision .bc-mv-icon i {
	color: #ffffff !important;
	fill: #ffffff !important;
}

.bc-mv-vision .bc-mv-icon svg {
	width: 1.75rem;
	height: 1.75rem;
}

.bc-mv-vision .bc-mv-block-title {
	color: #ffffff;
}

.bc-mv-vision .bc-mv-block-text {
	color: rgba(255, 255, 255, 0.95);
}

/* ——— Común: icono, título, texto ——— */
.bc-mv-icon-wrap {
	margin-bottom: 1.25rem;
}

.bc-mv-block-title {
	margin: 0 0 0.5rem;
	font-size: 1.375rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: -0.01em;
}

.bc-mv-block-subtitle {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.4;
	opacity: 0.9;
}

.bc-mv-mision .bc-mv-block-subtitle {
	color: #6b7280;
}

.bc-mv-vision .bc-mv-block-subtitle {
	color: rgba(255, 255, 255, 0.9);
}

.bc-mv-block-text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.7;
	white-space: pre-line;
}

.bc-mv-block-text p {
	margin: 0 0 0.75rem;
}

.bc-mv-block-text p:last-child {
	margin-bottom: 0;
}
