/**
 * Admicomu - Front Page v2 (Propuesta Home)
 */

/* ========== HERO V2 ========== */
.hero-v2 {
	position: relative;
	width: 100%;
	max-width: 100%;
	height: 370px;
	min-height: 370px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #0f1d48;
}

.hero-v2__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero-v2__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	min-height: 370px;
}

.hero-v2__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(9, 22, 50, 0.35) 0%,
		rgba(9, 22, 50, 0.55) 45%,
		rgba(9, 22, 50, 0.78) 100%
	);
}

.hero-v2__content {
	position: relative;
	z-index: 2;
	width: calc(100% - 30px);
	max-width: var(--max-width, 1055px);
	margin: 0 auto;
	text-align: left;
	padding: 0 15px 40px;
}

.hero-v2__content h1 {
	margin: 0 0 16px;
	max-width: 100%;
	font: 400 44px/1.18 "Barlow", sans-serif;
	color: #fff;
	letter-spacing: -0.02em;
	text-align: center
}

.hero-v2__content h1 span {
	color: #C3EF0F;
	font-weight: 700;
}

.hero-v2__content p {
	margin: 0;
	max-width: 100%;
	font: 400 18px/1.5 "Barlow", sans-serif;
	color: #fff;
	text-align: center
}

.hero-v2__content p strong {
	font: 700 22px/1.5 "Barlow", sans-serif;
}

@media (max-width: 768px) {
	.hero-v2 {
		height: 300px;
		min-height: 300px;
	}

	.hero-v2__img {
		min-height: 300px;
	}

	.hero-v2__content {
		padding-bottom: 36px;
	}

	.hero-v2__content h1 {
		font-size: 26px;
		max-width: none;
	}

	.hero-v2__content p {
		font-size: 15px;
		max-width: none;
	}
}

@media (max-width: 480px) {
	.hero-v2 {
		height: 280px;
		min-height: 280px;
	}

	.hero-v2__img {
		min-height: 280px;
	}

	.hero-v2__content {
		padding-bottom: 28px;
	}

	.hero-v2__content h1 {
		font-size: 22px;
		margin-bottom: 12px;
	}

	.hero-v2__content p {
		font-size: 14px;
		line-height: 1.45;
	}
}

/* ========== SERVICIOS V2 ========== */
.services-v2 {
	padding: 72px 0 56px;
	background: #fff;
}

.services-v2__inner {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 48px;
	max-width: 902px;
}

.services-v2__card {
	position: relative;
	flex: 1 1 0;
	max-width: 410px;
	min-height: 234px;
	border: 1px solid #162963;
	border-radius: 4px;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 48px 28px 52px;
	box-sizing: border-box;
}

.services-v2__icon-wrap {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	padding: 0 14px;
	line-height: 0;
	z-index: 1;
}

.services-v2__icon {
	width: 116px;
	height: 116px;
	display: block;
	object-fit: contain;
}

.services-v2__card h2 {
	margin: 0;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font: 400 26px/1.45 "Barlow", sans-serif;
	color: #162963;
	padding: 0 8px;
}

.services-v2__btn {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 200px;
	height: 43px;
	padding: 0 22px;
	font: 700 18px "Barlow", sans-serif;
	color: #fff;
	background: #c3ef0f;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 0 0 8px #fff;
	transition: background 0.2s;
}

.services-v2__btn:hover {
	background: #a8d00d;
	color: #fff;
	text-decoration: none;
}

@media (max-width: 768px) {
	.services-v2 {
		padding: 64px 0 48px;
	}

	.services-v2__inner {
		flex-direction: column;
		align-items: center;
		gap: 110px;
	}

	.services-v2__card {
		width: 100%;
		max-width: 410px;
		min-height: 200px;
		padding: 44px 20px 48px;
	}

	.services-v2__card h2 {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.services-v2__inner {
		gap: 96px;
	}

	.services-v2__icon {
		width: 96px;
		height: 96px;
	}

	.services-v2__btn {
		min-width: 180px;
		height: 40px;
		font-size: 16px;
	}
}

/* ========== WHATSAPP V2 ========== */
.wsp-banner-v2 {
	width: 100%;
	background: #c3ef0f;
	padding: 22px 20px;
	text-align: center;
}

.wsp-banner-v2__text {
	margin: 0;
	font: 700 28px/1.3 "Barlow", sans-serif;
	color: #162963;
}

.wsp-banner-v2__text a {
	color: inherit;
	text-decoration: none;
}

.wsp-banner-v2__text a:hover {
	text-decoration: underline;
	color: #D36514;
}

.wsp-banner-v2__text strong {
	font-weight: 700;
	color: #D36514;
}

@media (max-width: 768px) {
	.wsp-banner-v2__text {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		font-size: 22px;
		padding: 0 15px;
		overflow-wrap: anywhere;
	}

	.wsp-banner-v2__label,
	.wsp-banner-v2__phone {
		display: block;
	}

	.front-page--v2 {
		overflow-x: clip;
		overflow-x: hidden;
		max-width: 100%;
	}
}

/* ========== MEDIOS DE PAGO V2 ========== */
.pago-v2 {
	padding: 48px 0 56px;
	background: #fff;
}

.pago-v2__inner {
	max-width: 550px;
	text-align: center;
}

.pago-v2__heading {
	margin: 0 0 40px;
	font: 400 32px "Barlow", sans-serif;
	color: #07183c;
}

.pago-v2__heading span {
	font-weight: 700;
}

.pago-v2__logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 48px;
	flex-wrap: wrap;
}

.pago-v2__logo--kastor {
	width: 221px;
	height: auto;
}

.pago-v2__logo--cf {
	width: 280px;
	height: auto;
}

@media (max-width: 650px) {
	.pago-v2__heading {
		font-size: 21px;
		margin-bottom: 28px;
	}

	.pago-v2__logos {
		flex-direction: column;
		gap: 20px;
	}

	.pago-v2__logo--kastor,
	.pago-v2__logo--cf {
		width: auto;
		max-width: min(280px, calc(100vw - 60px));
		height: auto;
	}
}

/* ========== COMUNAS V2 (mapa reutilizado) ========== */
.comunas-v2 {
	background: #162963;
	padding: 64px 0 56px;
	overflow: hidden;
}

.comunas-v2__header {
	text-align: center;
	margin-bottom: 40px;
}

.comunas-v2__heading {
	margin: 0 auto 14px;
	font: 700 34px/1.25 "Barlow", sans-serif;
	color: #fff;
	max-width: 100%;
}

.comunas-v2__sub {
	margin: 0;
	font: 400 18px/1.4 "Barlow", sans-serif;
	color: #fff;
	text-transform: none;
	letter-spacing: normal;
}

.comunas-v2__sub strong {
	font-weight: 700;
}

.comunas-v2__body {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px 48px;
}

.comunas-v2__map {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 384px;
}

.comunas-v2__list {
	flex: 0 0 250px;
	list-style: none;
	margin: 0;
	padding: 0;
	align-self: center;
}

.comunas-v2__list li {
	font: 400 20px/1.55 "Barlow", sans-serif;
	color: #fff;
	padding: 2px 0;
}

.comunas-v2__list li.comunas-v2__list-item--chicureo {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.55;
	color: #d36514;
}

.comunas-v2__list li.comunas-v2__list-item--chicureo a {
	color: inherit;
	font: inherit;
	font-weight: inherit;
	text-decoration: none;
}

.comunas-v2__list li.comunas-v2__list-item--chicureo a:hover {
	text-decoration: underline;
}

.comunas-v2__cta {
	text-align: center;
	margin-top: 40px;
}

.comunas-v2__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	height: 52px;
	padding: 0 40px;
	font: 700 18px "Barlow", sans-serif;
	color: #162963;
	background: #c3ef0f;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.2s;
}

.comunas-v2__btn:hover {
	background: #a8d00d;
	text-decoration: none;
	color: #162963;
}

.comunas-v2__map .banner-map {
	width: 815px;
	max-width: 100%;
	height: 384px;
	margin: 0;
}

.comunas-v2__map .banner-map__grid {
	opacity: 0.55;
	background-position: right bottom;
	background-size: auto 100%;
}

.comunas-v2__map .banner-map .ground {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 575px;
	height: 278px;
	max-width: none;
	margin: auto;
	transform: none;
	background-size: 575px 278px;
}

@media (max-width: 900px) {
	.comunas-v2__body {
		flex-direction: column;
		align-items: center;
		gap: 32px;
	}

	.comunas-v2__map {
		width: 100%;
		min-height: 320px;
		justify-content: center;
		padding-left: 15px;
		padding-right: 15px;
		box-sizing: border-box;
		overflow: hidden;
	}

	.comunas-v2__map .banner-map {
		width: 100%;
		max-width: 575px;
		height: 320px;
		margin: 0 auto;
		overflow: hidden;
	}

	.comunas-v2__map .banner-map .ground {
		transform: translate(-50%, -50%);
		top: 50%;
		left: 50%;
		right: auto;
		bottom: auto;
		margin: 0;
		width: 100%;
		max-width: 100%;
		height: auto;
		aspect-ratio: 575 / 278;
		background-size: 100% auto;
	}

	.comunas-v2__list {
		flex: none;
		width: 100%;
		max-width: 360px;
		margin: 0 auto;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 24px;
		row-gap: 4px;
		text-align: center;
		justify-items: center;
	}

	.comunas-v2__list li {
		font-size: 18px;
		width: 100%;
	}

	.comunas-v2__list li.comunas-v2__list-item--chicureo {
		font-size: 20px;
	}
}

@media (max-width: 650px) {
	.comunas-v2 {
		padding: 40px 0 36px;
	}

	.comunas-v2__heading {
		font-size: 22px;
	}

	.comunas-v2__sub {
		font-size: 15px;
		padding: 0 10px;
	}

	.comunas-v2__map .banner-map {
		height: 260px;
	}

	.comunas-v2__map .banner-map .ground {
		transform: translate(-50%, -50%) scale(0.85);
	}

	.comunas-v2__list li {
		font-size: 16px;
	}

	.comunas-v2__list li.comunas-v2__list-item--chicureo {
		font-size: 18px;
	}

	.comunas-v2__btn {
		min-width: 240px;
		height: 48px;
		font-size: 16px;
	}
}

/* ========== MAPA ANIMADO (compartido) ========== */
.banner-map {
	position: relative;
	width: 100%;
	max-width: 575px;
	height: 320px;
	margin: 0 auto;
}

.banner-map__grid {
	position: absolute;
	inset: 0;
	background: url(../img/banner-map/grid.svg) no-repeat right bottom;
	background-size: contain;
	pointer-events: none;
	opacity: 0.35;
}

.banner-map .ground {
	background: url(../img/banner-map/ground-map.svg) no-repeat center center;
	background-size: contain;
	width: 100%;
	max-width: 575px;
	height: 278px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.banner-map .ground > div {
	position: absolute;
	transition: all 0.2s ease;
}

.banner-map .ground > div:hover .info,
.banner-map .ground > div.info-on .info {
	opacity: 1 !important;
}

.banner-map .ground > div:hover .info i,
.banner-map .ground > div.info-on .info i {
	opacity: 1 !important;
}

.banner-map .ground > div:hover .info span,
.banner-map .ground > div.info-on .info span {
	height: 30px !important;
	opacity: 1 !important;
}

.banner-map .ground > div .info {
	opacity: 0;
	position: absolute;
	transition: all 0.5s ease;
}

.banner-map .ground > div .info i {
	opacity: 0;
	width: 16px;
	height: 6px !important;
	border-radius: 50%;
	background: #ff2020;
	display: block;
	margin: auto;
	transition: all 0.3s 0.4s;
}

.banner-map .ground > div .info span {
	opacity: 0;
	display: block;
	width: 1px;
	height: 0;
	background: white;
	margin: auto;
	transition: all 0.4s ease;
}

.banner-map .ground > div .info p {
	font: 12px "Barlow", sans-serif;
	color: white;
	margin-bottom: 5px;
}

.banner-map .ground .vitacura {
	background: url(../img/banner-map/vitacura.svg) no-repeat;
	width: 120px;
	height: 42px;
	top: 42px;
	right: 130px;
}
.banner-map .ground .vitacura:hover,
.banner-map .ground .vitacura.place-on { top: 32px; }
.banner-map .ground .vitacura .info { top: -43px; left: 27px; }

.banner-map .ground .las-condes {
	background: url(../img/banner-map/las-condes.svg) no-repeat;
	width: 216px;
	height: 100px;
	top: 60px;
	right: 33px;
}
.banner-map .ground .las-condes:hover,
.banner-map .ground .las-condes.place-on { top: 50px; }
.banner-map .ground .las-condes .info { top: 14px; left: 135px; }

.banner-map .ground .la-reina {
	background: url(../img/banner-map/la-reina.svg) no-repeat;
	width: 111px;
	height: 32px;
	top: 104px;
	right: 115px;
}
.banner-map .ground .la-reina:hover,
.banner-map .ground .la-reina.place-on { top: 94px; }
.banner-map .ground .la-reina .info { top: -41px; left: 27px; }

.banner-map .ground .penalolen {
	background: url(../img/banner-map/penalolen.svg) no-repeat;
	width: 196px;
	height: 44px;
	top: 128px;
	right: 59px;
}
.banner-map .ground .penalolen:hover,
.banner-map .ground .penalolen.place-on { top: 118px; }
.banner-map .ground .penalolen .info { top: -31px; left: 96px; }

.banner-map .ground .providencia {
	background: url(../img/banner-map/providencia.svg) no-repeat;
	width: 65px;
	height: 32px;
	top: 83px;
	right: 225px;
}
.banner-map .ground .providencia:hover,
.banner-map .ground .providencia.place-on { top: 73px; }
.banner-map .ground .providencia .info { top: -41px; left: 0; }

.banner-map .ground .recoleta {
	background: url(../img/banner-map/recoleta.svg) no-repeat;
	width: 43px;
	height: 35px;
	top: 60px;
	right: 263px;
}
.banner-map .ground .recoleta:hover,
.banner-map .ground .recoleta.place-on { top: 43px; }
.banner-map .ground .recoleta .info { top: -31px; left: 0; }

.banner-map .ground .santiago {
	background: url(../img/banner-map/santiago.svg) no-repeat;
	width: 74px;
	height: 43px;
	top: 92px;
	right: 288px;
}
.banner-map .ground .santiago:hover,
.banner-map .ground .santiago.place-on { top: 82px; }
.banner-map .ground .santiago .info { top: -40px; left: 19px; }

.banner-map .ground .nunoa {
	background: url(../img/banner-map/nunoa.svg) no-repeat;
	width: 73px;
	height: 31px;
	top: 106px;
	right: 216px;
}
.banner-map .ground .nunoa:hover,
.banner-map .ground .nunoa.place-on { top: 96px; }
.banner-map .ground .nunoa .info { top: -33px; left: 15px; }

.banner-map .ground .macul {
	background: url(../img/banner-map/macul.svg) no-repeat;
	width: 60px;
	height: 31px;
	top: 135px;
	right: 228px;
}
.banner-map .ground .macul:hover,
.banner-map .ground .macul.place-on { top: 125px; }
.banner-map .ground .macul .info { top: -32px; left: 2px; }

.banner-map .ground .la-florida {
	background: url(../img/banner-map/la-florida.svg) no-repeat;
	width: 124px;
	height: 50px;
	top: 164px;
	right: 176px;
}
.banner-map .ground .la-florida:hover,
.banner-map .ground .la-florida.place-on { top: 154px; }
.banner-map .ground .la-florida .info { top: -24px; left: 54px; }

@media (max-width: 650px) {
	.banner-map {
		height: 260px;
	}

	.banner-map .ground {
		transform: translate(-50%, -50%) scale(0.85);
		transform-origin: center center;
	}
}

/* ========== TESTIMONIO V2 ========== */
.testimony-v2 {
	padding: 56px 0;
	background: #fff;
}

.testimony-v2__inner {
	display: flex;
	align-items: center;
	gap: 48px;
	max-width: 980px;
}

.testimony-v2__text {
	flex: 0 0 42%;
	max-width: 380px;
}

.testimony-v2__name {
	margin: 0 0 12px;
	font: 700 26px/1.3 "Barlow", sans-serif;
	color: #162963;
}

.testimony-v2__role {
	margin: 0;
	font: 400 20px/1.5 "Barlow", sans-serif;
	color: #4a4a4a;
}

.testimony-v2__video {
	flex: 1 1 0;
	min-width: 0;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 10;
	max-height: 340px;
}

.testimony-v2__video video,
.testimony-v2__video img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

@media (max-width: 768px) {
	.testimony-v2__inner {
		flex-direction: column;
		gap: 28px;
	}

	.testimony-v2__text {
		flex: none;
		max-width: none;
		text-align: center;
		order: 1;
	}

	.testimony-v2__video {
		order: 2;
		flex: none;
		width: 100%;
		max-width: 555px;
		margin: 0 auto;
		max-height: none;
		min-height: 210px;
		aspect-ratio: 16 / 10;
	}

	.testimony-v2__video video,
	.testimony-v2__video img {
		width: 100%;
		height: auto;
		min-height: 210px;
		object-fit: cover;
	}
}

/* ========== NOTAS V2 ========== */
.notas-v2 {
	background: #c3ef0f;
	padding: 48px 0 40px;
}

.notas-v2__heading {
	text-align: center;
	margin: 0 auto 36px;
	padding: 0 20px;
	max-width: 900px;
	font: 400 32px/1.25 "Barlow", sans-serif;
	color: #162963;
}

.notas-v2__heading span {
	font-weight: 700;
}

.notas-v2__slider {
	max-width: 1042px;
	margin: 0 auto;
	padding: 0 20px;
}

.notas-v2__track {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.notas-v2__slide {
	display: none;
}

.notas-v2__slide.is-visible {
	display: block;
}

.notas-v2__card {
	background: #fff;
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.notas-v2__card-img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	background: #e8e8e8;
}

.notas-v2__card-foot {
	background: #152e6b;
	color: #fff;
	padding: 12px 14px;
	min-height: 56px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	position: relative;
	flex: 1;
}

.notas-v2__card-text strong {
	display: block;
	font: 700 14px/1.35 "Barlow", sans-serif;
}

.notas-v2__card-text span {
	display: block;
	font: 400 13px "Barlow", sans-serif;
}

.notas-v2__card-link {
	position: static;
	transform: none;
	font: 700 12px/1.3 "Barlow", sans-serif;
	color: #c3ef0f;
	text-decoration: none;
}

.notas-v2__card-link:hover {
	text-decoration: underline;
}

.notas-v2__card-link--muted {
	cursor: default;
	color: #fff;
}

.notas-v2__dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.notas-v2__dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: rgba(22, 41, 99, 0.35);
	cursor: pointer;
	transition: background 0.2s;
}

.notas-v2__dot.is-active {
	background: #162963;
}

@media (max-width: 900px) {
	.notas-v2__track {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin: 0 auto;
		touch-action: pan-y;
	}
}

@media (max-width: 650px) {
	.notas-v2__heading {
		font-size: 21px;
		text-align: left;
	}
}

/* ========== GRUPO V2 ========== */
.grupo-v2 {
	padding: 48px 0 40px;
	background: #fff;
}

.grupo-v2__heading {
	text-align: center;
	margin: 0 0 32px;
	font: 400 32px "Barlow", sans-serif;
	color: #07183c;
}

.grupo-v2__heading span {
	font-weight: 700;
	color: #0a193a;
}

.grupo-v2__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 20px;
}

.grupo-v2__grid-item {
	display: block;
	overflow: hidden;
	border-radius: 4px;
	background: #f0f0f0;
	aspect-ratio: 4 / 3;
}

.grupo-v2__grid-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.25s ease;
}

.grupo-v2__grid-item:hover img {
	transform: scale(1.03);
}

@media (max-width: 900px) {
	.grupo-v2__grid {
		gap: 12px;
	}
}

@media (max-width: 650px) {
	.grupo-v2__heading {
		font-size: 21px;
		text-align: left;
	}

	.grupo-v2__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

/* ========== PARTNERS V2 ========== */
.partners-v2 {
	padding: 40px 0 56px;
	background: #fff;
}

.partners-v2__inner {
	max-width: 720px;
	text-align: center;
}

.partners-v2__heading {
	margin: 0 0 40px;
	font: 400 32px "Barlow", sans-serif;
	color: #07183c;
}

.partners-v2__heading span {
	font-weight: 700;
	color: #0a193a;
}

.partners-v2__logos {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

.partners-v2__logos a,
.partners-v2__logos img {
	display: block;
}

.partners-v2__logos img {
	width: auto;
	height: auto;
	max-height: 101px;
}

.partners-v2__logos a:nth-child(1) img { max-width: 182px; }
.partners-v2__logos a:nth-child(2) img { max-width: 138px; }
.partners-v2__logos img:nth-child(3) { max-width: 135px; }
.partners-v2__logos a:nth-child(4) img { max-width: 108px; }

@media (max-width: 768px) {
	.partners-v2__logos {
		display: grid;
		grid-template-columns: repeat(2, auto);
		justify-content: center;
		justify-items: center;
		align-items: center;
		gap: 28px 36px;
	}
}

@media (max-width: 650px) {
	.partners-v2__heading {
		font-size: 21px;
	}
}

/* ========== FAQ / PREGUNTAS FRECUENTES (página dedicada) ========== */
.home-tabs.home-tabs--no-tabs {
	padding-top: 70px;
}

@media (max-width: 650px) {
	.home-tabs.home-tabs--no-tabs {
		padding-top: 25px;
	}
}

.home-tabs {
	position: relative;
	width: 100%;
	padding-bottom: 90px;
	background: url(../img/home-tabs-bg-desk.svg) no-repeat center top #efffff;
}

@media (max-width: 650px) {
	.home-tabs {
		background: url(../img/home-tabs-bg-mob.svg) no-repeat center center #efffff;
		padding-bottom: 40px;
	}
}

.home-tabs .dome {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 233px;
	background: url(../img/cupula-bg.svg) no-repeat center bottom #efffff;
	pointer-events: none;
}

@media (max-width: 650px) {
	.home-tabs .dome {
		display: none;
	}
}

.home-tabs .home-tab-panel,
.home-tabs .home-tab {
	display: block;
	position: relative;
}

.home-tabs .faq-tab-heading {
	text-align: center;
	font: 32px "Barlow", sans-serif;
	font-weight: 400;
	color: #07183c;
	margin: 0 auto 30px;
	width: calc(100% - 40px);
	max-width: 1042px;
	padding-bottom: 30px;
}

.home-tabs .faq-tab-heading span {
	font-weight: 700;
}

@media (max-width: 650px) {
	.home-tabs .faq-tab-heading {
		font-size: 21px;
		margin-bottom: 20px;
	}
}

.home-tabs .home-tab .title {
	background: url(../img/tab-title-bg.svg) bottom center no-repeat;
	width: 100%;
	height: 20px;
	padding-bottom: 50px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-bottom: 15px;
}

@media (max-width: 650px) {
	.home-tabs .home-tab .title {
		height: auto;
		padding-bottom: 30px;
		width: calc(100% - 30px);
		margin: 0 auto 30px;
		flex-direction: column;
		align-items: flex-start;
	}
}

.home-tabs .home-tab .title h3 {
	font: 20px "Barlow", sans-serif;
	font-weight: 600;
	color: #0a193a;
	text-transform: uppercase;
}

@media (max-width: 650px) {
	.home-tabs .home-tab .title h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}
}

.home-tabs .home-tab .places {
	width: calc(100% - 40px);
	max-width: 1042px;
	margin: auto;
	display: flex;
}

@media (max-width: 650px) {
	.home-tabs .home-tab .places {
		flex-direction: column;
	}
}

.home-tabs .home-tab .places .col {
	width: 25%;
	margin: 0 2.3%;
}

@media (max-width: 650px) {
	.home-tabs .home-tab .places .col {
		max-width: 400px;
		width: 100%;
		margin: auto !important;
	}
}

.home-tabs .home-tab .places .col:first-child { margin-left: 0; }
.home-tabs .home-tab .places .col:last-child { margin-right: 0; }

.home-tabs .home-tab .places .col .box-place {
	background: white;
	border-radius: 8px;
	box-shadow: 0 9px 15px 0 #d1f4f4;
	padding: 20px 25px;
	margin-bottom: 35px;
}

@media (max-width: 650px) {
	.home-tabs .home-tab .places .col .box-place {
		margin-bottom: 20px;
	}
}

.home-tabs .home-tab .places .col .box-place h3 {
	font: 14px "Barlow", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #2b4a62;
	margin-bottom: 3px;
}

.home-tabs .home-tab .places .col .box-place ul {
	list-style: none;
	padding-left: 0;
	margin: 0;
}

.home-tabs .home-tab .places .col .box-place ul li {
	font: 14px "Barlow", sans-serif;
	color: #2b4a62;
	line-height: 1.4;
}

.home-tabs .home-tab-panel .faq-accordion {
	width: calc(100% - 40px);
	max-width: 1042px;
	margin: 0 auto;
}

.home-tabs .home-tab-panel .faq-accordion .faq-item {
	margin: 0;
}

.home-tabs .home-tab-panel .faq-accordion .question {
	width: 100%;
	min-height: 50px;
	margin: 8px 0 0;
	padding: 20px 50px 18px 21px;
	text-align: left;
	font: 14px "Barlow", sans-serif;
	font-weight: 500;
	letter-spacing: -0.03px;
	color: #0a193a;
	background-color: #fff;
	border: none;
	cursor: pointer;
	position: relative;
	display: block;
	box-sizing: border-box;
}

.home-tabs .home-tab-panel .faq-accordion .faq-item:first-child .question {
	margin-top: 0;
}

.home-tabs .home-tab-panel .faq-accordion .question::after {
	content: "";
	background: url(../img/arrow-up-acordeon.svg) no-repeat center center/contain;
	width: 20px;
	height: 19px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	transform: rotate(-180deg);
	transition: transform 0.3s ease;
}

.home-tabs .home-tab-panel .faq-accordion .question.active::after {
	transform: rotate(0deg);
}

.home-tabs .home-tab-panel .faq-accordion .answer {
	font: 14px "Barlow", sans-serif;
	color: #0a193a;
	background-color: #fff;
	padding: 0 31px;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
}

.home-tabs .home-tab-panel .faq-accordion .answer.open {
	max-height: 2000px;
	opacity: 1;
	padding: 0 31px 30px;
}

.home-tabs .home-tab-panel .faq-accordion .answer[hidden] {
	display: none !important;
}

.home-tabs .home-tab-panel .faq-accordion .answer .cont {
	max-width: 648px;
}

.home-tabs .home-tab-panel .faq-accordion .faq-more {
	margin-top: 1.5rem;
}

.home-tabs .home-tab-panel .faq-accordion .faq-more a {
	color: #0a193a;
	font-weight: 600;
}

#tab-edificios .edificios-tab-heading {
	text-align: center;
	font: 32px "Barlow", sans-serif;
	font-weight: 400;
	color: #07183c;
	margin: 0 auto 30px;
}

#tab-edificios .edificios-tab-heading span {
	font-weight: 700;
}

.page-edificios .home-tabs .title h2 {
	font: 20px "Barlow", sans-serif;
	font-weight: 600;
	color: #0a193a;
	text-transform: uppercase;
	text-align: center;
}
