footer {
	background: var(--coltagsaoscuro);
	font-family: var(--fontsans);
}
.footer-inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2em;
	padding: 2em 10vw; /* mobile padding */
}
footer div:not(:last-child) {
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--coltagsaclarotrans);
}
footer div.footer-mapa {
	padding-bottom: 0;
}
.footer-link-title {
	text-transform: uppercase;
	font-weight: 600;
	color: var(--coltagsaclaro);
	flex: 1 0 100%;
	margin-bottom: 1em;
}
footer a {
	color: #fff;
	text-decoration: none;
}
footer .footer-redes {
	display: flex;
	flex-wrap: wrap;
	column-gap: .7em;
	row-gap: 0;
}
footer .footer-redes a {
	width: 2em;
}
footer .footer-links ul,
footer .footer-redes ul {
	list-style-type: none;
	font-size: .8em;
}
footer .footer-links li {
	margin-bottom: .65em;
}
.google-map-frame {
	position: relative;
	padding-bottom: 15em; /*alto del mapa*/
	height: 0;
	overflow: hidden;
	margin-top: 1em;
	margin-bottom: 1em;
}
.google-map-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}

/*MARK: 768
*/
@media screen and (min-width:768px) {
	.footer-inner {
		display: block; /* disable grid */
		column-count: 2;
		column-gap: 2em;
		padding: 0; /* now controlled by max-width */
		padding-top: 2em;
		padding-bottom: 2em;
		max-width: 700px; /* column area limited */
		margin: 0 auto;   /* centered */
	}
	.footer-inner > * {
		break-inside: avoid;
	}
	footer div:not(:last-child) {
		border-bottom: 0;
	}	
}

/*MARK: 1100
*/
@media screen and (min-width:1100px) {
	.footer-inner {
		column-count: 3;
		column-gap: 1em;
		max-width: 1080px; /* column area limited */
	}
	.google-map-frame {
		padding-bottom: 12em; /*alto del mapa*/
	}
}