.gs-city-map {
	padding: clamp(60px, 7vw, 90px) 16px;
	background: #fff;
	color: #3c2a17;
}

.gs-city-map__inner {
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
}

.gs-city-map__content {
	display: flex;
	flex-direction: column;
}
.gs-city-map::before {
    content: "";
    position: absolute;
    margin-top: -120px;
	left: 50%;
    width: 60px;
    height: 60px;
    background: url(../img/bg/bg_icones.webp) no-repeat 0 0 #ca9d46;
    background-position: 13px -2457px;
    -webkit-box-shadow: 0px 12px 36px -10px rgba(202, 157, 70, 0.71);
    -moz-box-shadow: 0px 12px 36px -10px rgba(202, 157, 70, 0.71);
    box-shadow: 0px 12px 36px -10px rgba(202, 157, 70, 0.71);
}

@media (max-width: 980px) {
	.gs-city-map::before {
		margin-top: -90px;
		left: 42%;
	}
}
.gs-city-map__title {
	font-family: "STIX Two Text", sans-serif, serif;
    font-weight: 500;
    font-size: 44px;
    margin: 0;
    padding: 0;
    line-height: 50px;
    font-weight: 400;
    color: #1f232e;
    clear: left;
    display: block;
    float: left;
}

.gs-city-map__subtitle {
    font-family: "STIX Two Text", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    line-height: 22px;
    font-weight: normal;
    border-bottom: 1px solid #f6f2e6;
    color: var(--primary-color);
    padding-bottom: 5px;
    margin-bottom: 10px;
	max-width: 380px;
}

.gs-city-map__button {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	background: #b48512;
	color: #fff;
	font-weight: 600;
	border-radius: 999px;
	text-decoration: none;
	width: fit-content;
	box-shadow: 0 18px 30px rgba(180, 133, 18, 0.28);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.gs-city-map__button:hover,
.gs-city-map__button:focus {
	transform: translateY(-3px);
	box-shadow: 0 24px 40px rgba(180, 133, 18, 0.32);
	background: #8f6610;
	color: #fff;
}

.gs-city-map__frame {
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 30px 50px rgba(44, 30, 18, 0.12);
	border: 1px solid rgba(44, 30, 18, 0.08);
}

.gs-city-map__frame::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
	pointer-events: none;
	z-index: 1;
}

.gs-city-map__frame iframe {
	display: block;
	width: 100%;
	height: clamp(280px, 32vw, 420px);
	border: 0;
}

@media (max-width: 992px) {
	.gs-city-map__inner {
		grid-template-columns: 1fr;
	}

	.gs-city-map__content {
		text-align: center;
		align-items: center;
	}

	.gs-city-map__subtitle {
		max-width: none;
	}

	.gs-city-map__button {
		width: auto;
	}
}

@media (max-width: 768px) {
	.gs-city-map {
		padding-inline: 12px;
	}

	.gs-city-map__frame iframe {
		height: clamp(240px, 54vw, 360px);
	}
}
