/* Public UI refresh. Scoped classes keep the legacy template stable. */
:root {
	--ac-bg: #23374d;
	--ac-bg-deep: #192a3d;
	--ac-surface: #ffffff;
	--ac-surface-soft: #f4f7f8;
	--ac-text: #172333;
	--ac-muted: #6d7884;
	--ac-line: rgba(255, 255, 255, 0.16);
	--ac-line-dark: rgba(23, 35, 51, 0.12);
	--ac-glass: rgba(255, 255, 255, 0.08);
	--ac-glass-strong: rgba(255, 255, 255, 0.12);
	--ac-text-light: rgba(255, 255, 255, 0.94);
	--ac-text-soft: rgba(255, 255, 255, 0.72);
	--ac-text-faint: rgba(255, 255, 255, 0.58);
	--ac-teal: #25adb7;
	--ac-teal-dark: #0092a6;
	--ac-teal-light: #7edfe6;
	--ac-gold: #aaa878;
	--ac-gold-dark: #8c8858;
	--ac-radius: 8px;
	--ac-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

body {
	overflow-x: hidden;
}

.header-section .site-logo img,
.header-section .main-menu > li:first-child img {
	display: block;
	height: auto;
	max-height: 45px;
	max-width: 128px;
	width: 128px;
}

.header-section .site-logo img {
	max-width: 118px;
	width: 118px;
}

@media (min-width: 768px) {
	.header-section .main-menu {
		align-items: center;
		display: flex;
		float: none;
		flex-wrap: nowrap;
		justify-content: flex-end;
		margin: 0;
		padding-left: 0;
		width: 100%;
	}

	.header-section .main-menu li {
		display: block;
		flex: 0 0 auto;
	}

	.header-section .main-menu li a {
		align-items: center;
		display: flex;
		min-height: 90px;
		padding-bottom: 0;
		padding-top: 0;
	}

	.header-section .main-menu > li:first-child {
		margin-right: auto;
	}

	.header-section .main-menu > li:first-child a {
		margin-right: 0;
		padding-left: 0;
	}
}

.ac-filter-shell,
.ac-filter-shell *,
.ac-home-search__panel,
.ac-home-search__panel *,
.ac-property-card,
.ac-property-card *,
.ac-detail-page .featured-post,
.ac-detail-page .featured-post *,
.ac-contact-panel,
.ac-contact-panel *,
.ac-contact-form,
.ac-contact-form *,
.ac-contact-page,
.ac-contact-page *,
.ac-service-card,
.ac-service-card *,
.ac-content-page,
.ac-content-page *,
.ac-map-strip,
.ac-map-strip *,
.ac-footer,
.ac-footer * {
	box-sizing: border-box;
}

.ac-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 28px;
}

.ac-section-head > div {
	min-width: 0;
}

.ac-section-head h2,
.ac-section-head h3 {
	color: #fff;
	font-size: 28px;
	line-height: 1.18;
	margin: 0;
}

.ac-section-head p {
	color: var(--ac-text-soft);
	max-width: 560px;
	margin: 10px 0 0;
}

.ac-filter-shell {
	backdrop-filter: blur(16px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	max-width: 100%;
	padding: 22px;
	margin-top: -40px;
	position: relative;
	z-index: 10;
}

.ac-filter-shell h2 {
	color: var(--ac-text-light);
	font-size: 22px;
	line-height: 1.2;
	margin: 0 0 6px;
}

.ac-filter-shell p {
	color: var(--ac-text-soft);
	margin: 0;
	overflow-wrap: break-word;
}

.ac-filter-form {
	margin-top: 18px;
}

.ac-field-label {
	display: block;
	color: var(--ac-text-faint);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.ac-filter-form .form-select,
.ac-filter-form .form-control {
	background-color: var(--ac-glass-strong);
	border: 1px solid var(--ac-line);
	border-radius: 6px;
	color: var(--ac-text-light);
	font-size: 15px;
	height: 48px;
	padding: 0 14px;
}

.ac-filter-form .form-select:focus,
.ac-filter-form .form-control:focus {
	background-color: rgba(255, 255, 255, 0.16);
	border-color: rgba(126, 223, 230, 0.72);
	box-shadow: 0 0 0 0.18rem rgba(37, 173, 183, 0.18);
	color: #fff;
}

.ac-filter-form .form-select option {
	background: var(--ac-bg-deep);
	color: #fff;
}

.ac-filter-form .btn {
	height: 48px;
	border-radius: 6px !important;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
}

.ac-filter-actions {
	display: flex;
	gap: 10px;
}

.ac-filter-actions .btn {
	flex: 1;
}

.ac-reset-link {
	align-items: center;
	border: 1px solid var(--ac-line);
	border-radius: 6px;
	color: var(--ac-text-light);
	display: inline-flex;
	font-size: 14px;
	font-weight: 700;
	height: 48px;
	justify-content: center;
	padding: 0 16px;
	text-decoration: none;
	transition: .2s ease;
}

.ac-reset-link:hover {
	background: var(--ac-glass-strong);
	color: #fff;
}

.ac-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.ac-chip {
	background: rgba(37, 173, 183, 0.18);
	border: 1px solid rgba(126, 223, 230, 0.38);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 12px;
}

.ac-property-grid {
	row-gap: 28px;
}

.ac-property-card {
	backdrop-filter: blur(12px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease;
}

.ac-property-card:hover {
	box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
	transform: translateY(-4px);
}

.ac-property-card__media {
	aspect-ratio: 4 / 3;
	background-color: #d9e1e5;
	display: block;
	position: relative;
	text-decoration: none;
}

.ac-property-card__media:after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
	content: "";
	inset: 0;
	position: absolute;
}

.ac-property-badge {
	background: var(--ac-teal);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	left: 16px;
	letter-spacing: .04em;
	padding: 7px 12px;
	position: absolute;
	text-transform: uppercase;
	top: 16px;
	z-index: 2;
}

.ac-property-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	min-height: 312px;
	padding: 20px;
}

.ac-property-location,
.ac-property-type {
	color: var(--ac-text-soft);
	font-size: 14px;
	margin: 0 0 8px;
}

.ac-property-card h3 {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--ac-text-light);
	display: -webkit-box;
	font-size: 19px;
	line-height: 1.25;
	margin: 0 0 12px;
	min-height: 48px;
	overflow: hidden;
}

.ac-property-excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: var(--ac-text-soft);
	display: -webkit-box;
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 18px;
	min-height: 65px;
	overflow: hidden;
}

.ac-property-details {
	border-top: 1px solid var(--ac-line);
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: auto;
	padding-top: 16px;
}

.ac-property-details span {
	color: var(--ac-text-faint);
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.ac-property-details strong {
	color: var(--ac-text-light);
	display: block;
	font-size: 14px;
	margin-top: 2px;
}

.ac-property-card__footer {
	align-items: center;
	display: flex;
	gap: 14px;
	justify-content: space-between;
	margin-top: 18px;
}

.ac-property-price {
	color: var(--ac-teal-light);
	font-size: 17px;
	font-weight: 800;
	line-height: 1.2;
}

.ac-property-card__footer .btn {
	border-radius: 6px !important;
	font-size: 13px;
	font-weight: 800;
	padding: 11px 14px;
	white-space: nowrap;
}

.ac-pagination-row {
	align-items: center;
	border-top: 1px solid var(--ac-line);
	margin-top: 44px;
	padding-top: 24px;
}

.ac-page-count {
	color: rgba(255, 255, 255, 0.72);
	font-size: 14px;
	margin: 0;
	text-align: center;
}

.ac-home-search {
	background: var(--ac-bg-deep);
	padding: 36px 0;
}

.ac-home-search__panel {
	align-items: center;
	backdrop-filter: blur(16px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	display: grid;
	gap: 20px;
	grid-template-columns: 1.1fr 1.4fr;
	padding: 24px;
}

.ac-home-search h2 {
	color: var(--ac-text-light);
	font-size: 24px;
	line-height: 1.18;
	margin: 0 0 8px;
}

.ac-home-search p {
	color: var(--ac-text-soft);
	margin: 0;
	overflow-wrap: break-word;
}

.ac-home-search form {
	display: grid;
	gap: 12px;
	grid-template-columns: 1fr auto auto;
}

.ac-home-search .form-select,
.ac-home-search .btn,
.ac-home-search .ac-reset-link {
	height: 48px;
}

.ac-home-search .form-select {
	background-color: var(--ac-glass-strong);
	border: 1px solid var(--ac-line);
	color: var(--ac-text-light);
}

.ac-home-search .form-select option {
	background: var(--ac-bg-deep);
	color: #fff;
}

.ac-service-strip {
	background: var(--ac-bg-deep);
	padding: 56px 0;
}

.ac-service-card {
	align-items: flex-start;
	aspect-ratio: 1.02 / 1;
	background-position: center;
	background-size: cover;
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	color: #fff;
	display: flex;
	flex-direction: column;
	isolation: isolate;
	justify-content: space-between;
	min-height: 360px;
	overflow: hidden;
	padding: 26px;
	position: relative;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ac-service-card:before {
	background: linear-gradient(180deg, rgba(25, 42, 61, 0.38) 0%, rgba(25, 42, 61, 0.28) 38%, rgba(25, 42, 61, 0.88) 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -2;
}

.ac-service-card:after {
	background: rgba(25, 42, 61, 0.18);
	content: "";
	inset: 0;
	position: absolute;
	z-index: -1;
}

.ac-service-card:hover {
	border-color: rgba(126, 223, 230, 0.42);
	box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
	color: #fff;
	transform: translateY(-4px);
}

.ac-service-card__tag {
	backdrop-filter: blur(10px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: 999px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	padding: 8px 13px;
	text-transform: uppercase;
}

.ac-service-card__body {
	display: block;
	max-width: 320px;
	min-height: 136px;
	padding-right: 58px;
}

.ac-service-card__body strong {
	color: #fff;
	display: block;
	font-size: 28px;
	font-weight: 800;
	line-height: 1.08;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.ac-service-card__body small {
	color: rgba(255, 255, 255, 0.76);
	display: block;
	font-size: 15px;
	line-height: 1.45;
}

.ac-service-card__cta {
	align-items: center;
	background: var(--ac-gold);
	border-radius: 50%;
	bottom: 26px;
	color: #fff;
	display: flex;
	font-size: 18px;
	height: 48px;
	justify-content: center;
	position: absolute;
	right: 26px;
	width: 48px;
}

.ac-footer {
	background: linear-gradient(180deg, var(--ac-bg-deep) 0%, #122235 100%);
	border-top: 1px solid var(--ac-line);
	padding: 54px 0 0;
}

.ac-footer__grid {
	display: grid;
	gap: 42px;
	grid-template-columns: 1.45fr .75fr 1.1fr;
	padding-bottom: 38px;
}

.ac-footer__logo {
	display: inline-block;
	margin-bottom: 18px;
}

.ac-footer__logo img {
	display: block;
	height: auto;
	max-width: 176px;
}

.ac-footer h5 {
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .06em;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.ac-footer p,
.ac-footer a {
	color: var(--ac-text-soft);
	font-size: 15px;
	line-height: 1.55;
}

.ac-footer p {
	margin: 0;
	max-width: 390px;
}

.ac-footer a {
	text-decoration: none;
	transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.ac-footer a:hover {
	color: #fff;
}

.ac-footer__nav,
.ac-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ac-footer__contact a {
	align-items: flex-start;
	display: inline-flex;
	gap: 10px;
}

.ac-footer__contact i {
	color: var(--ac-teal-light);
	line-height: 1.55;
	width: 16px;
}

.ac-footer__bottom {
	align-items: center;
	border-top: 1px solid var(--ac-line);
	display: flex;
	gap: 24px;
	justify-content: space-between;
	padding: 22px 0;
}

.ac-footer__bottom p {
	color: var(--ac-text-faint);
	font-size: 13px;
	max-width: none;
}

.ac-footer__social {
	display: flex;
	gap: 10px;
}

.ac-footer__social a {
	align-items: center;
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 38px;
	justify-content: center;
	width: 38px;
}

.ac-footer__social a:hover {
	background: rgba(37, 173, 183, 0.18);
	border-color: rgba(126, 223, 230, 0.42);
	color: #fff;
}

.ac-content-page {
	background: var(--ac-bg);
}

.ac-content-gallery {
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	height: 100%;
	overflow: hidden;
}

.ac-content-gallery .SetHeightInstitucional {
	height: 100%;
	min-height: 480px;
}

.ac-copy-panel,
.ac-advice-card {
	backdrop-filter: blur(14px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	color: var(--ac-text-light);
	height: 100%;
	padding: 30px;
}

.ac-panel-kicker {
	color: var(--ac-teal-light);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.ac-copy-panel h4,
.ac-advice-card h4 {
	color: #fff;
	font-size: 28px;
	line-height: 1.16;
	margin: 0 0 18px;
}

.ac-copy-panel h5 {
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	margin: 0 0 12px;
}

.ac-copy-panel p,
.ac-advice-card p {
	color: var(--ac-text-soft);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 16px;
}

.ac-value-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.ac-value-list span {
	background: var(--ac-glass-strong);
	border: 1px solid var(--ac-line);
	border-radius: 999px;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 13px;
}

.ac-internal-services {
	margin-top: 58px;
}

.ac-home-services {
	background: var(--ac-bg);
	padding: 58px 0 64px;
}

.ac-home-services .ac-internal-services {
	margin-top: 0;
}

.ac-mini-service-card {
	align-items: center;
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	color: #fff;
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 250px;
	padding: 28px 22px;
	text-align: center;
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, background-color .2s ease;
}

.ac-mini-service-card:hover {
	background: var(--ac-glass-strong);
	border-color: rgba(126, 223, 230, 0.42);
	color: #fff;
	transform: translateY(-4px);
}

.ac-mini-service-card img {
	height: 94px;
	margin-bottom: 22px;
	object-fit: contain;
	width: 94px;
}

.ac-mini-service-card strong {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 800;
	letter-spacing: .04em;
	margin-bottom: 9px;
	text-transform: uppercase;
}

.ac-mini-service-card span {
	color: var(--ac-text-soft);
	display: block;
	font-size: 14px;
	line-height: 1.45;
	min-height: 42px;
}

.ac-check-grid {
	display: grid;
	gap: 26px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin-top: 26px;
}

.ac-check-list {
	display: grid;
	gap: 11px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ac-check-list li {
	color: var(--ac-text-soft);
	font-size: 14px;
	line-height: 1.45;
	padding-left: 26px;
	position: relative;
}

.ac-check-list li:before {
	align-items: center;
	background: rgba(37, 173, 183, 0.18);
	border: 1px solid rgba(126, 223, 230, 0.36);
	border-radius: 50%;
	color: var(--ac-teal-light);
	content: "\f00c";
	display: flex;
	font-family: FontAwesome;
	font-size: 9px;
	height: 16px;
	justify-content: center;
	left: 0;
	position: absolute;
	top: 3px;
	width: 16px;
}

.ac-advice-stack {
	display: grid;
	gap: 18px;
	height: 100%;
}

.ac-advice-card {
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
	height: auto;
}

.ac-advice-card .btn {
	border-radius: 6px !important;
	margin-top: 8px;
}

.ac-team-card {
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.ac-team-card__media {
	aspect-ratio: 4 / 4.35;
	background: var(--ac-glass-strong);
	position: relative;
}

.ac-team-card__media:after {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58%, rgba(25, 42, 61, 0.65) 100%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.ac-team-card__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.ac-team-card__media a {
	align-items: center;
	background: #25d366;
	border-radius: 50%;
	bottom: 18px;
	color: #fff;
	display: flex;
	font-size: 20px;
	height: 48px;
	justify-content: center;
	position: absolute;
	right: 18px;
	text-decoration: none;
	width: 48px;
	z-index: 2;
}

.ac-team-card__body {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 142px;
	padding: 22px;
}

.ac-team-card__body span {
	color: var(--ac-teal-light);
	display: block;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .06em;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.ac-team-card__body h4 {
	color: #fff;
	font-size: 21px;
	line-height: 1.2;
	margin: 0 0 8px;
}

.ac-team-card__body p {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	color: var(--ac-text-soft);
	display: -webkit-box;
	font-size: 14px;
	line-height: 1.45;
	margin: 0;
	overflow: hidden;
}

.ac-team-card__placeholder {
	align-items: center;
	background: linear-gradient(145deg, rgba(37, 173, 183, 0.2), rgba(255, 255, 255, 0.08));
	color: rgba(255, 255, 255, 0.9);
	display: flex;
	font-size: 54px;
	font-weight: 800;
	height: 100%;
	justify-content: center;
	letter-spacing: .04em;
	width: 100%;
}

.ac-map-strip {
	background: var(--ac-bg-deep);
	padding: 52px 0;
}

.ac-map-shell {
	background:
		linear-gradient(135deg, rgba(37, 173, 183, 0.12), rgba(25, 42, 61, 0.92)),
		var(--ac-bg-deep);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	min-height: 360px;
	overflow: hidden;
	position: relative;
}

.ac-map-shell:after {
	background: linear-gradient(90deg, rgba(18, 34, 53, 0.72), rgba(18, 34, 53, 0.3));
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.ac-map-shell iframe {
	background: var(--ac-bg-deep);
	border: 0;
	display: block;
	filter: grayscale(.85) invert(.88) contrast(.82) saturate(.75);
	height: 400px;
	opacity: .38;
	width: 100%;
}

.ac-map-card {
	backdrop-filter: blur(16px);
	background: rgba(25, 42, 61, 0.82);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	left: 26px;
	max-width: 360px;
	padding: 24px;
	position: absolute;
	top: 26px;
	z-index: 3;
}

.ac-map-card h4 {
	color: #fff;
	font-size: 24px;
	line-height: 1.18;
	margin: 0 0 10px;
}

.ac-map-card p {
	color: var(--ac-text-soft);
	font-size: 14px;
	line-height: 1.55;
	margin: 0 0 16px;
}

.ac-map-card a {
	color: var(--ac-teal-light);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.ac-detail-page .featured-post {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--ac-radius);
	margin-bottom: 70px;
	padding: 20px;
}

.ac-detail-toolbar {
	margin-bottom: 24px;
}

.ac-link-back {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
	text-decoration: none;
}

.ac-link-back:hover {
	color: #fff;
}

.ac-detail-gallery {
	border-radius: var(--ac-radius);
	overflow: hidden;
}

.ac-detail-gallery .SetHeightInstitucional {
	height: 520px;
}

.ac-detail-panel {
	backdrop-filter: blur(14px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	color: var(--ac-text-light);
	height: 100%;
	padding: 28px;
}

.ac-detail-status {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.ac-detail-status span {
	background: rgba(37, 173, 183, 0.18);
	border: 1px solid rgba(126, 223, 230, 0.32);
	border-radius: 999px;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	padding: 7px 12px;
	text-transform: uppercase;
}

.ac-detail-panel h1 {
	color: var(--ac-text-light);
	font-size: 30px;
	line-height: 1.18;
	margin: 0 0 18px;
}

.ac-detail-meta {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-bottom: 22px;
}

.ac-detail-meta p {
	background: var(--ac-glass-strong);
	border: 1px solid var(--ac-line);
	border-radius: 6px;
	color: rgba(255, 255, 255, 0.84) !important;
	font-size: 14px;
	line-height: 1.35;
	margin: 0 !important;
	padding: 12px;
}

.ac-detail-description {
	color: var(--ac-text-soft);
	font-size: 15px;
	line-height: 1.65;
}

.ac-detail-description p {
	color: var(--ac-text-soft);
	margin-bottom: 16px;
}

.ac-stat-grid {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 26px 0;
}

.ac-stat {
	background: var(--ac-glass-strong);
	border: 1px solid var(--ac-line);
	border-radius: 6px;
	color: #fff;
	padding: 16px 12px;
	text-align: center;
}

.ac-stat small {
	color: var(--ac-text-faint);
	display: block;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .04em;
	line-height: 1.2;
	margin-bottom: 7px;
	text-transform: uppercase;
}

.ac-stat strong {
	display: block;
	font-size: 18px;
	line-height: 1.2;
}

.ac-detail-actions {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	margin-top: 22px;
}

.ac-detail-actions .btn {
	border-radius: 6px !important;
	font-weight: 800;
	padding: 13px 14px;
}

.ac-amenities {
	margin-top: 28px;
	row-gap: 16px;
}

.ac-amenity {
	color: var(--ac-text-soft);
	font-size: 13px;
	font-weight: 700;
	text-align: center;
}

.ac-amenity img {
	display: block;
	height: 30px;
	margin: 0 auto 8px !important;
	max-width: 30px !important;
	min-width: auto !important;
	width: 30px;
}

.ac-related-title {
	color: #fff;
	margin-bottom: 28px;
	text-align: center;
}

.ac-contact-panel {
	backdrop-filter: blur(14px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow);
	color: var(--ac-text-light);
	padding: 30px;
}

.ac-contact-panel h4,
.ac-contact-panel h5 {
	color: var(--ac-text-light) !important;
}

.ac-contact-panel h4,
.ac-contact-form h4 {
	color: var(--ac-text-light);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.16;
	margin-bottom: 0;
}

.ac-contact-panel p {
	color: var(--ac-text-soft);
	margin-bottom: 14px !important;
}

.ac-contact-list {
	display: grid;
	gap: 11px;
}

.ac-contact-list p {
	margin: 0 !important;
}

.ac-contact-panel .HoverInfo {
	align-items: flex-start;
	color: var(--ac-text-light);
	display: inline-flex;
	gap: 4px;
	line-height: 1.45;
	text-decoration: none;
}

.ac-contact-panel .HoverInfo:hover {
	color: var(--ac-teal-light);
}

.ac-contact-note,
.ac-form-helper {
	color: var(--ac-text-soft);
	font-size: 15px;
	line-height: 1.65;
}

.ac-contact-note {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	margin-top: 22px;
	padding: 14px 16px;
}

.ac-contact-form {
	backdrop-filter: blur(14px);
	background: var(--ac-glass);
	border: 1px solid var(--ac-line);
	border-radius: var(--ac-radius);
	padding: 30px;
}

.ac-form-helper {
	margin: 12px 0 22px;
}

.ac-contact-form .comment-form input,
.ac-contact-form .comment-form select,
.ac-contact-form .comment-form textarea {
	background-color: var(--ac-glass-strong);
	border: 1px solid var(--ac-line);
	border-radius: 6px;
	color: var(--ac-text-light);
	margin-bottom: 18px;
}

.ac-contact-form .comment-form input::placeholder,
.ac-contact-form .comment-form textarea::placeholder {
	color: var(--ac-text-faint);
	opacity: 1;
}

.ac-contact-form .comment-form input:focus,
.ac-contact-form .comment-form select:focus,
.ac-contact-form .comment-form textarea:focus {
	background-color: rgba(255, 255, 255, 0.16);
	border-color: rgba(126, 223, 230, 0.72);
	box-shadow: 0 0 0 0.18rem rgba(37, 173, 183, 0.18);
	color: #fff;
}

.ac-contact-form .comment-form select option {
	background: var(--ac-bg-deep);
	color: #fff;
}

.ac-contact-form .btn {
	border-radius: 6px !important;
}

.ac-notice {
	background: rgba(37, 173, 183, 0.16);
	border-radius: var(--ac-radius);
	padding: 24px;
}

@media only screen and (max-width: 991px) {
	.ac-section-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.ac-filter-shell {
		margin-top: -20px;
	}

	.ac-home-search__panel,
	.ac-home-search form {
		grid-template-columns: 1fr;
	}

	.ac-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.ac-content-gallery .SetHeightInstitucional {
		min-height: 360px;
	}

	.ac-check-grid {
		grid-template-columns: 1fr;
	}

	.ac-detail-gallery .SetHeightInstitucional {
		height: 360px;
	}

	.ac-detail-panel {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 600px) {
	html,
	body {
		max-width: 100%;
		overflow-x: hidden;
	}

	.hero-item .container,
	.ac-home-search .container,
	.blog-section .container,
	.ac-service-strip .container,
	.ac-map-strip .container,
	.ac-footer .container {
		max-width: 100vw !important;
		overflow: hidden;
		padding-left: 18px !important;
		padding-right: 18px !important;
		width: 100% !important;
	}

	.ac-content-page .container {
		max-width: 342px !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.ac-content-page .row,
	.ac-contact-page .row,
	.ac-property-grid,
	.ac-service-strip .row {
		--bs-gutter-x: 0;
		margin-left: 0;
		margin-right: 0;
		row-gap: 20px;
	}

	.ac-content-page .row > [class*="col-"],
	.ac-contact-page .row > [class*="col-"],
	.ac-property-grid > [class*="col-"],
	.ac-service-strip .row > [class*="col-"] {
		padding-left: 0;
		padding-right: 0;
	}

	.hero-item h2 {
		font-size: 24px !important;
		line-height: 1.18;
		max-width: calc(100vw - 24px);
		overflow-wrap: break-word;
	}

	.hero-item p,
	.ac-home-search h2,
	.ac-section-head h2,
	.ac-section-head h3,
	.ac-section-head p,
	.ac-property-card h3,
	.ac-property-excerpt,
	.ac-copy-panel h4,
	.ac-copy-panel p,
	.ac-advice-card h4,
	.ac-advice-card p,
	.ac-contact-panel h4,
	.ac-contact-panel p,
	.ac-contact-note,
	.ac-contact-form h4,
	.ac-form-helper,
	.ac-mini-service-card span,
	.ac-team-card__body h4,
	.ac-team-card__body p {
		max-width: calc(100vw - 40px);
		overflow-wrap: anywhere;
		white-space: normal !important;
	}

	.ac-section-head,
	.ac-section-head > div {
		max-width: 302px;
		width: 100%;
	}

	.ac-section-head h2,
	.ac-section-head h3,
	.ac-contact-panel h4,
	.ac-contact-form h4 {
		font-size: 24px;
	}

	.ac-filter-shell,
	.ac-home-search__panel,
	.ac-property-card,
	.ac-copy-panel,
	.ac-advice-card,
	.ac-mini-service-card,
	.ac-team-card,
	.ac-detail-panel,
	.ac-contact-panel,
	.ac-contact-form {
		max-width: calc(100vw - 36px);
		min-width: 0;
		padding: 20px;
		width: 100%;
	}

	.ac-filter-shell p,
	.ac-home-search p {
		font-size: 14px;
		line-height: 1.5;
		max-width: calc(100vw - 64px);
		white-space: normal !important;
	}

	.ac-filter-actions,
	.ac-property-card__footer,
	.ac-detail-actions {
		align-items: stretch;
		flex-direction: column;
		grid-template-columns: 1fr;
	}

	.ac-property-card h3 {
		font-size: 18px;
	}

	.ac-property-card__body {
		min-width: 0;
	}

	.ac-detail-panel h1 {
		font-size: 24px;
	}

	.ac-detail-meta,
	.ac-stat-grid {
		grid-template-columns: 1fr;
	}

	.ac-detail-gallery .SetHeightInstitucional {
		height: 270px;
	}

	.ac-properties-page .ac-filter-shell {
		margin-top: 0;
	}

	.ac-home-search {
		padding: 24px 0;
	}

	.ac-service-strip {
		padding: 36px 0;
	}

	.ac-service-card {
		aspect-ratio: auto;
		min-height: 300px;
		padding: 22px;
	}

	.ac-service-card__body {
		padding-right: 48px;
	}

	.ac-service-card__body strong {
		font-size: 23px;
	}

	.ac-service-card__body small {
		font-size: 14px;
	}

	.ac-service-card__cta {
		bottom: 22px;
		right: 22px;
	}

	.ac-content-gallery .SetHeightInstitucional {
		min-height: 280px;
	}

	.ac-copy-panel h4,
	.ac-advice-card h4 {
		font-size: 23px;
	}

	.ac-internal-services {
		margin-top: 38px;
	}

	.ac-mini-service-card {
		min-height: 220px;
	}

	.ac-map-strip {
		padding: 36px 0;
	}

	.ac-map-shell {
		min-height: 0;
	}

	.ac-map-card {
		border-radius: 0;
		left: 0;
		max-width: none;
		position: relative;
		top: 0;
	}

	.ac-map-shell iframe {
		height: 300px;
	}

	.ac-footer {
		padding-top: 38px;
	}

	.ac-footer__grid {
		gap: 28px;
		grid-template-columns: 1fr;
		padding-bottom: 30px;
	}

	.ac-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		gap: 16px;
	}
}
