@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.ctpsub-mapa-container {
	position: relative;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	font-family: 'Inter', sans-serif;
	user-select: none;
}

.ctpsub-mapa-img {
	width: 100%;
	height: auto;
	display: block;
	pointer-events: none;
}

.ctpsub-pins {
	position: absolute;
	inset: 0;
}

.ctpsub-pin {
	position: absolute;
	transform: translate(-50%, -100%);
	width: 26px;
	height: 26px;
	cursor: pointer;
	background: transparent;
	border: none;
	padding: 0;
	pointer-events: auto;
}

.ctpsub-pin svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 2px 4px rgba(0,0,0,.35));
	transition: transform .15s ease;
}

.ctpsub-pin:hover svg,
.ctpsub-pin.is-active svg {
	transform: scale(1.15);
}

.ctpsub-pin .ctpsub-dot {
	fill: #E15F31;
}

.ctpsub-card {
	position: absolute;
	display: none;
	z-index: 20;
	min-width: 220px;
	max-width: 280px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0,0,0,.18);
	border: 1px solid #eee;
	padding: 14px 16px;
	pointer-events: auto;
}

.ctpsub-card.is-open {
	display: block;
}

.ctpsub-card h4 {
	margin: 0 0 8px 0;
	font-size: 15px;
	font-weight: 800;
	color: #111;
	text-transform: uppercase;
	letter-spacing: .3px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.ctpsub-card h4::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #E15F31;
	display: inline-block;
}

.ctpsub-card ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.ctpsub-card li {
	font-size: 12.5px;
	line-height: 1.4;
	margin-bottom: 8px;
	color: #333;
}

.ctpsub-card li:last-child {
	margin-bottom: 0;
}

.ctpsub-card li strong {
	display: block;
	font-weight: 600;
	color: #111;
}

.ctpsub-card li span {
	color: #666;
	font-size: 11.5px;
}

.ctpsub-forn-line {
	display: block;
	margin-top: 4px;
}

.ctpsub-forn-logo {
	max-height: 22px;
	max-width: 110px;
	display: block;
	object-fit: contain;
}

@media (max-width: 600px) {
	.ctpsub-pin {
		width: 20px;
		height: 20px;
	}
	.ctpsub-card {
		max-width: 220px;
		font-size: 12px;
	}
}
