.pv-lista {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px 0 60px;
}

.pv-ciudad {
	margin-bottom: 44px;
}

.pv-ciudad-titulo {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 2px solid #eef2f7;
	padding-bottom: 12px;
	margin-bottom: 22px;
}

.pv-ciudad-titulo h2 {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 700;
	color: #1e293b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	position: relative;
	padding-left: 16px;
}

.pv-ciudad-titulo h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 6px;
	height: 24px;
	background: #1d4ed8;
	border-radius: 3px;
}

.pv-contador {
	background: #eff6ff;
	color: #1d4ed8;
	font-size: 0.78rem;
	font-weight: 700;
	padding: 3px 12px;
	border-radius: 999px;
	white-space: nowrap;
}

.pv-grid {
	display: grid;
	gap: 18px;
}

.pv-cols-1 { grid-template-columns: 1fr; }
.pv-cols-2 { grid-template-columns: repeat(2, 1fr); }
.pv-cols-3 { grid-template-columns: repeat(3, 1fr); }
.pv-cols-4 { grid-template-columns: repeat(4, 1fr); }

.pv-card {
	background: #ffffff;
	border: 1px solid #e8edf3;
	border-radius: 14px;
	padding: 20px 22px;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(29, 78, 216, 0.12);
	border-color: #c7d7ff;
}

.pv-card-titulo {
	margin: 0 0 6px;
	font-size: 1.02rem;
	font-weight: 700;
	color: #1d4ed8;
	line-height: 1.35;
}

.pv-linea {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.55;
	color: #475569;
}

.pv-linea svg {
	flex: 0 0 auto;
	margin-top: 3px;
	color: #94a3b8;
}

.pv-email a,
.pv-web a {
	color: #1d4ed8;
	text-decoration: none;
	font-weight: 600;
	word-break: break-all;
}

.pv-email a:hover,
.pv-web a:hover {
	text-decoration: underline;
}

.pv-nota {
	margin: 4px 0 0;
	font-size: 0.85rem;
	font-style: italic;
	color: #94a3b8;
}

@media (max-width: 991px) {
	.pv-cols-4,
	.pv-cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.pv-cols-2,
	.pv-cols-3,
	.pv-cols-4 {
		grid-template-columns: 1fr;
	}
}
