/* bp_contacto_info — 3 columnas con icono + título + texto */

.bp-contacto-info {
	background: var(--bp-white);
}

.bp-contacto-info__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.bp-contacto-info__item {
	text-align: center;
	padding: 16px 32px;
	position: relative;
}

.bp-contacto-info__item + .bp-contacto-info__item::before {
	content: '';
	position: absolute;
	top: 18%;
	bottom: 18%;
	left: 0;
	width: 1px;
	background: var(--bp-border);
}

.bp-contacto-info__icon {
	color: var(--bp-navy);
	display: flex;
	justify-content: center;
	margin-bottom: 18px;
}

.bp-contacto-info__icon svg {
	width: 40px;
	height: 40px;
}

.bp-contacto-info__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--bp-navy);
	margin: 0 0 14px;
}

.bp-contacto-info__text {
	color: var(--bp-text-soft);
	font-size: 15px;
	line-height: 1.6;
}

.bp-contacto-info__text p {
	margin: 0 0 4px;
}

.bp-contacto-info__text p:last-child {
	margin-bottom: 0;
}

.bp-contacto-info__text a {
	color: var(--bp-blue);
}

.bp-contacto-info__text a:hover {
	color: var(--bp-green);
}

@media (max-width: 900px) {
	.bp-contacto-info__grid {
		grid-template-columns: 1fr;
	}

	.bp-contacto-info__item {
		padding: 24px 16px;
	}

	.bp-contacto-info__item + .bp-contacto-info__item::before {
		top: 0;
		bottom: auto;
		left: 12%;
		right: 12%;
		width: auto;
		height: 1px;
	}
}
