.gtm-map-root {
	--gtm-fill: #ffffff;
	--gtm-fill-hover: #ffffff;
	--gtm-border: #000000;
	--gtm-border-width: 2px;
	--gtm-hover: #e30613;
	--gtm-hover-width: 3px;
	--gtm-card-1: #e30613;
	--gtm-card-2: #b40510;
	--gtm-card-text: #ffffff;
	--gtm-max-width: 720px;
}

.gtm-map-wrap {
	position: relative;
	width: 100%;
	max-width: var(--gtm-max-width);
}

.gtm-svg {
	width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.12));
}

.gtm-departamento {
	fill: var(--gtm-fill);
	stroke: var(--gtm-border);
	stroke-width: var(--gtm-border-width);
	stroke-linejoin: round;
	cursor: pointer;
	vector-effect: non-scaling-stroke;
}

.gtm-hover-overlay {
	fill: var(--gtm-fill-hover);
	stroke: var(--gtm-hover);
	stroke-width: var(--gtm-hover-width);
	stroke-linejoin: round;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.1s ease;
	vector-effect: non-scaling-stroke;
}

.gtm-hover-overlay.gtm-visible {
	opacity: 1;
}

.gtm-hover-icon {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.15s ease;
}

.gtm-hover-icon.gtm-visible {
	opacity: 1;
}

.gtm-card {
	position: fixed;
	width: 340px;
	max-width: 90vw;
	opacity: 0;
	transform: translateY(-6px) scale(0.98);
	transition: opacity 0.15s ease, transform 0.15s ease;
	z-index: 999;
	pointer-events: none;
}

.gtm-card.gtm-visible {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.gtm-card-stack {
	display: flex;
	flex-direction: column;
}

.gtm-card-stack.gtm-is-multi {
	background: #ffffff;
	border-radius: 18px;
	padding: 10px;
	gap: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.gtm-card-item {
	display: flex;
	align-items: stretch;
	gap: 14px;
	background: linear-gradient(135deg, var(--gtm-card-1), var(--gtm-card-2));
	border-radius: 18px;
	padding: 10px;
	text-decoration: none;
}

.gtm-card-stack:not(.gtm-is-multi) .gtm-card-item {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

a.gtm-card-item {
	cursor: pointer;
}

.gtm-card-photo {
	flex: 0 0 110px;
	width: 110px;
	height: 110px;
	border-radius: 12px;
	background: linear-gradient(160deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
	overflow: hidden;
}

.gtm-card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.gtm-card-body {
	color: var(--gtm-card-text);
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
}

.gtm-card-titulo {
	margin: 0 0 4px;
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	line-height: 1.15;
}

.gtm-card-descripcion {
	font-size: 13px;
	font-weight: 500;
	opacity: 0.95;
	margin: 1px 0;
	white-space: pre-line;
}

.gtm-hint {
	position: fixed;
	pointer-events: none;
	z-index: 998;
	padding: 6px 14px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.78);
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.12s ease, transform 0.12s ease;
}

.gtm-hint.gtm-visible {
	opacity: 1;
	transform: translateY(0);
}
