:root {
	--ari-color-ink: #172126;
	--ari-color-muted: #5c6870;
	--ari-color-surface: #ffffff;
	--ari-color-line: #d8e0e4;
	--ari-color-primary: #1f7a8c;
	--ari-color-accent: #b88a44;
	--ari-container: 1240px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--ari-color-ink);
	background: var(--ari-color-surface);
	font-family: Arial, Helvetica, sans-serif;
	line-height: 1.5;
}

a {
	color: inherit;
}

.screen-reader-text,
.skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 100000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--ari-color-ink);
	color: #fff;
}

.ari-container {
	width: min(100% - 32px, var(--ari-container));
	margin-inline: auto;
}

.site-header {
	position: fixed;
	z-index: 50;
	top: 0;
	right: 0;
	left: 0;
	border-bottom: 0;
	background: rgb(255 255 255 / 0.98);
	box-shadow: 0 3px 14px rgb(0 0 0 / 0.06);
	backdrop-filter: blur(18px);
	transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
	background: rgb(255 255 255 / 0.76);
	box-shadow: 0 18px 50px rgb(14 50 70 / 0.14);
}

.admin-bar .site-header {
	top: 32px;
}

.site-header + section,
.site-header + main,
.site-header + .odonto-home-hero,
.site-header + .odonto-page-hero {
	margin-top: 150px;
}

.site-header__top {
	background: rgb(138 239 235 / 0.94);
	color: #0f435a;
	font-size: 0.92rem;
	font-weight: 700;
	transition: background-color 180ms ease;
}

.site-header.is-scrolled .site-header__top {
	background: rgb(138 239 235 / 0.72);
}

.site-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 34px;
}

.site-header__top-contact,
.site-header__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
}

.site-header__top-contact > *,
.site-header__social-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-height: 34px;
	padding-inline: 18px;
	border-left: 1px solid rgb(255 255 255 / 0.34);
	white-space: nowrap;
}

.site-header__social-link {
	width: 50px;
	padding-inline: 0;
	justify-content: center;
}

.site-header__top-contact > *:last-child,
.site-header__social-link:last-child {
	border-right: 1px solid rgb(255 255 255 / 0.34);
}

.site-header__top a {
	color: inherit;
	text-decoration: none;
}

.site-header__top-contact > *:hover,
.site-header__top-contact > *:focus-visible,
.site-header__social-link:hover,
.site-header__social-link:focus-visible {
	background: rgb(255 255 255 / 0.28);
}

.site-header__top-icon,
.site-header__social-link i,
.site-header__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: currentColor;
	font-weight: 900;
	line-height: 1;
}

.site-header__top-icon,
.site-header__social-link i,
.site-header__cta-icon {
	font-size: 1em;
}

.site-header__main {
	background: transparent;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 184px minmax(0, 1fr) auto;
	align-items: center;
	gap: 36px;
	min-height: 116px;
	transition: min-height 180ms ease;
}

.site-header.is-scrolled .site-header__inner {
	min-height: 82px;
}

.site-branding,
.site-branding__logo {
	display: flex;
	align-items: center;
}

.site-branding__logo {
	text-decoration: none;
}

.site-branding__logo img {
	display: block;
	width: auto;
	max-width: 152px;
	max-height: 96px;
	transition: max-width 180ms ease, max-height 180ms ease;
}

.site-header.is-scrolled .site-branding__logo img {
	max-width: 116px;
	max-height: 68px;
}

.site-branding__logo img + .site-branding__name {
	display: none;
}

.site-branding__name {
	display: inline-flex;
	max-width: 320px;
	color: var(--ari-color-ink);
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.site-navigation__menu,
.site-footer__menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-navigation__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	color: var(--ari-color-ink);
	font-size: 0.86rem;
	font-weight: 800;
	text-decoration: none;
}

.site-navigation__menu a::after {
	position: absolute;
	right: 0;
	bottom: 5px;
	left: 0;
	height: 3px;
	border-radius: 999px;
	background: #22c5dd;
	content: "";
	opacity: 0;
	transform: scaleX(0.35);
	transition: opacity 160ms ease, transform 160ms ease;
}

.site-navigation__menu a:hover,
.site-navigation__menu .current-menu-item > a {
	color: var(--ari-color-primary);
}

.site-navigation__menu a:hover::after,
.site-navigation__menu .current-menu-item > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.site-navigation__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid var(--ari-color-line);
	border-radius: 14px;
	background: #fff;
	color: var(--ari-color-ink);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.site-navigation__toggle-bars,
.site-navigation__toggle-bars::before,
.site-navigation__toggle-bars::after {
	display: block;
	width: 18px;
	height: 2px;
	border-radius: 2px;
	background: currentcolor;
	content: "";
}

.site-navigation__toggle-bars {
	position: relative;
}

.site-navigation__toggle-bars::before,
.site-navigation__toggle-bars::after {
	position: absolute;
	left: 0;
}

.site-navigation__toggle-bars::before {
	top: -6px;
}

.site-navigation__toggle-bars::after {
	top: 6px;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding: 14px 32px;
	border-radius: 999px;
	background: linear-gradient(135deg, #8aefeb, #22c5dd);
	color: #fff;
	font-size: 0.92rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 16px 34px rgb(34 197 221 / 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
	background: linear-gradient(135deg, #22c5dd, #12a6bd);
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 18px 38px rgb(34 197 221 / 0.28);
}

.site-main {
	min-height: 55vh;
}

.ari-visual-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 8px;
	background: color-mix(in srgb, var(--ari-color-primary) 12%, #fff);
	color: var(--ari-color-primary);
	font-size: 1.1rem;
}

.ari-asset-slot {
	position: relative;
	display: grid;
	gap: 8px;
	width: min(100% - 32px, var(--ari-container));
	margin: 22px auto;
	padding: 18px 20px 18px 74px;
	overflow: hidden;
	border: 1px dashed color-mix(in srgb, var(--ari-color-primary) 42%, var(--ari-color-line));
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 0.92), rgb(245 249 250 / 0.98)),
		repeating-linear-gradient(135deg, rgb(31 122 140 / 0.08) 0 10px, transparent 10px 20px);
	box-shadow: 0 16px 38px rgb(23 33 38 / 0.06);
	color: var(--ari-color-ink);
}

.ari-asset-slot strong {
	font-size: 0.98rem;
}

.ari-asset-slot span:not(.ari-asset-slot__motion) {
	color: var(--ari-color-muted);
	font-size: 0.92rem;
}

.ari-asset-slot--ready {
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
	align-items: stretch;
	padding: 16px;
	border-style: solid;
	background: #fff;
}

.ari-asset-slot__copy {
	display: grid;
	align-content: center;
	gap: 8px;
	padding: 16px;
}

.ari-asset-slot__copy span {
	color: var(--ari-color-muted);
	font-size: 0.94rem;
}

.ari-asset-slot__media {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 10px;
	min-height: 180px;
}

.ari-asset-slot--hero-primary .ari-asset-slot__media,
.ari-asset-slot--about-story .ari-asset-slot__media {
	grid-template-columns: 1fr;
}

.ari-curated-asset {
	position: relative;
	min-height: 180px;
	margin: 0;
	overflow: hidden;
	border-radius: 8px;
	background: #edf3f5;
}

.ari-curated-asset img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 180px;
	object-fit: cover;
	transition: transform 280ms ease;
}

.ari-curated-asset:hover img {
	transform: scale(1.025);
}

.ari-curated-asset figcaption {
	position: absolute;
	right: 8px;
	bottom: 8px;
	left: 8px;
	padding: 6px 8px;
	border-radius: 6px;
	background: rgb(23 33 38 / 0.74);
	color: #fff;
	font-size: 0.72rem;
	line-height: 1.25;
}

.ari-asset-slot__motion {
	position: absolute;
	top: 18px;
	left: 20px;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background:
		radial-gradient(circle at 65% 35%, #fff 0 18%, transparent 19%),
		linear-gradient(135deg, var(--ari-color-primary), var(--ari-color-accent));
	animation: ariAssetPulse 2.8s ease-in-out infinite;
}

@keyframes ariAssetPulse {
	0%,
	100% {
		transform: translateY(0) scale(1);
		opacity: 0.85;
	}

	50% {
		transform: translateY(-3px) scale(1.04);
		opacity: 1;
	}
}

@media (max-width: 760px) {
	.ari-asset-slot--ready {
		grid-template-columns: 1fr;
		padding: 12px;
	}

	.ari-asset-slot__copy {
		padding: 8px;
	}

	.ari-asset-slot__media {
		grid-template-columns: 1fr;
	}
}

.ari-section {
	padding-block: 56px;
}

.ari-page__header,
.ari-post__header,
.ari-error {
	padding-block: 56px 24px;
}

.ari-page__title,
.ari-post__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
}

.ari-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 4px;
	background: var(--ari-color-primary);
	color: #fff;
	text-decoration: none;
}

.site-footer {
	background: #00162a;
	color: rgb(255 255 255 / 0.72);
}

.site-footer__newsletter {
	padding-block: 34px 22px;
	background: #00162a;
}

.site-footer__newsletter-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
	gap: 28px;
	align-items: center;
}

.site-footer__newsletter h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.2;
}

.site-footer__newsletter h2::before {
	margin-right: 8px;
	color: var(--ari-color-accent);
	content: ">";
}

.site-footer__newsletter p {
	margin: 0;
	color: rgb(255 255 255 / 0.82);
	font-size: 0.92rem;
}

.site-footer__newsletter-form,
.site-footer__newsletter-actions {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.site-footer__newsletter-form input {
	min-height: 42px;
	padding: 10px 14px;
	border: 0;
	border-radius: 4px;
	background: #fff;
	color: var(--ari-color-ink);
	font: inherit;
}

.site-footer__newsletter-form button,
.site-footer__newsletter-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 18px;
	border: 0;
	border-radius: 4px;
	background: var(--ari-color-accent);
	color: #00162a;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	text-decoration: none;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(140px, 0.6fr) minmax(280px, 1.1fr) minmax(260px, 1fr);
	gap: 42px;
	padding-block: 58px 42px;
}

.site-footer__title {
	margin: 0 0 18px;
	color: #fff;
	font-size: clamp(1.4rem, 2.4vw, 2rem);
	font-weight: 800;
	line-height: 1.1;
}

.site-footer__brand p {
	max-width: 270px;
	margin: 0;
	color: rgb(255 255 255 / 0.68);
	font-size: 0.92rem;
}

.site-footer__heading {
	margin: 0 0 20px;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer__menu,
.site-footer__contact-list,
.site-footer__legal {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__menu {
	display: grid;
	gap: 10px;
}

.site-footer__menu--columns {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 28px;
}

.site-footer__menu a,
.site-footer__contact a,
.site-footer__legal a {
	color: rgb(255 255 255 / 0.72);
	text-decoration: none;
}

.site-footer__menu a:hover,
.site-footer__contact a:hover,
.site-footer__legal a:hover {
	color: #fff;
}

.site-footer__contact-list {
	display: grid;
	gap: 12px;
}

.site-footer__contact-list li {
	position: relative;
	padding-left: 20px;
	color: rgb(255 255 255 / 0.72);
	font-size: 0.92rem;
}

.site-footer__contact-list li::before {
	position: absolute;
	top: 0.55em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--ari-color-accent);
	content: "";
}

.site-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding-block: 28px;
	border-top: 1px solid rgb(255 255 255 / 0.12);
	border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	transition: color 0.18s ease, transform 0.18s ease;
}

.site-footer__social a:hover {
	color: #55c8ee;
	transform: translateY(-1px);
}

.site-footer__bottom {
	display: grid;
	gap: 12px;
	justify-items: center;
	padding-block: 18px 24px;
}

.site-footer__copy {
	margin: 0;
	color: rgb(255 255 255 / 0.62);
	font-size: 0.86rem;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 22px;
	justify-content: center;
	font-size: 0.84rem;
}

.ari-section__header {
	max-width: 760px;
	margin: 0 auto 36px;
	text-align: center;
}

.ari-section__header h1,
.ari-section__header h2 {
	margin: 8px 0 12px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.1;
}

.ari-eyebrow,
.ari-badge {
	margin: 0;
	color: var(--ari-color-accent);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ari-filter-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 36px;
}

.ari-filter-list__item {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 16px;
	border: 1px solid var(--ari-color-ink);
	border-radius: 999px;
	text-decoration: none;
}

.ari-filter-list__item:hover,
.ari-filter-list__item.is-active {
	background: var(--ari-color-ink);
	color: #fff;
}

.ari-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
}

.ari-card {
	overflow: hidden;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgb(0 0 0 / 0.06);
}

.ari-specialist-card__media {
	display: block;
	aspect-ratio: 4 / 5;
	background: #edf3f5;
}

.ari-service-card__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: #edf3f5;
}

.ari-specialist-card__media img,
.ari-service-card__media img,
.ari-service-hero__media img,
.ari-specialist-profile__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ari-specialist-card__placeholder,
.ari-service-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #edf3f5, #d7e4e8);
}

.ari-specialist-card__body,
.ari-service-card__body {
	padding: 20px;
}

.ari-specialist-card__title,
.ari-service-card__title {
	margin: 0 0 6px;
	font-size: 1.25rem;
	line-height: 1.2;
}

.ari-specialist-card__title a,
.ari-specialist-card__link,
.ari-service-card__title a,
.ari-service-card__link {
	text-decoration: none;
}

.ari-specialist-card__role,
.ari-specialist-card__specialties,
.ari-service-card__subtitle {
	margin: 0 0 10px;
	color: var(--ari-color-accent);
	font-size: 0.86rem;
	font-weight: 700;
}

.ari-specialist-card__excerpt,
.ari-service-card__excerpt {
	color: var(--ari-color-muted);
	font-size: 0.95rem;
}

.ari-specialist-card__link,
.ari-service-card__link {
	color: var(--ari-color-primary);
	font-weight: 700;
}

.ari-service-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 48px;
	align-items: center;
}

.ari-service-hero__content h1 {
	margin: 8px 0 14px;
	font-size: clamp(2.2rem, 5vw, 3.7rem);
	line-height: 1.05;
}

.ari-service-hero__subtitle {
	max-width: 680px;
	margin: 0;
	color: var(--ari-color-muted);
	font-size: 1.15rem;
}

.ari-service-hero__media {
	overflow: hidden;
	border-radius: 8px;
	background: #edf3f5;
}

.ari-content-narrow {
	max-width: 820px;
}

.ari-legacy-seo-note {
	margin-top: 40px;
	padding: 20px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #f8fafb;
	color: var(--ari-color-muted);
	font-size: 0.92rem;
}

.ari-legacy-seo-note h2 {
	margin-top: 0;
	color: var(--ari-color-ink);
	font-size: 1rem;
}

.ari-specialist-profile__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
	gap: 48px;
	align-items: center;
}

.ari-specialist-profile__media {
	overflow: hidden;
	border-radius: 8px;
	background: #edf3f5;
}

.ari-specialist-profile__content h1 {
	margin: 8px 0 10px;
	font-size: clamp(2.2rem, 5vw, 3.5rem);
	line-height: 1.05;
}

.ari-specialist-profile__role {
	margin: 0 0 12px;
	color: var(--ari-color-accent);
	font-weight: 700;
}

.ari-specialist-profile__meta {
	margin: 0 0 8px;
	color: var(--ari-color-muted);
}

.ari-specialist-profile__bio {
	margin-top: 24px;
}

.ari-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--ari-color-muted);
	font-size: 0.92rem;
}

.ari-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.ari-action-row--center {
	justify-content: center;
}

.ari-button--outline {
	border: 1px solid var(--ari-color-primary);
	background: transparent;
	color: var(--ari-color-primary);
}

.ari-button--gold {
	background: var(--ari-color-accent);
	color: #172126;
	font-weight: 700;
}

.ari-button--outline-light {
	border: 1px solid rgb(255 255 255 / 0.74);
	background: transparent;
	color: #fff;
	font-weight: 700;
}

.ari-page-hero {
	padding-block: 58px;
	background: linear-gradient(120deg, #172126, #1f7a8c);
	color: #fff;
}

.ari-page-hero__inner {
	max-width: 900px;
}

.ari-page-hero h1 {
	margin: 8px 0 12px;
	font-size: clamp(2.25rem, 5vw, 4rem);
	line-height: 1.05;
}

.ari-page-hero p:not(.ari-eyebrow) {
	max-width: 720px;
	margin: 0;
	color: rgb(255 255 255 / 0.78);
	font-size: 1.08rem;
}

.ari-page__body,
.ari-post__body {
	background: #fff;
}

.ari-page__content > :first-child,
.ari-post__content > :first-child,
.ari-service-content > .ari-container > :first-child {
	margin-top: 0;
}

.ari-page__content img,
.ari-post__content img,
.ari-service-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.ari-service-hero__placeholder,
.ari-specialist-profile__placeholder {
	display: block;
	aspect-ratio: 4 / 3;
	width: 100%;
	background:
		linear-gradient(135deg, rgb(31 122 140 / 0.18), rgb(184 138 68 / 0.18)),
		#edf3f5;
}

.ari-specialist-profile__placeholder {
	aspect-ratio: 4 / 5;
}

.ari-next-step-box {
	margin-top: 36px;
	padding: 28px;
	border-radius: 8px;
	background: #f2f7f8;
}

.ari-next-step-box h2 {
	margin: 0 0 10px;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.ari-next-step-box p {
	color: var(--ari-color-muted);
}

.ari-home-hero {
	overflow: hidden;
	padding-block: 0;
	background: #e9f8fb;
	color: var(--ari-color-ink);
}

.ari-home-appointment__grid,
.ari-home-split,
.ari-home-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 48px;
	align-items: center;
}

.ari-home-hero--doctor {
	background:
		radial-gradient(circle at 70% 35%, rgb(85 200 238 / 0.26), transparent 34%),
		linear-gradient(120deg, #ffffff 0%, #eefafe 58%, #dff4f9 100%);
	background-position: center;
	background-size: cover;
}

.ari-home-hero__stage {
	position: relative;
	display: grid;
	grid-template-columns: minmax(250px, 0.86fr) minmax(330px, 1.12fr) minmax(220px, 0.72fr);
	gap: 18px;
	align-items: center;
	min-height: 560px;
}

.ari-home-hero__content {
	position: relative;
	z-index: 2;
	align-self: center;
	max-width: 380px;
	text-shadow: none;
}

.ari-home-hero__intro {
	margin: 0 0 4px;
	color: var(--ari-color-primary);
	font-size: clamp(1.8rem, 3vw, 3rem);
	font-weight: 800;
	line-height: 1.05;
}

.ari-home-hero__content h1 {
	margin: 0 0 12px;
	color: var(--ari-color-ink);
	font-size: clamp(3.1rem, 5vw, 5.4rem);
	font-weight: 900;
	line-height: 0.96;
}

.ari-home-cta h2 {
	margin: 10px 0 18px;
	font-size: clamp(2.5rem, 6vw, 4.8rem);
	line-height: 1.02;
}

.ari-home-hero__lead {
	max-width: 330px;
	margin: 0 0 6px;
	color: var(--ari-color-muted);
	font-size: clamp(1rem, 1.8vw, 1.28rem);
	font-weight: 800;
	line-height: 1.45;
}

.ari-home-hero__small {
	max-width: 300px;
	margin: 0 0 24px;
	color: var(--ari-color-muted);
	font-size: 0.78rem;
	font-weight: 700;
}

.ari-home-hero .ari-button--outline {
	border-color: rgb(255 255 255 / 0.72);
	color: #fff;
}

.ari-home-hero .ari-button--sky {
	min-height: 52px;
	padding-inline: 28px;
	background: #55c8ee;
	box-shadow: 0 12px 26px rgb(0 141 188 / 0.22);
}

.ari-home-hero__doctor {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	align-self: end;
	min-height: 530px;
}

.ari-home-hero__doctor > img {
	position: relative;
	z-index: 2;
	display: block;
	width: min(100%, 430px);
	max-height: 530px;
	object-fit: contain;
	object-position: bottom center;
}

.ari-home-hero__circle {
	position: absolute;
	z-index: 1;
	right: 50%;
	bottom: 26px;
	width: min(112%, 560px);
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid rgb(31 122 140 / 0.16);
	background:
		linear-gradient(135deg, rgb(255 255 255 / 0.78), rgb(255 255 255 / 0.22)),
		radial-gradient(circle at 30% 28%, rgb(85 200 238 / 0.34), transparent 32%);
	box-shadow: 0 28px 80px rgb(23 33 38 / 0.10);
	transform: translateX(54%);
}

.ari-home-hero__circle img {
	display: block;
	width: 100%;
	height: auto;
	animation: ari-hero-circle-spin 25s linear infinite;
	transform-origin: center;
}

.ari-home-hero__preview {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 14px;
	width: min(82%, 420px);
	padding: 24px;
	border: 1px solid rgb(216 224 228 / 0.9);
	border-radius: 8px;
	background: rgb(255 255 255 / 0.86);
	box-shadow: 0 22px 60px rgb(23 33 38 / 0.12);
}

.ari-home-hero__preview span {
	display: block;
	height: 54px;
	border-radius: 6px;
	background: linear-gradient(90deg, #dff4f9, #f6fbfc);
}

.ari-home-hero__preview span:nth-child(2) {
	width: 78%;
}

.ari-home-hero__preview span:nth-child(3) {
	width: 58%;
	background: linear-gradient(90deg, #b88a44, #ead3a8);
}

.ari-home-hero__photo {
	position: relative;
	z-index: 2;
	width: min(92%, 560px);
	margin: 0;
	overflow: hidden;
	border: 10px solid #fff;
	border-radius: 8px;
	box-shadow: 0 28px 80px rgb(23 33 38 / 0.18);
	transform: rotate(-1.5deg);
}

.ari-home-hero__photo img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.ari-home-hero__photo figcaption {
	position: absolute;
	right: 12px;
	bottom: 12px;
	padding: 7px 10px;
	border-radius: 6px;
	background: rgb(0 22 42 / 0.74);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
}

@keyframes ari-hero-circle-spin {
	to {
		transform: rotate(360deg);
	}
}

.ari-home-hero__badges {
	position: relative;
	z-index: 2;
	display: grid;
	gap: 46px;
	margin: 0;
	padding: 0;
	color: #0b1b23;
	list-style: none;
}

.ari-home-hero__badges li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.98rem;
}

@media (min-width: 1024px) {
	.ari-home-hero__badges li:nth-child(1) {
		animation: ari-hero-badge-zoom 6s linear infinite;
	}

	.ari-home-hero__badges li:nth-child(2) {
		animation: ari-hero-badge-top 5s linear infinite;
	}

	.ari-home-hero__badges li:nth-child(3) {
		animation: ari-hero-badge-side 7s linear infinite;
	}
}

@keyframes ari-hero-badge-zoom {
	0% {
		transform: translateY(-20px) translateX(0);
	}

	50% {
		transform: translateY(0) translateX(-20px);
	}

	100% {
		transform: translateY(-20px) translateX(0);
	}
}

@keyframes ari-hero-badge-top {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-30px);
	}

	100% {
		transform: translateY(0);
	}
}

@keyframes ari-hero-badge-side {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-30px);
	}

	100% {
		transform: translateX(0);
	}
}

.ari-home-hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 52px;
	height: 52px;
}

.ari-home-hero__badge-icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ari-home-hero__badges strong {
	font-weight: 900;
}

.ari-home-split__media img,
.ari-home-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ari-home-appointment {
	padding-block: 0 62px;
	background: #eef5fb;
}

.ari-home-appointment__card {
	position: relative;
	z-index: 3;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	width: min(100% - 40px, 1320px);
	max-width: 1320px;
	margin-top: 0;
	background: #fff;
	box-shadow: 0 10px 28px rgb(0 70 110 / 0.08);
}

.ari-home-appointment__left,
.ari-home-appointment__form {
	min-height: 422px;
	padding: 50px 30px;
}

.ari-home-appointment__left h2,
.ari-home-appointment__form h2 {
	margin: 0 0 12px;
	font-size: clamp(1.55rem, 2.2vw, 2.25rem);
	line-height: 1.18;
}

.ari-home-appointment__left h2 {
	color: #083f9a;
}

.ari-home-appointment__left p {
	max-width: 430px;
	margin: 0 0 28px;
	color: #27333c;
	font-size: 1.05rem;
	line-height: 1.55;
}

.ari-home-appointment__map {
	overflow: hidden;
	min-height: 224px;
	padding: 34px;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 0.72), rgb(223 244 249 / 0.56)),
		#e8eef2;
}

.ari-home-appointment__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.ari-home-appointment__map h2 {
	margin: 0 0 8px;
	color: var(--ari-color-ink);
	font-size: clamp(1.3rem, 2.4vw, 2rem);
	line-height: 1.12;
}

.ari-home-appointment__map > p {
	max-width: 620px;
	margin: 0 0 24px;
	color: var(--ari-color-muted);
}

.ari-home-appointment__highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.ari-home-appointment__highlights article {
	display: grid;
	gap: 7px;
	min-height: 130px;
	padding: 18px;
	border: 1px solid rgb(31 122 140 / 0.12);
	border-radius: 8px;
	background: rgb(255 255 255 / 0.74);
	box-shadow: 0 12px 28px rgb(23 33 38 / 0.05);
}

.ari-home-appointment__highlights span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: color-mix(in srgb, var(--ari-color-primary) 12%, #fff);
	color: var(--ari-color-primary);
}

.ari-home-appointment__highlights strong {
	color: var(--ari-color-ink);
	font-size: 0.95rem;
}

.ari-home-appointment__highlights small {
	color: var(--ari-color-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

.ari-home-appointment__form {
	background: #55c8ee;
	color: #fff;
}

.ari-home-appointment__fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 12px;
}

.ari-home-appointment__field-full {
	grid-column: 1 / -1;
}

.ari-home-appointment__form label {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.ari-home-appointment__form span {
	font-size: 0.78rem;
	font-weight: 700;
}

.ari-home-appointment__form input,
.ari-home-appointment__form select,
.ari-home-appointment__form textarea {
	width: 100%;
	min-height: 54px;
	padding: 14px 16px;
	border: 0;
	border-radius: 3px;
	background: #fff;
	color: #25313a;
	font: inherit;
	font-size: 0.86rem;
}

.ari-home-appointment__form textarea {
	min-height: 88px;
	resize: vertical;
}

.ari-home-appointment__submit {
	min-height: 54px;
	border: 0;
	border-radius: 3px;
	background: #fff;
	color: #0a5270;
	font-weight: 800;
	cursor: pointer;
}

.ari-home-appointment__form .forminator-ui,
.ari-home-contact__form .forminator-ui,
.ari-contact-page__form .forminator-ui,
.ari-page__appointment-form .forminator-ui {
	width: 100%;
	margin: 0 !important;
}

.ari-home-appointment__form .forminator-row,
.ari-home-contact__form .forminator-row,
.ari-contact-page__form .forminator-row,
.ari-page__appointment-form .forminator-row {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px !important;
	margin: 0 0 22px !important;
}

.ari-home-appointment__form .forminator-field,
.ari-home-contact__form .forminator-field,
.ari-contact-page__form .forminator-field,
.ari-page__appointment-form .forminator-field {
	margin: 0 !important;
}

.ari-home-appointment__form .forminator-label,
.ari-home-contact__form .forminator-label,
.ari-contact-page__form .forminator-label,
.ari-page__appointment-form .forminator-label {
	display: block !important;
	margin: 0 0 8px !important;
	color: var(--ari-color-accent) !important;
	font-size: 0.72rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
}

.ari-home-appointment__form .forminator-input,
.ari-home-appointment__form .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"],
.ari-home-appointment__form .forminator-textarea,
.ari-home-contact__form .forminator-input,
.ari-home-contact__form .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"],
.ari-home-contact__form .forminator-textarea,
.ari-contact-page__form .forminator-input,
.ari-contact-page__form .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"],
.ari-contact-page__form .forminator-textarea,
.ari-page__appointment-form .forminator-input,
.ari-page__appointment-form .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"],
.ari-page__appointment-form .forminator-textarea {
	width: 100% !important;
	min-height: 48px !important;
	padding: 9px 0 !important;
	border: 0 !important;
	border-bottom: 1px solid #d9e3e8 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: var(--ari-color-ink) !important;
	font: inherit !important;
	box-shadow: none !important;
}

.ari-home-appointment__form .forminator-textarea,
.ari-home-contact__form .forminator-textarea,
.ari-contact-page__form .forminator-textarea,
.ari-page__appointment-form .forminator-textarea {
	min-height: 118px !important;
	resize: vertical;
}

.ari-home-appointment__form .forminator-button-submit,
.ari-home-contact__form .forminator-button-submit,
.ari-contact-page__form .forminator-button-submit,
.ari-page__appointment-form .forminator-button-submit {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 54px !important;
	padding: 13px 24px !important;
	border: 0 !important;
	border-radius: 3px !important;
	background: #00162a !important;
	color: #fff !important;
	font-weight: 800 !important;
	text-transform: none !important;
	box-shadow: none !important;
	cursor: pointer;
}

.ari-home-appointment__form .forminator-button-submit {
	width: 100% !important;
	background: #fff !important;
	color: #0a5270 !important;
}

.ari-home-appointment__form .forminator-row {
	gap: 12px !important;
	margin-bottom: 12px !important;
}

.ari-home-appointment__form .forminator-label {
	color: #fff !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.ari-home-appointment__form .forminator-input,
.ari-home-appointment__form .forminator-select2 + .forminator-select .selection .select2-selection--single[role="combobox"],
.ari-home-appointment__form .forminator-textarea {
	min-height: 46px !important;
	padding: 12px 14px !important;
	border: 0 !important;
	border-radius: 3px !important;
	background: #fff !important;
}

.ari-home-appointment__form .forminator-textarea {
	min-height: 74px !important;
}

.ari-home-split__content h2,
.ari-home-differentials h2 {
	margin: 8px 0 12px;
	font-size: clamp(1.8rem, 4vw, 3rem);
	line-height: 1.1;
}

.ari-home-appointment p,
.ari-home-split__content p,
.ari-home-differential p,
.ari-home-contact p,
.ari-home-contact__form-note p {
	color: var(--ari-color-muted);
}

.ari-home-section-actions {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.ari-home-service-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.ari-home-service-pill {
	display: flex;
	align-items: center;
	min-height: 72px;
	padding: 18px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
	font-weight: 700;
}

.ari-service-card__placeholder--icon {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 150px;
	background:
		radial-gradient(circle at 70% 30%, rgb(255 255 255 / 0.72), transparent 22%),
		linear-gradient(135deg, rgb(31 122 140 / 0.16), rgb(184 138 68 / 0.14)),
		#edf7f8;
	color: var(--ari-color-primary);
	font-size: 2.15rem;
}

.ari-home-about--dark {
	background: #172126;
	color: #fff;
}

.ari-home-about--light {
	background: #fff;
}

.ari-home-about--dark .ari-home-split__content p {
	color: rgb(255 255 255 / 0.76);
}

.ari-home-about--dark .ari-home-split__content h2 span,
.ari-home-about--light .ari-home-split__content h2 span {
	color: var(--ari-color-primary);
}

.ari-home-about--dark .ari-home-split__content h2 span {
	color: #7ee3f4;
}

.ari-home-split__media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	background: #edf3f5;
}

.ari-home-split__media--framed {
	box-shadow: 0 18px 50px rgb(0 0 0 / 0.18);
}

.ari-home-image-label {
	position: absolute;
	right: 16px;
	bottom: 16px;
	display: grid;
	gap: 2px;
	max-width: min(72%, 260px);
	padding: 10px 12px;
	border-radius: 6px;
	background: rgb(255 255 255 / 0.94);
	box-shadow: 0 10px 24px rgb(0 0 0 / 0.16);
	color: var(--ari-color-ink);
	font-size: 0.86rem;
}

.ari-home-image-label span {
	color: var(--ari-color-muted);
	font-size: 0.78rem;
}

.ari-home-check-list {
	display: grid;
	gap: 10px;
	margin: 22px 0 24px;
	padding: 0;
	list-style: none;
}

.ari-home-check-list--grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ari-home-check-list li {
	position: relative;
	padding-left: 24px;
	font-weight: 700;
}

.ari-home-check-list li::before {
	position: absolute;
	top: 0.15em;
	left: 0;
	width: 16px;
	height: 16px;
	border-radius: 999px;
	background: var(--ari-color-primary);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	content: "\2713";
}

.ari-home-about--dark .ari-home-check-list li::before {
	background: var(--ari-color-accent);
	color: #172126;
}

.ari-home-about {
	background: #fff;
}

.ari-home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
	gap: clamp(32px, 6vw, 72px);
	align-items: center;
}

.ari-home-about__content h2 {
	margin: 8px 0 16px;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.05;
}

.ari-home-about__content > p {
	max-width: 640px;
	color: var(--ari-color-muted);
	font-size: 1.05rem;
}

.ari-home-about__list {
	display: grid;
	gap: 10px;
	margin: 24px 0;
	padding: 0;
	list-style: none;
}

.ari-home-about__list li {
	position: relative;
	padding-left: 26px;
	color: #25313a;
	font-weight: 700;
}

.ari-home-about__list li::before {
	position: absolute;
	top: 0.2em;
	left: 0;
	width: 17px;
	height: 17px;
	border-radius: 999px;
	background: var(--ari-color-primary);
	color: #fff;
	font-size: 0.68rem;
	line-height: 17px;
	text-align: center;
	content: "\2713";
}

.ari-home-about__media {
	position: relative;
	overflow: hidden;
	min-height: 360px;
	border-radius: 8px;
	background: #edf3f5;
	box-shadow: 0 22px 60px rgb(23 33 38 / 0.12);
}

.ari-home-about__media img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.ari-home-about__placeholder {
	display: block;
	width: 100%;
	min-height: 360px;
	background:
		linear-gradient(135deg, rgb(31 122 140 / 0.18), rgb(184 138 68 / 0.18)),
		#edf3f5;
}

.ari-home-gallery {
	background: #dff3fb;
}

.ari-home-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 980px;
	margin-inline: auto;
}

.ari-home-gallery__item {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin: 0;
	border: 3px solid #fff;
	border-radius: 4px;
	background: #edf3f5;
	box-shadow: 0 8px 20px rgb(0 0 0 / 0.08);
}

.ari-home-gallery__item--image {
	border-width: 0;
	border-radius: 8px;
}

.ari-home-gallery__item figcaption {
	position: absolute;
	right: 8px;
	bottom: 8px;
	left: 8px;
	padding: 7px 9px;
	border-radius: 6px;
	background: rgb(0 22 42 / 0.72);
	color: #fff;
	font-size: 0.76rem;
	font-weight: 800;
}

.ari-home-gallery__item:not(.ari-home-gallery__item--image) figcaption {
	position: static;
	background: transparent;
	color: var(--ari-color-ink);
}

.ari-home-gallery .ari-section__header {
	max-width: 720px;
	margin-bottom: 28px;
}

.ari-home-differentials {
	background: #f8f9fa;
	padding-block: 86px 96px;
}

.ari-home-differentials .ari-section__header {
	margin-bottom: 72px;
}

.ari-home-differentials .ari-eyebrow {
	color: #e0ca57;
	letter-spacing: 0.38em;
}

.ari-home-differentials h2 {
	color: #1a2b4a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2.3rem, 4vw, 3.35rem);
}

.ari-home-differentials__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	max-width: 1040px;
	margin-inline: auto;
}

.ari-home-contact__form,
.ari-form-fallback {
	padding: 24px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgb(0 0 0 / 0.04);
}

.ari-home-differential {
	min-height: 190px;
	padding: 42px 30px 34px;
	border: 0;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 14px 30px rgb(15 23 42 / 0.06);
	text-align: center;
}

.ari-home-differential h3 {
	margin: 0 0 18px;
	color: #1a2b4a;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.25rem, 2vw, 1.55rem);
	line-height: 1.2;
}

.ari-form-fallback h3 {
	margin: 0 0 10px;
	font-size: 1.2rem;
}

.ari-home-differential__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 52px;
	height: 52px;
	margin-bottom: 24px;
	border-radius: 50%;
	background-color: #dff8f5;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 28px 28px;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: 28px 28px;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 28px 28px;
}

.ari-home-differential__icon--clock {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.73-4-2.27V7Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.73-4-2.27V7Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--layout {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 3h18v18H3V3Zm2 2v4h14V5H5Zm0 6v8h6v-8H5Zm8 0v8h6v-8h-6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 3h18v18H3V3Zm2 2v4h14V5H5Zm0 6v8h6v-8H5Zm8 0v8h6v-8h-6Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--team {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5Zm8.5-2a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm0 2c-.62 0-1.22.07-1.79.2 1.98 1.1 3.29 2.8 3.29 4.8v2h4v-2c0-2.76-2.46-5-5.5-5Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5Zm8.5-2a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm0 2c-.62 0-1.22.07-1.79.2 1.98 1.1 3.29 2.8 3.29 4.8v2h4v-2c0-2.76-2.46-5-5.5-5Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--eye {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--award {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-4 12.74V22l4-2 4 2v-7.26A7 7 0 0 0 12 2Zm0 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-4 12.74V22l4-2 4 2v-7.26A7 7 0 0 0 12 2Zm0 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--heart {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09A6.01 6.01 0 0 1 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09A6.01 6.01 0 0 1 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--clock,
.ari-home-differential__icon--layout,
.ari-home-differential__icon--team,
.ari-home-differential__icon--eye,
.ari-home-differential__icon--award,
.ari-home-differential__icon--heart {
	mask-image: none;
	-webkit-mask-image: none;
}

.ari-home-differential__icon::before {
	content: none;
	display: block;
	width: 24px;
	height: 24px;
	background: currentColor;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
}

.ari-home-differential__icon i {
	color: var(--ari-color-primary);
	font-size: 1.45rem;
	line-height: 1;
}

.ari-home-differential__icon--clock::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.73-4-2.27V7Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm0 2a8 8 0 1 1 0 16 8 8 0 0 1 0-16Zm1 3h-2v6l5 3 1-1.73-4-2.27V7Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--layout::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 3h18v18H3V3Zm2 2v4h14V5H5Zm0 6v8h6v-8H5Zm8 0v8h6v-8h-6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 3h18v18H3V3Zm2 2v4h14V5H5Zm0 6v8h6v-8H5Zm8 0v8h6v-8h-6Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--team::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5Zm8.5-2a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm0 2c-.62 0-1.22.07-1.79.2 1.98 1.1 3.29 2.8 3.29 4.8v2h4v-2c0-2.76-2.46-5-5.5-5Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M9 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm0 2c-4.42 0-8 2.24-8 5v2h16v-2c0-2.76-3.58-5-8-5Zm8.5-2a3.5 3.5 0 1 0 0-7 3.5 3.5 0 0 0 0 7Zm0 2c-.62 0-1.22.07-1.79.2 1.98 1.1 3.29 2.8 3.29 4.8v2h4v-2c0-2.76-2.46-5-5.5-5Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--eye::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--award::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-4 12.74V22l4-2 4 2v-7.26A7 7 0 0 0 12 2Zm0 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-4 12.74V22l4-2 4 2v-7.26A7 7 0 0 0 12 2Zm0 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
}

.ari-home-differential__icon--heart::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09A6.01 6.01 0 0 1 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09A6.01 6.01 0 0 1 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E");
}

.ari-home-differential p {
	max-width: 280px;
	margin: 0 auto;
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.7;
}

.ari-home-cta {
	position: relative;
	overflow: hidden;
	padding-block: 86px;
	background:
		linear-gradient(135deg, rgb(0 22 42 / 0.88), rgb(0 50 80 / 0.74)),
		var(--ari-cta-image, none),
		#00162a;
	background-position: center;
	background-size: cover;
	color: #fff;
	text-align: center;
}

.ari-home-cta__inner {
	max-width: 820px;
}

.ari-home-cta p {
	color: rgb(255 255 255 / 0.78);
}

.ari-home-cta .ari-button {
	margin-top: 10px;
}

.ari-home-contact {
	background: #f8fafb;
}

.ari-home-contact .ari-section__header {
	margin-bottom: 46px;
}

.ari-home-contact h2 {
	margin: 8px 0;
	color: #1a2b4a;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1.08;
}

.ari-home-contact__grid {
	overflow: hidden;
	max-width: 1180px;
	gap: 0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 56px rgb(0 0 0 / 0.08);
}

.ari-home-contact__info {
	align-self: stretch;
	padding: 42px;
	background: #00162a;
	color: #fff;
}

.ari-home-contact__info h3 {
	margin: 0 0 30px;
	color: var(--ari-color-accent);
	font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.ari-home-contact__info p,
.ari-home-contact__info li,
.ari-home-contact__info a {
	color: rgb(255 255 255 / 0.82);
}

.ari-home-contact__list {
	display: grid;
	gap: 24px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ari-home-contact__list li {
	position: relative;
	display: grid;
	gap: 3px;
	padding-left: 30px;
}

.ari-home-contact__list li::before {
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 999px;
	background: var(--ari-color-accent);
	content: "";
}

.ari-home-contact__list strong {
	color: #fff;
	font-size: 0.98rem;
}

.ari-home-contact__list span,
.ari-home-contact__list a {
	font-size: 0.95rem;
}

.ari-home-contact__info .ari-button--outline {
	border-color: rgb(255 255 255 / 0.7);
	color: #fff;
}

.ari-home-contact__social {
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid rgb(255 255 255 / 0.12);
}

.ari-home-contact__social span {
	display: block;
	margin-bottom: 12px;
	color: rgb(255 255 255 / 0.58);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.ari-home-contact__social div {
	display: flex;
	gap: 14px;
}

.ari-home-contact__social a {
	color: var(--ari-color-accent);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.ari-home-contact__form {
	display: flex;
	align-items: stretch;
	border: 0;
	border-radius: 0;
	min-height: 220px;
	box-shadow: none;
}

.ari-form-fallback {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	justify-content: center;
	min-height: 220px;
}

.ari-appointment-form-fallback {
	display: grid;
	gap: 16px;
	width: 100%;
	padding: 42px;
}

.ari-form-fallback p {
	margin: 0 0 18px;
	color: var(--ari-color-muted);
}

.ari-appointment-form-fallback p {
	display: grid;
	gap: 8px;
	margin: 0;
}

.ari-appointment-form-fallback label {
	color: var(--ari-color-accent);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ari-appointment-form-fallback input,
.ari-appointment-form-fallback textarea {
	width: 100%;
	min-height: 48px;
	padding: 10px 0;
	border: 0;
	border-bottom: 1px solid #dbe2e6;
	border-radius: 0;
	background: transparent;
	color: var(--ari-color-ink);
	font: inherit;
}

.ari-appointment-form-fallback textarea {
	min-height: 96px;
	resize: vertical;
}

.ari-appointment-form-fallback .ari-button {
	width: fit-content;
	min-width: 132px;
}

.ari-appointment-form-preview {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px 24px;
	width: 100%;
	padding: 42px;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.ari-appointment-form-preview h3,
.ari-appointment-form-preview__field--full,
.ari-appointment-form-preview__actions,
.ari-form-fallback__note {
	grid-column: 1 / -1;
}

.ari-appointment-form-preview h3 {
	margin: 0;
	color: #1a2b4a;
	font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.ari-form-fallback__note {
	margin-top: -10px;
	font-size: 0.9rem;
}

.ari-appointment-form-preview__field {
	display: grid;
	gap: 9px;
}

.ari-appointment-form-preview__field label {
	color: var(--ari-color-accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.ari-appointment-form-preview__field input,
.ari-appointment-form-preview__field select,
.ari-appointment-form-preview__field textarea {
	width: 100%;
	min-height: 46px;
	padding: 8px 0;
	border: 0;
	border-bottom: 1px solid #dbe2e6;
	border-radius: 0;
	background: transparent;
	color: var(--ari-color-ink);
	font: inherit;
}

.ari-appointment-form-preview__field textarea {
	resize: vertical;
}

.ari-appointment-form-preview__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 4px;
}

.ari-button--dark {
	background: #00162a;
	color: #fff;
	font-weight: 800;
}

.ari-button--whatsapp {
	background: #25d366;
	color: #fff;
	font-weight: 800;
}

.ari-button--sky {
	background: #55c8ee;
	color: #fff;
	font-weight: 800;
}

.ari-page__appointment-form {
	margin-top: 32px;
}

.ari-page__appointment-form .ari-form-fallback {
	background: #f8fafb;
}

.ari-internal-split__grid,
.ari-contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 48px;
	align-items: center;
}

.ari-internal-split__media img,
.ari-internal-gallery__item img,
.ari-blog-card > img,
.ari-blog-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ari-internal-split__media {
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: 8px;
	background: #edf3f5;
	box-shadow: 0 18px 44px rgb(0 0 0 / 0.12);
}

.ari-internal-split__content h2,
.ari-internal-cta h2 {
	margin: 0 0 18px;
	color: var(--ari-color-primary);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.08;
}

.ari-internal-split__content p {
	color: var(--ari-color-muted);
	font-size: 1.02rem;
}

.ari-internal-band {
	background: #f8f9fa;
}

.ari-internal-band .ari-section__header {
	margin-bottom: 50px;
	text-align: center;
}

.ari-internal-band .ari-section__header h2 {
	margin-bottom: 10px;
	color: #00162a;
}

.ari-internal-band .ari-section__header p {
	margin: 0;
	color: #4a5e78;
}

.ari-feature-grid,
.ari-contact-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ari-feature-card {
	min-height: 210px;
	padding: 30px;
	border: 0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
	text-align: center;
}

.ari-feature-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #c5a059;
	color: #fff;
}

.ari-feature-card__icon::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background: currentColor;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
}

.ari-feature-card__icon--heart::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09A6.01 6.01 0 0 1 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 21.35 10.55 20.03C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09A6.01 6.01 0 0 1 16.5 3C19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35Z'/%3E%3C/svg%3E");
}

.ari-feature-card__icon--eye::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5Zm0 12.5a5 5 0 1 1 0-10 5 5 0 0 1 0 10Zm0-2.2a2.8 2.8 0 1 0 0-5.6 2.8 2.8 0 0 0 0 5.6Z'/%3E%3C/svg%3E");
}

.ari-feature-card__icon--star::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 2.92 6.26 6.85.83-5.05 4.69 1.34 6.77L12 17.18l-6.06 3.37 1.34-6.77-5.05-4.69 6.85-.83L12 2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m12 2 2.92 6.26 6.85.83-5.05 4.69 1.34 6.77L12 17.18l-6.06 3.37 1.34-6.77-5.05-4.69 6.85-.83L12 2Z'/%3E%3C/svg%3E");
}

.ari-feature-card h2,
.ari-feature-card h3,
.ari-faq-item h2,
.ari-blog-card h3 {
	margin: 0 0 10px;
	color: var(--ari-color-primary);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
	line-height: 1.18;
}

.ari-feature-card p,
.ari-faq-item p,
.ari-blog-card p {
	margin: 0;
	color: var(--ari-color-muted);
}

.ari-feature-card p {
	font-size: 0.95rem;
	line-height: 1.6;
}

.ari-feature-card a {
	color: var(--ari-color-primary);
	font-weight: 800;
	text-decoration: none;
}

.ari-internal-cta {
	background: #00162a;
	color: #fff;
	text-align: center;
}

.ari-internal-cta h2 {
	color: #fff;
}

.ari-internal-cta p {
	max-width: 680px;
	margin: 0 auto 26px;
	color: rgb(255 255 255 / 0.76);
}

.ari-internal-gallery {
	background: #dff3fb;
}

.ari-internal-gallery__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ari-internal-gallery__item {
	overflow: hidden;
	aspect-ratio: 4 / 3;
	margin: 0;
	border: 4px solid #fff;
	border-radius: 8px;
	background: #edf3f5;
	box-shadow: 0 12px 28px rgb(0 0 0 / 0.08);
}

.ari-faq-page {
	background: #f8f9fa;
}

.ari-faq-item {
	margin-bottom: 16px;
	padding: 24px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
}

.ari-contact-cards {
	margin-bottom: 42px;
}

.ari-contact-page__grid {
	align-items: stretch;
}

.ari-contact-page__map,
.ari-contact-page__form {
	padding: 28px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 24px rgb(0 0 0 / 0.05);
}

.ari-contact-page__map iframe {
	display: block;
	width: 100%;
	min-height: 360px;
	border: 0;
	border-radius: 8px;
}

.ari-card-grid--blog {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
}

.ari-blog-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.ari-blog-card__media {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10;
	background: linear-gradient(180deg, #eef8fb 0%, #f8fbfc 100%);
	border-bottom: 1px solid var(--ari-color-line);
	text-decoration: none;
}

.ari-blog-card__media img {
	object-fit: contain;
	object-position: center;
}

.ari-blog-card__media-fallback {
	color: var(--ari-color-primary);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.ari-blog-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 12px;
	padding: 22px;
}

.ari-blog-card__body .ari-eyebrow {
	margin: 0;
	color: #c08a35;
}

.ari-blog-card h3 {
	margin-bottom: 0;
}

.ari-blog-card h3 a {
	color: inherit;
	text-decoration: none;
}

.ari-blog-card h3 a:hover,
.ari-blog-card h3 a:focus-visible {
	color: var(--ari-color-accent);
}

.ari-blog-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	color: #64748b;
	font-size: 0.86rem;
	font-weight: 700;
}

.ari-blog-card__excerpt {
	line-height: 1.65;
}

.ari-blog-card .ari-text-link {
	margin-top: auto;
}

@media (max-width: 760px) {
	.admin-bar .site-header {
		top: 46px;
	}

	.site-header + section,
	.site-header + main,
	.site-header + .odonto-home-hero,
	.site-header + .odonto-page-hero {
		margin-top: 100px;
	}

	.site-header__top {
		display: block;
		font-size: 0.72rem;
	}

	.site-header__top-inner {
		width: 100%;
		gap: 0;
		min-height: 32px;
	}

	.site-header__top-contact > * {
		min-height: 32px;
		padding-inline: 10px;
	}

	.site-header__top-contact > *:nth-child(2) {
		display: none;
	}

	.site-header__social {
		margin-left: auto;
	}

	.site-header__social-link {
		width: 34px;
		min-height: 32px;
	}

	.site-header__inner {
		position: relative;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 14px;
		min-height: 68px;
	}

	.site-branding__logo img {
		max-width: 98px;
		max-height: 62px;
	}

	.site-branding__name {
		max-width: 230px;
	}

	.site-navigation__toggle {
		display: inline-flex;
	}

	.site-navigation {
		position: absolute;
		top: calc(100% + 1px);
		right: 16px;
		left: 16px;
		display: none;
		padding: 10px;
		border: 1px solid var(--ari-color-line);
		border-radius: 18px;
		background: rgb(255 255 255 / 0.94);
		box-shadow: 0 18px 40px rgb(0 0 0 / 0.14);
		backdrop-filter: blur(18px);
	}

	.site-header.is-navigation-open .site-navigation {
		display: block;
	}

	.site-header.is-navigation-open .site-navigation__toggle {
		border-color: var(--ari-color-primary);
		color: var(--ari-color-primary);
	}

	.site-navigation__menu {
		align-items: stretch;
		flex-direction: column;
		gap: 0;
	}

	.site-navigation__menu a {
		justify-content: space-between;
		min-height: 46px;
		padding-inline: 12px;
		border-radius: 12px;
	}

	.site-navigation__menu a::after {
		display: none;
	}

	.site-navigation__menu a:hover {
		background: #f2f7f8;
	}

	.site-header__cta {
		display: none;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-block: 42px 28px;
	}

	.site-footer__newsletter-inner,
	.site-footer__newsletter-form,
	.site-footer__newsletter-actions,
	.site-footer__menu--columns {
		grid-template-columns: 1fr;
	}

	.site-footer__newsletter-form button,
	.site-footer__newsletter-button {
		width: 100%;
	}

	.ari-card-grid,
	.ari-service-hero__grid,
	.ari-specialist-profile__grid,
	.ari-home-appointment__grid,
	.ari-home-split,
		.ari-home-contact__grid,
		.ari-internal-split__grid,
		.ari-contact-page__grid,
		.ari-home-service-list,
		.ari-home-gallery__grid,
		.ari-internal-gallery__grid,
		.ari-feature-grid,
		.ari-contact-cards,
		.ari-card-grid--blog,
		.ari-home-differentials__grid {
		grid-template-columns: 1fr;
	}

	.ari-home-hero,
	.ari-home-cta {
		padding-block: 46px;
	}

	.ari-home-hero--doctor {
		padding-block: 30px 0;
		background-position: center top;
	}

	.ari-home-hero__stage {
		grid-template-columns: 1fr;
		gap: 12px;
		min-height: 0;
		text-align: center;
	}

	.ari-home-hero__content {
		max-width: none;
		margin-inline: auto;
	}

	.ari-home-hero__content h1 {
		font-size: clamp(2.4rem, 13vw, 3.45rem);
		line-height: 0.98;
	}

	.ari-home-hero__intro {
		font-size: clamp(1.45rem, 8vw, 2.05rem);
	}

	.ari-home-hero__lead,
	.ari-home-hero__small {
		margin-inline: auto;
	}

	.ari-home-hero__lead {
		max-width: 330px;
		font-size: clamp(0.95rem, 4.7vw, 1.1rem);
	}

	.ari-home-hero__small {
		max-width: 300px;
		margin-bottom: 16px;
		font-size: 0.76rem;
	}

	.ari-home-hero .ari-button--sky {
		min-height: 50px;
		padding-inline: 22px;
	}

	.ari-home-hero__doctor {
		min-height: 260px;
		overflow: hidden;
	}

	.ari-home-hero__doctor > img {
		width: min(72vw, 280px);
		max-height: 295px;
	}

	.ari-home-hero__circle {
		right: 50%;
		bottom: 0;
		width: min(78vw, 305px);
		transform: translateX(50%);
	}

	.ari-home-hero__badges {
		grid-template-columns: 1fr;
		gap: 6px;
		max-width: 270px;
		margin: 0 auto 22px;
		text-align: left;
	}

	.ari-home-hero__badges li {
		padding: 6px 9px;
		border-radius: 4px;
		background: rgb(255 255 255 / 0.78);
		font-size: 0.78rem;
	}

	.ari-home-hero__badge-icon {
		width: 30px;
		height: 30px;
	}

	.ari-home-appointment {
		padding-block: 0 46px;
	}

	.ari-home-appointment__card {
		grid-template-columns: 1fr;
		margin-top: 0;
	}

	.ari-home-appointment__left,
	.ari-home-appointment__form {
		min-height: 0;
		padding: 26px 20px;
	}

	.ari-home-appointment__fields {
		grid-template-columns: 1fr;
	}

	.ari-home-appointment__map {
		min-height: 0;
		padding: 24px;
	}

	.ari-home-appointment__highlights {
		grid-template-columns: 1fr;
	}

	.ari-home-appointment__highlights article {
		min-height: 0;
	}

	.ari-home-about__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ari-home-about__content {
		text-align: left;
	}

	.ari-home-about__content h2 {
		font-size: clamp(2rem, 12vw, 2.8rem);
	}

	.ari-home-about__media,
	.ari-home-about__media img,
	.ari-home-about__placeholder {
		min-height: 250px;
	}

	.ari-home-image-label {
		right: 10px;
		bottom: 10px;
		left: 10px;
		max-width: none;
	}

	.ari-home-differentials {
		padding-block: 62px;
	}

	.ari-home-differentials .ari-section__header {
		margin-bottom: 42px;
	}

	.ari-home-differentials__grid {
		gap: 42px;
	}

	.ari-home-check-list--grid {
		grid-template-columns: 1fr;
	}

	.ari-action-row--center .ari-button {
		width: 100%;
	}

	.ari-home-contact__info,
	.ari-appointment-form-preview,
	.ari-appointment-form-fallback {
		padding: 28px;
	}

	.ari-appointment-form-preview,
	.ari-appointment-form-preview__actions {
		grid-template-columns: 1fr;
	}

	.ari-home-appointment__form .forminator-row,
	.ari-home-contact__form .forminator-row,
	.ari-contact-page__form .forminator-row,
	.ari-page__appointment-form .forminator-row {
		grid-template-columns: 1fr;
		gap: 18px !important;
	}

	.ari-home-appointment__form .forminator-label,
	.ari-home-contact__form .forminator-label,
	.ari-contact-page__form .forminator-label,
	.ari-page__appointment-form .forminator-label {
		font-size: 0.7rem !important;
		letter-spacing: 0.08em !important;
	}

	.ari-home-appointment__form .forminator-button-submit,
	.ari-home-contact__form .forminator-button-submit,
	.ari-contact-page__form .forminator-button-submit,
	.ari-page__appointment-form .forminator-button-submit {
		width: 100% !important;
	}

	.ari-appointment-form-fallback .ari-button {
		width: 100%;
	}
}

@media (min-width: 761px) and (max-width: 1080px) {
	.site-header__inner {
		grid-template-columns: 130px minmax(0, 1fr) auto;
		gap: 18px;
		min-height: 112px;
	}

	.site-branding__logo img {
		max-width: 118px;
		max-height: 96px;
	}

	.site-navigation__menu {
		gap: 14px;
	}

	.site-navigation__menu a {
		font-size: 0.76rem;
	}

	.site-header__cta {
		min-height: 44px;
		padding-inline: 16px;
		font-size: 0.78rem;
	}

	.ari-home-hero__stage {
		grid-template-columns: minmax(210px, 0.86fr) minmax(260px, 1fr) minmax(180px, 0.62fr);
		min-height: 470px;
	}

	.ari-home-hero__content h1 {
		font-size: clamp(2.8rem, 5vw, 4.2rem);
	}

	.ari-home-hero__doctor {
		min-height: 450px;
	}

	.ari-home-hero__badges {
		gap: 24px;
	}

	.ari-home-hero__badges li {
		font-size: 0.84rem;
	}

	.ari-home-hero__badge-icon {
		width: 40px;
		height: 40px;
	}

	.ari-home-appointment__card {
		width: min(100% - 32px, 1180px);
		max-width: 1180px;
	}

	.ari-home-differentials__grid {
		gap: 56px 36px;
	}

	.ari-card-grid,
	.ari-home-service-list,
	.ari-home-gallery__grid,
	.ari-home-differentials__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.ari-contact-cards {
	margin-bottom: 42px;
}

.ari-contact-card {
	min-height: 156px;
	padding: 30px;
	text-align: center;
}

.ari-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 60px;
	height: 60px;
	margin: 0 auto 20px;
	border-radius: 50%;
	background: #c5a059;
	color: #fff;
}

.ari-contact-card__icon--whatsapp {
	background: #25d366;
}

.ari-contact-card__icon::before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: currentColor;
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	-webkit-mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: contain;
}

.ari-contact-card__icon--phone::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.24 1.01l-2.21 2.2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.12.37 2.33.57 3.58.57a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.25.2 2.46.57 3.58a1 1 0 0 1-.24 1.01l-2.21 2.2Z'/%3E%3C/svg%3E");
}

.ari-contact-card__icon--whatsapp::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.52 3.48A11.86 11.86 0 0 0 12.05 0C5.47 0 .12 5.35.12 11.93c0 2.1.55 4.16 1.6 5.97L0 24l6.25-1.64a11.9 11.9 0 0 0 5.8 1.48h.01c6.58 0 11.93-5.35 11.93-11.93a11.85 11.85 0 0 0-3.47-8.43ZM12.06 21.8h-.01a9.88 9.88 0 0 1-5.04-1.38l-.36-.21-3.71.97.99-3.62-.23-.37a9.86 9.86 0 1 1 8.36 4.61Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.94 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.75-1.64-2.04-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.01-1.04 2.47s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20.52 3.48A11.86 11.86 0 0 0 12.05 0C5.47 0 .12 5.35.12 11.93c0 2.1.55 4.16 1.6 5.97L0 24l6.25-1.64a11.9 11.9 0 0 0 5.8 1.48h.01c6.58 0 11.93-5.35 11.93-11.93a11.85 11.85 0 0 0-3.47-8.43ZM12.06 21.8h-.01a9.88 9.88 0 0 1-5.04-1.38l-.36-.21-3.71.97.99-3.62-.23-.37a9.86 9.86 0 1 1 8.36 4.61Zm5.4-7.38c-.3-.15-1.75-.86-2.02-.96-.27-.1-.47-.15-.67.15-.2.3-.77.96-.94 1.16-.17.2-.35.22-.65.07-.3-.15-1.25-.46-2.38-1.47-.88-.78-1.47-1.75-1.64-2.04-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.61-.92-2.2-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.79.37-.27.3-1.04 1.01-1.04 2.47s1.06 2.87 1.21 3.07c.15.2 2.09 3.19 5.06 4.47.71.31 1.26.49 1.69.63.71.23 1.36.2 1.87.12.57-.08 1.75-.72 2-1.41.25-.7.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

.ari-contact-card__icon--email::before {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
}

.ari-contact-card__action {
	color: #c5a059;
	font-weight: 800;
	text-decoration: none;
}

.ari-contact-card__action--whatsapp {
	color: #25d366;
}
.ari-contact-simple-form {
	padding: 30px;
	border-radius: 8px;
	background: #fff;
}

.ari-contact-simple-form__field {
	margin: 0 0 15px;
}

.ari-contact-simple-form label {
	display: block;
	margin-bottom: 5px;
	color: #00162a;
	font-weight: 700;
}

.ari-contact-simple-form input,
.ari-contact-simple-form textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #00162a;
	font: inherit;
}

.ari-contact-simple-form textarea {
	resize: vertical;
}

.ari-contact-simple-form button {
	width: 100%;
	padding: 12px 30px;
	border: 0;
	border-radius: 9999px;
	background: #c5a059;
	color: #00162a;
	font-weight: 800;
	cursor: pointer;
}

.ari-contact-page__map h3 {
	margin: 0 0 10px;
	color: #00162a;
	font-size: 1.25rem;
}
.ari-services-accordion {
	max-width: 920px;
	margin: 54px auto 0;
}

.ari-services-accordion__header {
	margin-bottom: 22px;
	text-align: center;
}

.ari-services-accordion__header h2 {
	margin: 8px 0 0;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.12;
}

.ari-service-accordion-item {
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 4px 14px rgb(0 0 0 / 0.05);
}

.ari-service-accordion-item + .ari-service-accordion-item {
	margin-top: 12px;
}

.ari-service-accordion-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 62px;
	padding: 18px 22px;
	color: var(--ari-color-ink);
	font-weight: 800;
	cursor: pointer;
	list-style: none;
}

.ari-service-accordion-item summary::-webkit-details-marker {
	display: none;
}

.ari-service-accordion-item summary::after {
	content: "+";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #eef7f9;
	color: var(--ari-color-primary);
	font-size: 1.2rem;
	line-height: 1;
}

.ari-service-accordion-item[open] summary::after {
	content: "-";
}

.ari-service-accordion-item__body {
	padding: 0 22px 22px;
	color: var(--ari-color-muted);
}

.ari-service-accordion-item__body p {
	margin: 0 0 14px;
}

.ari-service-accordion-item__body a {
	color: var(--ari-color-primary);
	font-weight: 800;
	text-decoration: none;
}

.ari-health-hero,
.ari-health-actions,
.ari-health-hubs,
.ari-health-emergency,
.ari-health-locations {
	width: min(100% - 40px, 1180px);
	margin-right: auto;
	margin-left: auto;
}

.ari-health-hero {
	margin-top: 34px;
	padding: clamp(42px, 7vw, 92px);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgb(0 66 82 / 0.92), rgb(7 29 45 / 0.94)),
		linear-gradient(90deg, #0b6f86, #0e3047);
	color: #fff;
}

.ari-health-hero__content {
	max-width: 820px;
}

.ari-health-eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
	color: #8bd7df;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ari-health-hero h1 {
	max-width: 780px;
	margin: 0 0 18px;
	font-size: clamp(2.35rem, 5vw, 4.6rem);
	line-height: 1;
}

.ari-health-hero p {
	max-width: 690px;
	margin: 0 0 28px;
	color: rgb(255 255 255 / 0.84);
	font-size: 1.08rem;
	line-height: 1.7;
}

.ari-health-search {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
	max-width: 720px;
	padding: 8px;
	border: 1px solid rgb(255 255 255 / 0.18);
	border-radius: 8px;
	background: rgb(255 255 255 / 0.12);
}

.ari-health-search input,
.ari-health-search button {
	min-height: 52px;
	border: 0;
	border-radius: 6px;
	font: inherit;
}

.ari-health-search input {
	width: 100%;
	padding: 0 16px;
	background: #fff;
	color: #0f2636;
}

.ari-health-search button {
	padding: 0 24px;
	background: #5fd0d9;
	color: #08202d;
	font-weight: 900;
	cursor: pointer;
}

.ari-health-actions {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin-top: -34px;
	position: relative;
	z-index: 2;
}

.ari-health-action {
	display: grid;
	gap: 10px;
	min-height: 176px;
	padding: 22px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	color: #173243;
	text-decoration: none;
	box-shadow: 0 16px 36px rgb(6 30 44 / 0.12);
}

.ari-health-action i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #e9fbfd;
	color: #0b6f86;
	font-size: 1rem;
}

.ari-health-action strong {
	font-size: 1.04rem;
}

.ari-health-action span {
	color: var(--ari-color-muted);
	line-height: 1.55;
}

.ari-health-hubs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	margin-top: 58px;
}

.ari-health-hub {
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #f7fbfc;
}

.ari-health-hub h2,
.ari-health-emergency h2,
.ari-health-locations h2 {
	margin: 0 0 14px;
	color: var(--ari-color-ink);
	font-size: clamp(1.7rem, 3vw, 2.6rem);
	line-height: 1.12;
}

.ari-health-hub p,
.ari-health-emergency p,
.ari-health-locations p {
	color: var(--ari-color-muted);
	line-height: 1.7;
}

.ari-health-hub ul {
	display: grid;
	gap: 10px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

.ari-health-hub li {
	position: relative;
	padding-left: 28px;
	color: #173243;
	font-weight: 700;
}

.ari-health-hub li::before {
	content: "";
	position: absolute;
	top: 0.56em;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #0b6f86;
}

.ari-health-emergency {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 24px;
	margin-top: 36px;
	padding: clamp(26px, 4vw, 44px);
	border-radius: 8px;
	background: #0c2634;
	color: #fff;
}

.ari-health-emergency h2 {
	color: #fff;
}

.ari-health-emergency p {
	max-width: 760px;
	margin-bottom: 0;
	color: rgb(255 255 255 / 0.78);
}

.ari-health-locations {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
	gap: 24px;
	margin-top: 54px;
	padding: clamp(24px, 4vw, 40px);
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
}

.ari-health-locations__map {
	display: grid;
	min-height: 260px;
	place-items: center;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgb(11 111 134 / 0.08) 1px, transparent 1px),
		linear-gradient(0deg, rgb(11 111 134 / 0.08) 1px, transparent 1px),
		#eef8fa;
	background-size: 34px 34px;
	color: #0b6f86;
	font-weight: 900;
}

.ari-health-section-heading {
	max-width: 780px;
	margin-bottom: 28px;
}

.ari-health-section-heading h2 {
	margin: 0 0 12px;
	color: var(--ari-color-ink);
	font-size: clamp(1.9rem, 3.3vw, 3rem);
	line-height: 1.08;
}

.ari-health-section-heading p {
	margin: 0;
	color: var(--ari-color-muted);
	line-height: 1.7;
}

.ari-health-directory,
.ari-health-portal,
.ari-health-quality,
.ari-health-news,
.ari-health-support {
	width: min(100% - 40px, 1180px);
	margin: 54px auto 0;
}

.ari-health-directory__grid,
.ari-health-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.ari-health-directory-card,
.ari-health-news article {
	padding: 26px;
	border: 1px solid var(--ari-color-line);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 10px 24px rgb(6 30 44 / 0.06);
}

.ari-health-directory-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 20px;
	border-radius: 50%;
	background: #e9fbfd;
	color: #0b6f86;
}

.ari-health-directory-card h3,
.ari-health-news h3 {
	margin: 0 0 12px;
	color: var(--ari-color-ink);
	font-size: 1.16rem;
	line-height: 1.25;
}

.ari-health-directory-card p,
.ari-health-news p {
	margin: 0;
	color: var(--ari-color-muted);
	line-height: 1.62;
}

.ari-health-portal {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
	gap: 28px;
	align-items: center;
	padding: clamp(28px, 5vw, 54px);
	border-radius: 8px;
	background: #eef8fa;
}

.ari-health-portal h2,
.ari-health-support h2 {
	margin: 0 0 14px;
	color: var(--ari-color-ink);
	font-size: clamp(1.85rem, 3.2vw, 2.9rem);
	line-height: 1.1;
}

.ari-health-portal p,
.ari-health-support p {
	color: var(--ari-color-muted);
	line-height: 1.7;
}

.ari-health-portal ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ari-health-portal li {
	min-height: 76px;
	padding: 18px;
	border-radius: 8px;
	background: #fff;
	color: #173243;
	font-weight: 800;
	box-shadow: 0 8px 20px rgb(6 30 44 / 0.06);
}

.ari-health-quality {
	padding: clamp(28px, 5vw, 52px);
	border-radius: 8px;
	background: #f7fbfc;
}

.ari-health-quality__metrics {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.ari-health-quality__metrics strong {
	display: grid;
	gap: 8px;
	min-height: 142px;
	padding: 24px;
	border-radius: 8px;
	background: #fff;
	color: var(--ari-color-muted);
	line-height: 1.4;
	box-shadow: 0 8px 20px rgb(6 30 44 / 0.06);
}

.ari-health-quality__metrics span {
	color: #0b6f86;
	font-size: clamp(2rem, 4vw, 3.2rem);
	line-height: 1;
}

.ari-health-support {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
	gap: 26px;
	align-items: start;
	padding: clamp(28px, 5vw, 54px);
	border-radius: 8px;
	background: #0c2634;
	color: #fff;
}

.ari-health-support h2 {
	color: #fff;
}

.ari-health-support p,
.ari-health-support .ari-dynamic-contact,
.ari-health-support .ari-dynamic-contact a {
	color: rgb(255 255 255 / 0.8);
}

.ari-health-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid rgb(18 51 65 / 0.08);
	box-shadow: 0 18px 46px rgb(6 30 44 / 0.07);
}

.admin-bar .ari-health-site-header {
	top: 32px;
}

.ari-health-topbar {
	background: #123f52;
	color: rgb(255 255 255 / 0.86);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0;
}

.ari-health-topbar__inner,
.ari-health-mainnav,
.ari-health-mobile-strip {
	width: min(100% - 40px, 1180px);
	margin: 0 auto;
}

.ari-health-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 34px;
}

.ari-health-topbar nav,
.ari-health-footer-bottom nav {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.ari-health-topbar a {
	position: relative;
	color: #c6f5fb;
	font-weight: 700;
	text-decoration: none;
}

.ari-health-topbar a::after {
	position: absolute;
	right: 0;
	bottom: -4px;
	left: 0;
	height: 1px;
	background: currentcolor;
	content: "";
	opacity: 0;
	transition: opacity 160ms ease;
}

.ari-health-topbar a:hover::after {
	opacity: 0.72;
}

.ari-health-mainnav {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr) auto;
	align-items: center;
	gap: clamp(22px, 3vw, 42px);
	min-height: 92px;
}

.ari-health-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #102d3f;
	text-decoration: none;
}

.ari-health-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, #25c4df, #0b84a2);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 900;
	line-height: 1;
	box-shadow: 0 16px 34px rgb(11 132 162 / 0.28);
}

.ari-health-brand strong,
.ari-health-brand small {
	display: block;
}

.ari-health-brand strong {
	color: #16425a;
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.2;
}

.ari-health-brand small {
	margin-top: 4px;
	color: #90a6b4;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ari-health-primary-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px;
	border: 1px solid rgb(15 76 96 / 0.08);
	border-radius: 999px;
	background: #f5fbfc;
}

.ari-health-primary-nav a {
	position: relative;
	min-height: 42px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px;
	border-radius: 999px;
	color: #1d5168;
	font-size: 0.94rem;
	font-weight: 900;
	text-decoration: none;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		box-shadow 160ms ease,
		transform 160ms ease;
	white-space: nowrap;
}

.ari-health-primary-nav a:hover,
.ari-health-primary-nav a:focus-visible {
	background: #fff;
	color: #0b6f86;
	box-shadow: 0 10px 22px rgb(6 30 44 / 0.08);
	transform: translateY(-1px);
}

.ari-health-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.ari-health-header-contact {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #18516a;
	font-size: 0.9rem;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.ari-health-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 999px;
	background:
		linear-gradient(135deg, #27c7e3, #0b8eaa);
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 16px 32px rgb(11 142 170 / 0.24);
	transition:
		box-shadow 160ms ease,
		transform 160ms ease;
}

.ari-health-header-cta:hover,
.ari-health-header-cta:focus-visible {
	box-shadow: 0 20px 40px rgb(11 142 170 / 0.32);
	transform: translateY(-1px);
}

.ari-health-mobile-strip {
	display: none;
}

.ari-health-site-footer {
	margin-top: 72px;
	background: #071d2d;
	color: #fff;
}

.ari-health-footer-cta,
.ari-health-footer-grid,
.ari-health-footer-bottom {
	width: min(100% - 40px, 1180px);
	margin: 0 auto;
}

.ari-health-footer-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	padding: clamp(34px, 5vw, 58px) 0;
	border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.ari-health-footer-cta h2 {
	max-width: 760px;
	margin: 0;
	color: #fff;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	line-height: 1.08;
}

.ari-health-site-footer .ari-dynamic-cta {
	background: #5fd0d9;
	color: #08202d;
}

.ari-health-footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.68fr));
	gap: 34px;
	padding: clamp(36px, 6vw, 64px) 0;
}

.ari-health-brand--footer {
	color: #fff;
}

.ari-health-brand--footer small,
.ari-health-footer-brand p,
.ari-health-footer-brand .ari-dynamic-contact,
.ari-health-footer-brand .ari-dynamic-contact a {
	color: rgb(255 255 255 / 0.72);
}

.ari-health-footer-brand p {
	max-width: 380px;
	line-height: 1.7;
}

.ari-health-footer-column {
	display: grid;
	align-content: start;
	gap: 10px;
}

.ari-health-footer-column h3 {
	margin: 0 0 8px;
	color: #fff;
	font-size: 1rem;
}

.ari-health-footer-column a,
.ari-health-footer-bottom a {
	color: rgb(255 255 255 / 0.72);
	text-decoration: none;
}

.ari-health-footer-column a:hover,
.ari-health-footer-bottom a:hover {
	color: #8bd7df;
}

.ari-health-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0 28px;
	border-top: 1px solid rgb(255 255 255 / 0.12);
	color: rgb(255 255 255 / 0.62);
	font-size: 0.9rem;
}

.ari-health-page-hero,
.ari-health-page-grid,
.ari-health-directory-panel {
	width: min(100% - 40px, 1180px);
	margin-right: auto;
	margin-left: auto;
}

.ari-health-page-hero {
	margin-top: clamp(28px, 5vw, 58px);
	padding: clamp(36px, 6vw, 72px);
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgb(12 38 52 / 0.92), rgb(11 111 134 / 0.84)),
		url("https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1800&q=80") center / cover;
	color: #fff;
}

.ari-health-page-hero > div {
	max-width: 780px;
}

.ari-health-page-hero h1 {
	margin: 10px 0 16px;
	color: #fff;
	font-size: clamp(2.15rem, 5vw, 4.35rem);
	line-height: 1.02;
}

.ari-health-page-hero p {
	max-width: 720px;
	margin: 0;
	color: rgb(255 255 255 / 0.84);
	font-size: clamp(1.02rem, 1.6vw, 1.24rem);
	line-height: 1.75;
}

.ari-health-page-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 22px;
	margin-bottom: clamp(36px, 6vw, 72px);
}

.ari-health-page-card,
.ari-health-directory-panel {
	border: 1px solid #dfe9ed;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 34px rgb(6 30 44 / 0.06);
}

.ari-health-page-card {
	padding: 24px;
}

.ari-health-page-card i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #e8f7fa;
	color: #0b6f86;
	font-size: 1.1rem;
}

.ari-health-page-card h2,
.ari-health-directory-panel h2 {
	margin: 0 0 10px;
	color: #102d3f;
	font-size: 1.15rem;
	line-height: 1.24;
}

.ari-health-page-card p,
.ari-health-directory-panel p {
	margin: 0;
	color: #587080;
	line-height: 1.7;
}

.ari-health-directory-panel {
	margin-top: 28px;
	margin-bottom: 54px;
	padding: clamp(26px, 4vw, 42px);
}

.ari-health-directory-panel .ari-card-grid {
	margin-top: 22px;
}

@media (max-width: 980px) {
	.admin-bar .ari-health-site-header {
		top: 46px;
	}

	.ari-health-topbar__inner {
		justify-content: center;
		text-align: center;
	}

	.ari-health-topbar nav,
	.ari-health-header-contact {
		display: none;
	}

	.ari-health-mainnav {
		grid-template-columns: 1fr auto;
		min-height: 78px;
	}

	.ari-health-primary-nav {
		grid-column: 1 / -1;
		justify-content: flex-start;
		gap: 10px;
		overflow-x: auto;
		padding-bottom: 14px;
	}

	.ari-health-primary-nav a {
		flex: 0 0 auto;
		padding: 8px 12px;
		border-radius: 999px;
		background: #eef8fa;
	}

	.ari-health-mobile-strip {
		display: flex;
		gap: 14px;
		overflow-x: auto;
		padding: 0 0 14px;
		font-size: 0.86rem;
	}

	.ari-health-mobile-strip a {
		flex: 0 0 auto;
		color: #0b6f86;
		font-weight: 800;
		text-decoration: none;
	}

	.ari-health-footer-cta,
	.ari-health-footer-grid,
	.ari-health-footer-bottom {
		grid-template-columns: 1fr;
	}

	.ari-health-footer-bottom {
		display: grid;
	}

	.ari-health-actions,
	.ari-health-hubs,
	.ari-health-locations,
	.ari-health-directory__grid,
	.ari-health-news__grid,
	.ari-health-portal,
	.ari-health-quality__metrics,
	.ari-health-support,
	.ari-health-page-grid {
		grid-template-columns: 1fr;
	}

	.ari-health-actions {
		margin-top: 18px;
	}

	.ari-health-emergency {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.ari-health-hero,
	.ari-health-topbar__inner,
	.ari-health-mainnav,
	.ari-health-mobile-strip,
	.ari-health-footer-cta,
	.ari-health-footer-grid,
	.ari-health-footer-bottom,
	.ari-health-actions,
	.ari-health-hubs,
	.ari-health-emergency,
	.ari-health-locations,
	.ari-health-directory,
	.ari-health-portal,
	.ari-health-quality,
	.ari-health-news,
	.ari-health-support,
	.ari-health-page-hero,
	.ari-health-page-grid,
	.ari-health-directory-panel {
		width: min(100% - 28px, 1180px);
	}

	.ari-health-search {
		grid-template-columns: 1fr;
	}

	.ari-health-portal ul {
		grid-template-columns: 1fr;
	}
}

.ari-odonto-current-shell {
	width: min(100% - 40px, 1180px);
	margin-right: auto;
	margin-left: auto;
}

.ari-odonto-current-header {
	position: sticky;
	top: 0;
	z-index: 55;
	background: rgb(255 255 255 / 0.98);
	box-shadow: 0 18px 48px rgb(14 50 70 / 0.08);
	backdrop-filter: blur(18px);
	transition:
		background-color 180ms ease,
		box-shadow 180ms ease,
		transform 180ms ease;
}

.ari-odonto-current-header.is-scrolled {
	background: rgb(255 255 255 / 0.78);
	box-shadow: 0 18px 50px rgb(14 50 70 / 0.14);
}

.admin-bar .ari-odonto-current-header {
	top: 32px;
}

.ari-odonto-current-topbar {
	background: rgb(138 239 235 / 0.94);
	color: #0f435a;
	font-size: 0.8rem;
	font-weight: 800;
	transition: background-color 180ms ease, opacity 180ms ease;
}

.ari-odonto-current-header.is-scrolled .ari-odonto-current-topbar {
	background: rgb(138 239 235 / 0.72);
}

.ari-odonto-current-topbar .ari-odonto-current-shell,
.ari-odonto-current-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.ari-odonto-current-topbar .ari-odonto-current-shell {
	min-height: 34px;
}

.ari-odonto-current-topbar__contact,
.ari-odonto-current-social {
	display: flex;
	align-items: center;
}

.ari-odonto-current-topbar__contact {
	flex-wrap: wrap;
	gap: 0;
}

.ari-odonto-current-topbar__contact a,
.ari-odonto-current-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: inherit;
	text-decoration: none;
}

.ari-odonto-current-topbar__contact a {
	min-height: 34px;
	padding: 0 18px;
	border-right: 1px solid rgb(255 255 255 / 0.34);
	border-left: 1px solid rgb(255 255 255 / 0.18);
	gap: 8px;
	white-space: nowrap;
}

.ari-odonto-current-topbar__contact a:hover,
.ari-odonto-current-topbar__contact a:focus-visible,
.ari-odonto-current-social a:hover,
.ari-odonto-current-social a:focus-visible {
	background: rgb(255 255 255 / 0.26);
}

.ari-odonto-current-social {
	margin-left: auto;
	border-left: 1px solid rgb(255 255 255 / 0.26);
}

.ari-odonto-current-social a {
	width: 50px;
	min-height: 34px;
	border-right: 1px solid rgb(255 255 255 / 0.26);
	font-size: 0.95rem;
}

.ari-odonto-current-nav {
	min-height: 92px;
	transition: min-height 180ms ease, padding 180ms ease;
}

.ari-odonto-current-header.is-scrolled .ari-odonto-current-nav {
	min-height: 74px;
}

.ari-odonto-current-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	color: #113b4f;
	text-decoration: none;
}

.ari-odonto-current-brand__mark,
.ari-odonto-current-brand__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 62px;
	height: 62px;
	border-radius: 18px;
	background: rgb(138 239 235 / 0.28);
	color: #fff;
	font-size: 1.8rem;
	font-weight: 900;
	overflow: hidden;
	transition: width 180ms ease, height 180ms ease, border-radius 180ms ease;
}

.ari-odonto-current-brand__mark {
	background: linear-gradient(135deg, #39c5e5, #1487a8);
	box-shadow: 0 16px 34px rgb(20 135 168 / 0.22);
}

.ari-odonto-current-brand__logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ari-odonto-current-header.is-scrolled .ari-odonto-current-brand__logo,
.ari-odonto-current-header.is-scrolled .ari-odonto-current-brand__mark {
	width: 52px;
	height: 52px;
	border-radius: 16px;
}

.ari-odonto-current-brand strong,
.ari-odonto-current-brand small {
	display: block;
}

.ari-odonto-current-brand strong {
	color: #123d52;
	font-size: 1.05rem;
	font-weight: 900;
	line-height: 1.2;
}

.ari-odonto-current-brand small {
	margin-top: 4px;
	color: #9aaeb9;
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.ari-odonto-current-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0;
	border: 0;
	background: transparent;
}

.ari-odonto-current-menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 42px;
	padding: 0 12px;
	color: #0f435a;
	font-size: 0.94rem;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.ari-odonto-current-menu a::after {
	position: absolute;
	right: 12px;
	bottom: 5px;
	left: 12px;
	height: 3px;
	border-radius: 999px;
	background: #24c6dc;
	content: "";
	opacity: 0;
	transform: scaleX(0.4);
	transition: opacity 160ms ease, transform 160ms ease;
}

.ari-odonto-current-menu a:hover,
.ari-odonto-current-menu a:focus-visible {
	color: #1487a8;
}

.ari-odonto-current-menu a:hover::after,
.ari-odonto-current-menu a:focus-visible::after {
	opacity: 1;
	transform: scaleX(1);
}

.ari-odonto-current-menu-toggle {
	display: none;
	width: 46px;
	height: 46px;
	border: 1px solid rgb(15 67 90 / 0.14);
	border-radius: 14px;
	background: #fff;
	color: #123d52;
}

.ari-odonto-current-menu-toggle span[aria-hidden="true"] {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	border-radius: 999px;
	background: currentColor;
}

.ari-odonto-current-nav__cta,
.ari-odonto-current-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 999px;
	background: linear-gradient(135deg, #8aefeb, #22c5dd);
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	box-shadow: 0 16px 34px rgb(34 197 221 / 0.22);
	gap: 8px;
	white-space: nowrap;
}

.ari-odonto-current-nav__cta:hover,
.ari-odonto-current-nav__cta:focus-visible {
	background: linear-gradient(135deg, #22c5dd, #12a6bd);
	color: #fff;
	transform: translateY(-1px);
}

.ari-odonto-current-button--sky {
	background: linear-gradient(135deg, #36c9eb, #0f87a8);
	box-shadow: 0 16px 34px rgb(15 135 168 / 0.24);
}

.ari-odonto-current-button--ghost {
	border: 1px solid rgb(17 59 79 / 0.16);
	background: #fff;
	color: #123d52;
	box-shadow: none;
}

.ari-odonto-current-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(42px, 7vw, 92px) 0 28px;
	background:
		radial-gradient(circle at 80% 20%, rgb(57 197 229 / 0.28), transparent 34%),
		linear-gradient(135deg, #eaf8fb, #fff8ec);
}

.ari-odonto-current-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
	gap: clamp(34px, 6vw, 76px);
	align-items: center;
}

.ari-odonto-current-eyebrow {
	display: inline-flex;
	margin-bottom: 10px;
	color: #1487a8;
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.ari-odonto-current-hero h1 {
	max-width: 620px;
	margin: 0 0 18px;
	color: #123d52;
	font-size: clamp(3rem, 7vw, 6.2rem);
	line-height: 0.95;
}

.ari-odonto-current-hero__lead {
	max-width: 620px;
	color: #456b7a;
	font-size: clamp(1.08rem, 1.8vw, 1.35rem);
	line-height: 1.7;
}

.ari-odonto-current-hero__note {
	color: #728996;
	font-weight: 700;
}

.ari-odonto-current-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.ari-odonto-current-hero__visual {
	position: relative;
	min-height: 430px;
	overflow: hidden;
	border-radius: 48px 48px 8px 8px;
	box-shadow: 0 34px 80px rgb(15 67 90 / 0.18);
}

.ari-odonto-current-hero__visual img,
.ari-odonto-current-photo img,
.ari-odonto-current-gallery figure img,
.ari-odonto-current-service-card > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.ari-odonto-current-hero__visual img {
	min-height: 430px;
}

.ari-odonto-current-photo img {
	min-height: 380px;
}

.ari-odonto-current-badges {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
}

.ari-odonto-current-badges li {
	display: flex;
	align-items: center;
	min-height: 74px;
	padding: 18px 22px;
	border: 1px solid rgb(20 135 168 / 0.1);
	border-radius: 8px;
	background: rgb(255 255 255 / 0.88);
	box-shadow: 0 14px 32px rgb(14 50 70 / 0.08);
}

.ari-odonto-current-section,
.ari-odonto-current-about,
.ari-odonto-current-contact {
	padding: clamp(52px, 7vw, 88px) 0;
}

.ari-odonto-current-section__header {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.ari-odonto-current-section__header h2,
.ari-odonto-current-about h2,
.ari-odonto-current-cta h2,
.ari-odonto-current-contact h2 {
	margin: 0 0 14px;
	color: #123d52;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.05;
}

.ari-odonto-current-section__header p,
.ari-odonto-current-about p,
.ari-odonto-current-cta p,
.ari-odonto-current-contact p {
	color: #5f7885;
	line-height: 1.75;
}

.ari-odonto-current-appointment {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.7fr);
	gap: 24px;
	align-items: start;
	margin-top: 32px;
	margin-bottom: 32px;
	padding: clamp(26px, 4vw, 42px);
	border-radius: 8px;
	background: #123d52;
	color: #fff;
	box-shadow: 0 24px 52px rgb(14 50 70 / 0.14);
}

.ari-odonto-current-appointment h2,
.ari-odonto-current-appointment h3,
.ari-odonto-current-appointment p {
	color: #fff;
}

.ari-odonto-current-appointment__card {
	padding: 22px;
	border-radius: 8px;
	background: rgb(255 255 255 / 0.1);
}

.ari-odonto-current-service-grid,
.ari-odonto-current-differentials__grid,
.ari-odonto-current-gallery__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ari-odonto-current-service-card,
.ari-odonto-current-differentials article,
.ari-odonto-current-gallery figure {
	padding: 24px;
	border: 1px solid #deebef;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 34px rgb(14 50 70 / 0.06);
}

.ari-odonto-current-service-card > img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	margin-bottom: 18px;
	border-radius: 8px;
}

.ari-odonto-current-service-card h3,
.ari-odonto-current-differentials h3 {
	margin: 0 0 10px;
	color: #123d52;
	font-size: 1.08rem;
}

.ari-odonto-current-service-card p,
.ari-odonto-current-differentials p {
	color: #5f7885;
	line-height: 1.65;
}

.ari-odonto-current-service-card a {
	color: #1487a8;
	font-weight: 900;
	text-decoration: none;
}

.ari-odonto-current-about--dark {
	background: #123d52;
}

.ari-odonto-current-about--dark h2,
.ari-odonto-current-about--dark p,
.ari-odonto-current-about--dark li {
	color: #fff;
}

.ari-odonto-current-about--light {
	background: #f4fbfd;
}

.ari-odonto-current-split {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	gap: clamp(32px, 6vw, 68px);
	align-items: center;
}

.ari-odonto-current-split--reverse {
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
}

.ari-odonto-current-photo {
	display: flex;
	align-items: end;
	justify-content: center;
	min-height: 380px;
	padding: 0;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgb(255 255 255 / 0.22), rgb(255 255 255 / 0)),
		linear-gradient(135deg, #39c5e5, #e8b65f);
	box-shadow: 0 22px 60px rgb(5 28 41 / 0.18);
}

.ari-odonto-current-photo span {
	padding: 12px 16px;
	border-radius: 999px;
	background: rgb(255 255 255 / 0.88);
	color: #123d52;
	font-weight: 900;
}

.ari-odonto-current-checks {
	display: grid;
	gap: 10px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
}

.ari-odonto-current-checks--grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ari-odonto-current-checks li {
	position: relative;
	padding-left: 28px;
	font-weight: 800;
}

.ari-odonto-current-checks li::before {
	position: absolute;
	left: 0;
	color: #e8b65f;
	content: "+";
	font-weight: 900;
}

.ari-odonto-current-gallery figure {
	position: relative;
	min-height: 220px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	background:
		linear-gradient(180deg, transparent, rgb(18 61 82 / 0.78)),
		linear-gradient(135deg, #dff7fb, #fff1d8);
	color: #fff;
}

.ari-odonto-current-gallery figcaption {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	padding: 12px 14px;
	border-radius: 8px;
	background: rgb(18 61 82 / 0.82);
	color: #fff;
	font-weight: 900;
}

.ari-odonto-current-faq {
	background: #f7fbfc;
}

.ari-odonto-current-faq__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.ari-odonto-current-faq__item {
	padding: 24px;
	border: 1px solid rgb(18 61 82 / 0.1);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 16px 36px rgb(14 50 70 / 0.06);
}

.ari-odonto-current-faq__item h2 {
	margin: 0 0 10px;
	color: #123d52;
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	line-height: 1.25;
}

.ari-odonto-current-faq__item p {
	margin: 0;
	color: #4f6b78;
}

.ari-odonto-current-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	margin-top: 36px;
	margin-bottom: 36px;
	padding: clamp(34px, 5vw, 58px);
	border-radius: 8px;
	background: linear-gradient(135deg, #123d52, #1487a8);
}

.ari-odonto-current-cta h2,
.ari-odonto-current-cta p {
	color: #fff;
}

.ari-odonto-current-contact {
	background: #f7fafb;
}

.ari-odonto-current-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.72fr);
	gap: 28px;
}

.ari-odonto-current-contact__form {
	padding: 24px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 42px rgb(14 50 70 / 0.08);
}

.ari-odonto-current-footer {
	padding: 44px 0;
	background: #0d3144;
	color: #fff;
}

.ari-odonto-current-footer__grid {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(180px, 0.5fr) minmax(220px, 0.7fr);
	gap: 32px;
}

.ari-odonto-current-brand--footer,
.ari-odonto-current-footer a,
.ari-odonto-current-footer .ari-dynamic-contact,
.ari-odonto-current-footer .ari-dynamic-contact a {
	color: #fff;
}

.ari-odonto-current-brand--footer strong,
.ari-odonto-current-brand--footer small {
	color: #fff;
}

.ari-odonto-current-footer p {
	color: rgb(255 255 255 / 0.72);
}

.ari-odonto-current-footer nav {
	display: grid;
	gap: 10px;
}

@media (max-width: 980px) {
	.admin-bar .ari-odonto-current-header {
		top: 46px;
	}

	.ari-odonto-current-topbar .ari-odonto-current-shell {
		align-items: center;
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}

	.ari-odonto-current-topbar__contact a {
		padding: 0 10px;
		font-size: 0.72rem;
	}

	.ari-odonto-current-topbar__contact a:nth-child(2) {
		display: none;
	}

	.ari-odonto-current-social a {
		width: 38px;
	}

	.ari-odonto-current-nav {
		position: relative;
		min-height: 78px;
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto auto;
		gap: 12px;
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.ari-odonto-current-brand__logo,
	.ari-odonto-current-brand__mark,
	.ari-odonto-current-header.is-scrolled .ari-odonto-current-brand__logo,
	.ari-odonto-current-header.is-scrolled .ari-odonto-current-brand__mark {
		width: 48px;
		height: 48px;
		border-radius: 14px;
	}

	.ari-odonto-current-brand strong {
		font-size: 0.94rem;
	}

	.ari-odonto-current-brand small {
		font-size: 0.63rem;
	}

	.ari-odonto-current-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.ari-odonto-current-menu {
		position: absolute;
		top: calc(100% - 6px);
		right: 20px;
		left: 20px;
		display: grid;
		width: 100%;
		max-height: 0;
		padding: 0;
		border: 1px solid rgb(15 67 90 / 0.1);
		border-radius: 18px;
		background: rgb(255 255 255 / 0.94);
		box-shadow: 0 24px 44px rgb(14 50 70 / 0.14);
		overflow: hidden;
		opacity: 0;
		transform: translateY(-8px);
		transition: max-height 180ms ease, padding 180ms ease, opacity 180ms ease, transform 180ms ease;
		backdrop-filter: blur(18px);
	}

	.ari-odonto-current-header.is-odonto-menu-open .ari-odonto-current-menu {
		max-height: 420px;
		padding: 8px;
		opacity: 1;
		transform: translateY(0);
	}

	.ari-odonto-current-menu a {
		min-height: 44px;
		padding: 0 14px;
		border-radius: 12px;
	}

	.ari-odonto-current-menu a::after {
		display: none;
	}

	.ari-odonto-current-menu a:hover,
	.ari-odonto-current-menu a:focus-visible {
		background: rgb(138 239 235 / 0.22);
	}

	.ari-odonto-current-nav__cta {
		min-height: 46px;
		padding: 0 18px;
	}

	.ari-odonto-current-hero__grid,
	.ari-odonto-current-appointment,
	.ari-odonto-current-split,
	.ari-odonto-current-split--reverse,
	.ari-odonto-current-contact__grid,
	.ari-odonto-current-cta,
	.ari-odonto-current-footer__grid {
		grid-template-columns: 1fr;
	}

	.ari-odonto-current-service-grid,
	.ari-odonto-current-differentials__grid,
	.ari-odonto-current-gallery__grid,
	.ari-odonto-current-faq__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.ari-odonto-current-shell {
		width: min(100% - 28px, 1180px);
	}

	.ari-odonto-current-topbar .ari-odonto-current-shell {
		width: 100%;
	}

	.ari-odonto-current-social a {
		width: 34px;
	}

	.ari-odonto-current-nav {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.ari-odonto-current-nav__cta {
		grid-column: 1 / -1;
		width: 100%;
		min-height: 44px;
	}

	.ari-odonto-current-menu {
		right: 14px;
		left: 14px;
	}

	.ari-odonto-current-badges,
	.ari-odonto-current-service-grid,
	.ari-odonto-current-differentials__grid,
	.ari-odonto-current-gallery__grid,
	.ari-odonto-current-faq__grid,
	.ari-odonto-current-checks--grid {
		grid-template-columns: 1fr;
	}

	.ari-odonto-current-hero__visual {
		min-height: 320px;
	}

	.ari-odonto-current-hero__portrait {
		min-height: 280px;
	}
}
