/* ============================================================
   Clínica Dentária Azul do Tejo — Design System
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
	/* Cor */
	--navy: #0A2B49;
	/* azul profundo */
	--navy-700: #103A5E;
	--navy-900: #06203A;
	--blue: #1C6DB4;
	/* azul principal / acção */
	--blue-600: #2B7FC9;
	--blue-300: #7FB4E2;
	--blue-200: #BAD8F0;
	--sky: #E8F1FA;
	/* azul claro */
	--sky-soft: #F2F7FC;
	--petrol: #16707C;
	/* azul petróleo */
	--petrol-deep: #0E5460;
	--paper: #F7FAFD;
	/* cinza muito claro */
	--white: #FFFFFF;
	--ink: #13293C;
	/* títulos */
	--body: #41566A;
	/* texto corrido */
	--muted: #76889A;
	--line: #E3ECF4;
	/* contornos */
	--line-strong: #CFDDEA;

	/* Tipografia */
	--serif: "Newsreader", Georgia, "Times New Roman", serif;
	--sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

	/* Raios */
	--r-sm: 10px;
	--r: 16px;
	--r-lg: 22px;
	--r-xl: 30px;
	--r-pill: 100px;

	/* Sombras suaves */
	--sh-xs: 0 1px 2px rgba(13, 52, 90, .06);
	--sh-sm: 0 4px 14px -8px rgba(13, 52, 90, .22);
	--sh: 0 14px 38px -16px rgba(13, 52, 90, .26);
	--sh-lg: 0 30px 70px -26px rgba(10, 43, 73, .34);
	--sh-blue: 0 18px 40px -18px rgba(28, 109, 180, .5);

	/* Espaçamento */
	--gut: clamp(20px, 4vw, 40px);
	--section: clamp(64px, 9vw, 130px);
	--maxw: 1200px;

	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%
}

body {
	font-family: var(--sans);
	color: var(--body);
	background: var(--white);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

img,
svg {
	display: block;
	max-width: 100%
}

a {
	color: inherit;
	text-decoration: none
}

button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none
}

input,
textarea,
select,
button {
	font-family: inherit;
	font-size: inherit;
	color: inherit
}

ul {
	list-style: none
}

:focus-visible {
	outline: 3px solid var(--blue-300);
	outline-offset: 3px;
	border-radius: 6px
}

::selection {
	background: var(--blue-200);
	color: var(--navy)
}

/* ---------- Tipografia ---------- */
h1,
h2,
h3,
h4 {
	font-family: 'Fraunces', serif;
	color: var(--ink);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -.01em
}

h1 {
	font-size: clamp(2.6rem, 5.4vw, 4.4rem);
	font-weight: 400
}

h2 {
	font-size: clamp(2rem, 3.8vw, 3.05rem);
	font-weight: 400
}

h3 {
	font-size: clamp(1.35rem, 2.1vw, 1.75rem)
}

h4 {
	font-size: 1.2rem
}

p {
	text-wrap: pretty
}

.lead {
	font-size: clamp(1.12rem, 1.7vw, 1.35rem);
	line-height: 1.55;
	color: var(--navy-700)
}

em {
	font-style: italic
}

/* ---------- Layout ---------- */
.wrap {
	width: 100%;
	max-width: var(--maxw);
	margin-inline: auto;
	padding-inline: var(--gut)
}

.section {
	padding-block: var(--section)
}

.section--tight {
	padding-block: clamp(48px, 6vw, 84px)
}

.grid {
	display: grid;
	gap: clamp(20px, 2.4vw, 30px)
}

.center {
	text-align: center
}

.measure {
	max-width: 60ch
}

.measure-narrow {
	max-width: 46ch
}

/* Eyebrow / kicker */
.kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-family: var(--sans);
	font-weight: 600;
	font-size: .78rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--petrol);
}

.kicker::before {
	content: "";
	width: 24px;
	height: 1.5px;
	background: var(--petrol);
	border-radius: 2px
}

.kicker--center::before {
	display: none
}

.kicker--light {
	color: var(--blue-200)
}

.section-head {
	max-width: 64ch
}

.section-head .kicker {
	margin-bottom: 18px
}

.section-head h2+p {
	margin-top: 18px
}

.section-head--center {
	margin-inline: auto;
	text-align: center
}

/* ---------- Botões ---------- */
.btn {
	--bg: var(--blue);
	--fg: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .6em;
	padding: 15px 28px;
	border-radius: var(--r-pill);
	font-weight: 600;
	font-size: .98rem;
	letter-spacing: .01em;
	background: var(--bg);
	color: var(--fg);
	box-shadow: var(--sh-blue);
	transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
	will-change: transform;
}

.btn svg {
	width: 18px;
	height: 18px;
	transition: transform .35s var(--ease)
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 22px 44px -16px rgba(28, 109, 180, .6)
}

.btn:hover svg {
	transform: translateX(4px)
}

.btn:active {
	transform: translateY(0)
}

.btn--ghost {
	--bg: transparent;
	--fg: var(--navy);
	box-shadow: none;
	border: 1.5px solid var(--line-strong)
}

.btn--ghost:hover {
	background: var(--sky-soft);
	border-color: var(--blue-300);
	box-shadow: var(--sh-sm)
}

.btn--petrol {
	--bg: var(--petrol);
	box-shadow: 0 18px 40px -18px rgba(22, 112, 124, .55)
}

.btn--petrol:hover {
	box-shadow: 0 22px 44px -16px rgba(22, 112, 124, .65)
}

.btn--white {
	--bg: #fff;
	--fg: var(--navy);
	box-shadow: var(--sh)
}

.btn--white:hover {
	box-shadow: var(--sh-lg)
}

.btn--lg {
	padding: 18px 34px;
	font-size: 1.05rem
}

.btn--block {
	display: flex;
	width: 100%
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--blue);
	transition: gap .3s var(--ease), color .2s;
}

.link-arrow svg {
	width: 16px;
	height: 16px;
	transition: transform .3s var(--ease)
}

.link-arrow:hover {
	color: var(--petrol);
	gap: 12px
}

.link-arrow:hover svg {
	transform: translateX(3px)
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: rgba(255, 255, 255, .82);
	backdrop-filter: blur(14px) saturate(1.4);
	-webkit-backdrop-filter: blur(14px) saturate(1.4);
	border-bottom: 1px solid transparent;
	transition: border-color .3s, box-shadow .3s, background .3s;
}

.site-header.is-scrolled {
	border-color: var(--line);
	box-shadow: 0 6px 24px -18px rgba(13, 52, 90, .4);
	background: rgba(255, 255, 255, .92)
}

.nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 78px;
	gap: 24px
}

.nav.is-tall {
	height: 84px
}

/* Logo */
.brand {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0
}

.brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 13px;
	flex-shrink: 0;
	background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 60%, var(--petrol) 130%);
	display: grid;
	place-items: center;
	color: #fff;
	box-shadow: var(--sh-sm);
	position: relative;
	overflow: hidden;
}

.brand-mark::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, .45), transparent 55%)
}

.brand-mark svg {
	width: 24px;
	height: 24px;
	position: relative;
	z-index: 1
}

.brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.05
}

.brand-name {
	font-family: var(--serif);
	font-size: 1.16rem;
	color: var(--ink);
	font-weight: 500
}

.brand-sub {
	font-size: .62rem;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--petrol);
	font-weight: 600
}

/* Nav links */
.nav-menu {
	display: flex;
	align-items: center;
	gap: 4px
}

.nav-link {
	position: relative;
	padding: 9px 14px;
	border-radius: var(--r-sm);
	font-weight: 500;
	font-size: .96rem;
	color: var(--navy-700);
	transition: color .2s, background .2s;
}

.nav-link:hover {
	color: var(--blue);
	background: var(--sky-soft)
}

.nav-link.is-active {
	color: var(--blue)
}

.nav-link.is-active::after {
	content: "";
	position: absolute;
	left: 14px;
	right: 14px;
	bottom: 3px;
	height: 2px;
	background: var(--blue);
	border-radius: 2px;
}

/* Dropdown */
.nav-item {
	position: relative
}

.nav-item>.nav-link svg {
	width: 13px;
	height: 13px;
	margin-left: 3px;
	transition: transform .25s
}

.nav-item:hover>.nav-link svg {
	transform: rotate(180deg)
}

.dropdown {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 300px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: var(--sh-lg);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s, transform .25s var(--ease);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 2px;
}

.nav-item:hover .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0)
}

.dd-link {
	display: flex;
	flex-direction: column;
	gap: 1px;
	padding: 11px 13px;
	border-radius: 11px;
	transition: background .18s
}

.dd-link:hover {
	background: var(--sky-soft)
}

.dd-link strong {
	font-size: .92rem;
	color: var(--ink);
	font-weight: 600
}

.dd-link span {
	font-size: .78rem;
	color: var(--muted)
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0
}

.nav-phone {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: var(--navy);
	font-size: .95rem
}

.nav-phone svg {
	width: 17px;
	height: 17px;
	color: var(--blue)
}

/* Burger */
.burger {
	display: none;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	border: 1px solid var(--line);
	background: #fff;
	position: relative;
	flex-shrink: 0
}

.burger span {
	position: absolute;
	left: 13px;
	right: 13px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: transform .3s var(--ease), opacity .2s
}

.burger span:nth-child(1) {
	top: 16px
}

.burger span:nth-child(2) {
	top: 22px
}

.burger span:nth-child(3) {
	top: 28px
}

body.nav-open .burger span:nth-child(1) {
	transform: translateY(6px) rotate(45deg)
}

body.nav-open .burger span:nth-child(2) {
	opacity: 0
}

body.nav-open .burger span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg)
}

/* Mobile drawer */
.mobile-nav {
	position: fixed;
	inset: 0 0 0 auto;
	width: min(420px, 88vw);
	z-index: 95;
	background: #fff;
	box-shadow: var(--sh-lg);
	transform: translateX(100%);
	transition: transform .42s var(--ease);
	display: flex;
	flex-direction: column;
	padding: 24px;
	overflow-y: auto;
}

body.nav-open .mobile-nav {
	transform: translateX(0)
}

.mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 43, 73, .42);
	backdrop-filter: blur(3px);
	z-index: 94;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s
}

body.nav-open .mobile-overlay {
	opacity: 1;
	visibility: visible
}

.mobile-nav-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px
}

.mobile-close {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--line);
	font-size: 1.4rem;
	color: var(--navy);
	display: grid;
	place-items: center
}

.mnav-link {
	display: block;
	padding: 15px 12px;
	border-radius: 12px;
	font-size: 1.12rem;
	font-weight: 500;
	color: var(--navy);
	border-bottom: 1px solid var(--line)
}

.mnav-link:active,
.mnav-link:hover {
	background: var(--sky-soft)
}

.mnav-group-label {
	padding: 18px 12px 8px;
	font-size: .74rem;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--petrol);
	font-weight: 700
}

.mnav-sub {
	display: block;
	padding: 11px 12px 11px 24px;
	border-radius: 10px;
	color: var(--navy-700);
	font-size: 1rem
}

.mnav-sub:hover {
	background: var(--sky-soft);
	color: var(--blue)
}

.mobile-nav .btn {
	margin-top: 24px
}

.mobile-contact {
	margin-top: 22px;
	padding-top: 22px;
	border-top: 1px solid var(--line);
	font-size: .92rem;
	color: var(--body);
	display: grid;
	gap: 8px
}

.mobile-contact a {
	color: var(--navy);
	font-weight: 600
}

/* ---------- Foto placeholders ---------- */
.photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-lg);
	background: linear-gradient(150deg, var(--sky) 0%, var(--blue-200) 55%, var(--blue-300) 120%);
	isolation: isolate;
}

.photo::before {
	/* luz suave */
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		radial-gradient(120% 80% at 78% 8%, rgba(255, 255, 255, .55), transparent 50%),
		radial-gradient(90% 60% at 12% 100%, rgba(10, 43, 73, .22), transparent 60%);
}

.photo::after {
	/* grão / textura discreta */
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	opacity: .5;
	mix-blend-mode: overlay;
	background-image: radial-gradient(rgba(255, 255, 255, .6) .5px, transparent .5px);
	background-size: 5px 5px;
}

.photo-tag {
	position: absolute;
	left: 14px;
	bottom: 14px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border-radius: var(--r-pill);
	background: rgba(255, 255, 255, .78);
	backdrop-filter: blur(8px);
	font-family: var(--sans);
	font-size: .72rem;
	font-weight: 600;
	letter-spacing: .02em;
	color: var(--navy);
	box-shadow: var(--sh-xs);
}

.photo-tag svg {
	width: 13px;
	height: 13px;
	color: var(--blue)
}

.photo-icon {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: grid;
	place-items: center;
	color: rgba(255, 255, 255, .7)
}

.photo-icon svg {
	width: clamp(48px, 7vw, 80px);
	height: auto;
	opacity: .85
}

/* variantes de tom */
.photo--clinic {
	background: linear-gradient(150deg, #DCEAF7 0%, #9FC6E8 60%, #5E97CC 120%)
}

.photo--team {
	background: linear-gradient(150deg, #E6EEF6 0%, #A9C4DD 55%, #6E94B6 120%)
}

.photo--patient {
	background: linear-gradient(150deg, #E9F0F6 0%, #AFCAD6 55%, #6FA6AE 120%)
}

.photo--tech {
	background: linear-gradient(150deg, #D7E6F4 0%, #86AFD6 55%, #3F6FA8 120%)
}

.photo--smile {
	background: linear-gradient(150deg, #EAF2FA 0%, #BBD6EC 55%, #8FB9DA 120%)
}

.photo--detail {
	background: linear-gradient(150deg, #E0EBF4 0%, #9DBFD5 55%, #5C8AA8 120%)
}

.photo--deep {
	background: linear-gradient(160deg, var(--navy-700) 0%, var(--navy) 55%, var(--petrol-deep) 130%)
}

.photo--deep .photo-tag {
	background: rgba(255, 255, 255, .16);
	color: #fff
}

.photo--deep .photo-tag svg {
	color: var(--blue-200)
}

.photo.is-zoom img,
.photo.is-zoom .photo-icon {
	transition: transform 1.1s var(--ease)
}

.photo.is-zoom:hover img,
.photo.is-zoom:hover .photo-icon {
	transform: scale(1.06)
}

.ratio-4-3 {
	aspect-ratio: 4/3
}

.ratio-3-2 {
	aspect-ratio: 3/2
}

.ratio-1-1 {
	aspect-ratio: 1/1
}

.ratio-16-9 {
	aspect-ratio: 16/9
}

.ratio-3-4 {
	aspect-ratio: 3/4
}

.ratio-5-6 {
	aspect-ratio: 5/6
}


/* ---------- Cards ---------- */
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	box-shadow: var(--sh-xs);
	transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
	overflow: hidden;
}

.card:hover {
	transform: translateY(-6px);
	box-shadow: var(--sh);
	border-color: var(--blue-200)
}

/* treatment card */
.t-card {
	display: flex;
	flex-direction: column;
	height: 100%
}

.t-card .photo {
	border-radius: 0
}

.t-card-body {
	padding: 26px 26px 28px;
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 12px
}

.t-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	margin-top: -50px;
	position: relative;
	z-index: 4;
	background: #fff;
	display: grid;
	place-items: center;
	color: var(--blue);
	box-shadow: var(--sh-sm);
	border: 1px solid var(--line);
}

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

.t-card-icon svg {
	width: 24px;
	height: 24px
}

.t-card h3 {
	font-size: 1.32rem
}

.t-card p {
	font-size: .96rem;
	color: var(--body);
	flex: 1
}

.t-card .link-arrow {
	margin-top: 4px
}

/* feature card */
.feature {
	padding: 30px;
	border-radius: var(--r-lg);
	background: #fff;
	border: 1px solid var(--line);
	height: 100%;
	transition: transform .4s var(--ease), box-shadow .4s var(--ease)
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: var(--sh)
}

.feature-icon {
	width: 54px;
	height: 54px;
	border-radius: 15px;
	display: grid;
	place-items: center;
	margin-bottom: 20px;
	background: var(--sky);
	color: var(--blue);
	transition: transform .4s var(--ease), background .3s, color .3s;
}

.feature:hover .feature-icon {
	transform: scale(1.08) rotate(-4deg);
	background: var(--blue);
	color: #fff
}

.feature-icon svg {
	width: 26px;
	height: 26px
}

.feature h3 {
	font-size: 1.28rem;
	margin-bottom: 9px
}

.feature p {
	font-size: .97rem
}

/* stat */
.stat .num {
	font-family: var(--serif);
	font-size: clamp(2.4rem, 4vw, 3.2rem);
	color: var(--blue);
	font-weight: 500;
	line-height: 1
}

.stat--light .num {
	color: #fff
}

.stat .lbl {
	font-size: .92rem;
	color: var(--muted);
	margin-top: 6px
}

.stat--light .lbl {
	color: var(--blue-200)
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	padding-top: clamp(40px, 6vw, 72px);
	padding-bottom: clamp(48px, 7vw, 90px);
	overflow: hidden
}

.hero-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(70% 60% at 88% 0%, var(--sky) 0%, transparent 60%),
		radial-gradient(50% 50% at 0% 100%, var(--sky-soft) 0%, transparent 60%);
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center
}

.hero h1 em {
	color: var(--blue);
	font-style: italic
}

.hero-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px
}

.hero-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	margin-top: 38px;
	padding-top: 30px;
	border-top: 1px solid var(--line)
}

.hero-media {
	position: relative
}

.hero-media .photo {
	box-shadow: var(--sh-lg)
}

.hero-badge {
	position: absolute;
	background: #fff;
	border-radius: var(--r);
	box-shadow: var(--sh);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 13px;
	border: 1px solid var(--line);
}

.hero-badge svg {
	width: 22px;
	height: 22px;
	color: var(--petrol)
}

.hero-badge strong {
	display: block;
	color: var(--ink);
	font-size: 1.05rem;
	font-family: var(--serif)
}

.hero-badge span {
	font-size: .8rem;
	color: var(--muted)
}

.hero-badge--tl {
	top: 24px;
	left: -28px
}

.hero-badge--br {
	bottom: 26px;
	right: -26px
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
	position: relative;
	padding-block: clamp(54px, 7vw, 96px);
	background: var(--sky-soft);
	overflow: hidden
}

.page-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: radial-gradient(60% 80% at 92% 0%, var(--sky), transparent 55%)
}

.page-hero .wrap {
	position: relative;
	z-index: 1
}

.crumbs {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: .85rem;
	color: var(--muted);
	margin-bottom: 22px;
	flex-wrap: wrap
}

.crumbs a:hover {
	color: var(--blue)
}

.crumbs svg {
	width: 13px;
	height: 13px;
	opacity: .6
}

.page-hero--treat .page-hero-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: clamp(32px, 5vw, 64px);
	align-items: center
}

/* ---------- Section: dark ---------- */
.bg-paper {
	background: var(--paper)
}

.bg-sky {
	background: var(--sky-soft)
}

.bg-navy {
	background: linear-gradient(165deg, var(--navy-700) 0%, var(--navy) 70%, var(--navy-900) 130%);
	color: var(--blue-200)
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
	color: #fff
}

.bg-navy .lead {
	color: var(--blue-200)
}

.bg-navy p {
	color: #C9DCEC
}

/* ---------- Split feature ---------- */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(36px, 5vw, 72px);
	align-items: center
}

.split--rev .split-media {
	order: 2
}

.checklist {
	display: grid;
	gap: 14px;
	margin-top: 26px
}

.checklist li {
	display: flex;
	gap: 13px;
	align-items: flex-start
}

.checklist .tick {
	flex-shrink: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--sky);
	color: var(--blue);
	display: grid;
	place-items: center;
	margin-top: 1px
}

.checklist .tick svg {
	width: 15px;
	height: 15px
}

.checklist b {
	color: var(--ink);
	font-weight: 600
}

/* ---------- Steps ---------- */
.steps {
	display: grid;
	gap: clamp(18px, 2vw, 26px)
}

.step {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 22px;
	align-items: start;
	padding: 26px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	transition: box-shadow .35s, transform .35s var(--ease)
}

.step:hover {
	box-shadow: var(--sh);
	transform: translateX(4px)
}

.step-num {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: linear-gradient(150deg, var(--blue), var(--navy));
	color: #fff;
	display: grid;
	place-items: center;
	font-family: var(--serif);
	font-size: 1.3rem;
	box-shadow: var(--sh-sm)
}

.step h4 {
	font-size: 1.18rem;
	margin-bottom: 6px
}

.step p {
	font-size: .96rem
}

/* ---------- Team ---------- */
.team-card {
	text-align: left
}

.team-card .photo {
	border-radius: var(--r-lg)
}

.team-card h4 {
	margin-top: 18px;
	font-size: 1.22rem
}

.team-role {
	color: var(--petrol);
	font-weight: 600;
	font-size: .86rem;
	letter-spacing: .02em
}

.team-bio {
	font-size: .92rem;
	margin-top: 8px;
	color: var(--body)
}

/* ---------- Testemunhos ---------- */
.quote-card {
	padding: 32px;
	border-radius: var(--r-lg);
	background: #fff;
	border: 1px solid var(--line);
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: box-shadow .35s, transform .35s var(--ease)
}

.quote-card:hover {
	box-shadow: var(--sh);
	transform: translateY(-4px)
}

.stars {
	display: flex;
	gap: 3px;
	color: #F2A93B
}

.stars svg {
	width: 18px;
	height: 18px
}

.quote-card blockquote {
	font-family: var(--serif);
	font-size: 1.18rem;
	line-height: 1.45;
	color: var(--navy-700);
	font-weight: 400
}

.quote-author {
	display: flex;
	align-items: center;
	gap: 13px;
	margin-top: auto
}

.avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	flex-shrink: 0;
	background: linear-gradient(150deg, var(--blue-200), var(--blue));
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 700;
	font-family: var(--serif)
}

.quote-author strong {
	display: block;
	color: var(--ink);
	font-size: .98rem
}

.quote-author span {
	font-size: .82rem;
	color: var(--muted)
}

/* ---------- FAQ accordion ---------- */
.faq {
	display: grid;
	gap: 14px
}

.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	transition: border-color .3s, box-shadow .3s
}

.faq-item.open {
	border-color: var(--blue-200);
	box-shadow: var(--sh-sm)
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 22px 26px;
	text-align: left;
	font-family: var(--serif);
	font-size: 1.12rem;
	color: var(--ink);
	font-weight: 500
}

.faq-icon {
	flex-shrink: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--sky);
	color: var(--blue);
	display: grid;
	place-items: center;
	transition: transform .35s var(--ease), background .3s, color .3s
}

.faq-icon svg {
	width: 16px;
	height: 16px;
	transition: transform .35s var(--ease)
}

.faq-item.open .faq-icon {
	background: var(--blue);
	color: #fff
}

.faq-item.open .faq-icon svg {
	transform: rotate(45deg)
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .42s var(--ease)
}

.faq-a-inner {
	padding: 0 26px 24px;
	color: var(--body);
	font-size: 1rem
}

/* ---------- Resultados / antes-depois ---------- */
.filterbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	margin-bottom: 42px
}

.filter-btn {
	padding: 10px 20px;
	border-radius: var(--r-pill);
	border: 1.5px solid var(--line-strong);
	font-weight: 600;
	font-size: .9rem;
	color: var(--navy-700);
	background: #fff;
	transition: all .25s
}

.filter-btn:hover {
	border-color: var(--blue-300);
	color: var(--blue)
}

.filter-btn.is-on {
	background: var(--navy);
	border-color: var(--navy);
	color: #fff
}

.case {
	transition: opacity .4s, transform .4s
}

.case.is-hidden {
	display: none
}

.ba {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	box-shadow: var(--sh-sm)
}

.ba-pair {
	display: grid;
	grid-template-columns: 1fr 1fr
}

.ba-pair .photo {
	border-radius: 0
}

.ba-label {
	position: absolute;
	top: 12px;
	z-index: 4;
	padding: 5px 12px;
	border-radius: var(--r-pill);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	background: rgba(255, 255, 255, .85);
	color: var(--navy);
	backdrop-filter: blur(6px)
}

.ba-label--before {
	left: 12px
}

.ba-label--after {
	right: 12px;
	background: var(--blue);
	color: #fff
}

.ba-divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 2px;
	background: #fff;
	z-index: 3;
	transform: translateX(-50%)
}

.case-meta {
	padding: 20px 4px 0
}

.case-tag {
	font-size: .78rem;
	font-weight: 700;
	color: var(--petrol);
	text-transform: uppercase;
	letter-spacing: .06em
}

.case-meta h4 {
	margin-top: 6px;
	font-size: 1.12rem
}

.case-meta p {
	font-size: .92rem;
	margin-top: 5px
}

/* ---------- Forms ---------- */
.field {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 18px
}

.field label {
	font-weight: 600;
	font-size: .9rem;
	color: var(--navy)
}

.field label .req {
	color: var(--blue)
}

.field input,
.field select,
.field textarea {
	padding: 14px 16px;
	border-radius: var(--r-sm);
	border: 1.5px solid var(--line-strong);
	background: #fff;
	color: var(--ink);
	transition: border-color .2s, box-shadow .2s;
}

.field input::placeholder,
.field textarea::placeholder {
	color: var(--muted)
}

.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--blue);
	box-shadow: 0 0 0 4px rgba(28, 109, 180, .13)
}

.field textarea {
	resize: vertical;
	min-height: 130px
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
	border-color: #D7544B;
	box-shadow: 0 0 0 4px rgba(215, 84, 75, .12)
}

.field-error {
	font-size: .82rem;
	color: #D7544B;
	display: none
}

.field.has-error .field-error {
	display: block
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px
}

.form-note {
	font-size: .84rem;
	color: var(--muted);
	margin-top: 4px
}

.form-success {
	display: none;
	padding: 22px 24px;
	border-radius: var(--r);
	background: var(--sky);
	border: 1px solid var(--blue-200);
	color: var(--navy);
	gap: 14px;
	align-items: center;
}

.form-success.show {
	display: flex
}

.form-success svg {
	width: 30px;
	height: 30px;
	color: var(--blue);
	flex-shrink: 0
}

/* ---------- Info / contacto ---------- */
.info-list {
	display: grid;
	gap: 8px
}

.info-item {
	display: flex;
	gap: 16px;
	padding: 20px;
	border-radius: var(--r);
	background: #fff;
	border: 1px solid var(--line);
	transition: box-shadow .3s, transform .3s
}

.info-item:hover {
	box-shadow: var(--sh-sm);
	transform: translateY(-2px)
}

.info-ico {
	width: 46px;
	height: 46px;
	border-radius: 13px;
	flex-shrink: 0;
	background: var(--sky);
	color: var(--blue);
	display: grid;
	place-items: center
}

.info-ico svg {
	width: 22px;
	height: 22px
}

.info-item h4 {
	font-size: 1.05rem;
	margin-bottom: 3px
}

.info-item p,
.info-item a {
	font-size: .95rem;
	color: var(--body)
}

.info-item a:hover {
	color: var(--blue)
}

/* Mapa placeholder */
.map {
	position: relative;
	border-radius: var(--r-lg);
	overflow: hidden;
	min-height: 340px;
	box-shadow: var(--sh-sm);
	background:
		linear-gradient(135deg, #EAF1F7, #DCE8F2);
}

.map::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(28, 109, 180, .10) 1px, transparent 1px),
		linear-gradient(90deg, rgba(28, 109, 180, .10) 1px, transparent 1px),
		linear-gradient(rgba(28, 109, 180, .16) 1.5px, transparent 1.5px),
		linear-gradient(90deg, rgba(28, 109, 180, .16) 1.5px, transparent 1.5px);
	background-size: 28px 28px, 28px 28px, 140px 140px, 140px 140px;
}

.map-pin {
	position: absolute;
	left: 50%;
	top: 46%;
	transform: translate(-50%, -100%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px
}

.map-pin-dot {
	width: 52px;
	height: 52px;
	border-radius: 50% 50% 50% 6px;
	background: var(--blue);
	transform: rotate(45deg);
	display: grid;
	place-items: center;
	box-shadow: var(--sh)
}

.map-pin-dot svg {
	width: 24px;
	height: 24px;
	color: #fff;
	transform: rotate(-45deg)
}

.map-card {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 3;
	background: #fff;
	border-radius: var(--r);
	box-shadow: var(--sh);
	padding: 16px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	width: max-content;
	max-width: 90%
}

.map iframe {
   position: relative;
   width: 100%;
   min-height: 420px;
   overflow: hidden;
   border-radius: 28px;
}
.map-card svg {
	width: 20px;
	height: 20px;
	color: var(--blue);
	flex-shrink: 0
}

.map-card strong {
	display: block;
	color: var(--ink);
	font-size: .95rem
}

.map-card span {
	font-size: .82rem;
	color: var(--muted)
}

/* ---------- CTA band ---------- */
.cta-band {
	position: relative;
	border-radius: var(--r-xl);
	overflow: hidden;
	padding: clamp(40px, 6vw, 76px);
	background: linear-gradient(150deg, var(--blue) 0%, var(--navy) 70%, var(--petrol-deep) 130%);
	color: #fff;
	box-shadow: var(--sh-lg)
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 90% at 90% 10%, rgba(255, 255, 255, .16), transparent 55%), radial-gradient(50% 70% at 5% 100%, rgba(255, 255, 255, .08), transparent 60%)
}

.cta-band>* {
	position: relative;
	z-index: 1
}

.cta-band h2 {
	color: #fff
}

.cta-band p {
	color: #D6E6F4
}

.cta-band .btn--white {
	--fg: var(--blue)
}

/* hours table */
.hours {
	display: grid;
	gap: 2px
}

.hours-row {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 12px 0;
	border-bottom: 1px solid var(--line)
}

.hours-row:last-child {
	border-bottom: none
}

.hours-row.is-closed span:last-child {
	color: var(--muted)
}

.hours-row.is-today {
	font-weight: 700;
	color: var(--blue)
}

.hours-day {
	color: var(--navy-700)
}

/* ---------- Footer ---------- */
.site-footer {
	background: linear-gradient(170deg, var(--navy) 0%, var(--navy-900) 100%);
	color: #A9C2D8;
	padding-top: clamp(56px, 7vw, 90px)
}

.footer-top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 54px;
	border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.footer-brand .brand-name {
	color: #fff
}

.footer-brand p {
	margin-top: 18px;
	font-size: .95rem;
	color: #9FB9D0;
	max-width: 32ch
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 22px
}

.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	border: 1px solid rgba(255, 255, 255, .14);
	display: grid;
	place-items: center;
	color: #C9DCEC;
	transition: background .25s, transform .25s, border-color .25s
}

.footer-social a:hover {
	background: var(--blue);
	border-color: var(--blue);
	transform: translateY(-3px);
	color: #fff
}

.footer-social svg {
	width: 18px;
	height: 18px
}

.footer-col h5 {
	color: #fff;
	font-family: var(--sans);
	font-weight: 700;
	font-size: .82rem;
	letter-spacing: .12em;
	text-transform: uppercase;
	margin-bottom: 18px
}

.footer-col ul {
	display: grid;
	gap: 11px
}

.footer-col a {
	font-size: .95rem;
	color: #A9C2D8;
	transition: color .2s, padding .2s
}

.footer-col a:hover {
	color: #fff;
	padding-left: 4px
}

.footer-contact li {
	display: flex;
	gap: 11px;
	font-size: .95rem;
	margin-bottom: 13px;
	align-items: flex-start
}

.footer-contact svg {
	width: 17px;
	height: 17px;
	color: var(--blue-300);
	flex-shrink: 0;
	margin-top: 3px
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	padding-block: 26px;
	font-size: .85rem;
	color: #86A1BA;
	flex-wrap: wrap
}

.footer-bottom a:hover {
	color: #fff
}

/* ---------- Pills / chips ---------- */
.pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 7px 15px;
	border-radius: var(--r-pill);
	background: var(--sky);
	color: var(--navy-700);
	font-size: .85rem;
	font-weight: 600
}

.pill svg {
	width: 14px;
	height: 14px;
	color: var(--blue)
}

.pill-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px
}

.tag-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px
}

.mini-tag {
	font-size: .78rem;
	font-weight: 600;
	color: var(--petrol);
	background: rgba(22, 112, 124, .08);
	padding: 5px 11px;
	border-radius: var(--r-pill)
}

/* divider */
.rule {
	height: 1px;
	background: var(--line);
	border: none;
	margin-block: var(--gut)
}

/* prose */
.prose p {
	margin-bottom: 18px
}

.prose p:last-child {
	margin-bottom: 0
}

.prose h3 {
	margin: 34px 0 14px
}

.prose ul.bullets {
	display: grid;
	gap: 12px;
	margin: 8px 0 18px
}

.prose ul.bullets li {
	display: flex;
	gap: 12px;
	align-items: flex-start
}

.prose ul.bullets li::before {
	content: "";
	flex-shrink: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--blue);
	margin-top: 9px
}

/* aside box */
.note-box {
	padding: 24px 26px;
	border-radius: var(--r);
	background: var(--sky-soft);
	border: 1px solid var(--blue-200);
	border-left: none;
	position: relative
}

.note-box h4 {
	color: var(--navy);
	font-size: 1.08rem;
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 10px
}

.note-box h4 svg {
	width: 20px;
	height: 20px;
	color: var(--blue)
}

.note-box p {
	font-size: .95rem;
	color: var(--body)
}

/* ---------- Reveal animation ---------- */
.reveal {
	opacity: 0;
	transform: translateY(26px);
	transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.is-visible {
	opacity: 1;
	transform: none
}

.reveal-d1 {
	transition-delay: .08s
}

.reveal-d2 {
	transition-delay: .16s
}

.reveal-d3 {
	transition-delay: .24s
}

.reveal-d4 {
	transition-delay: .32s
}

@media (prefers-reduced-motion:reduce) {
	* {
		animation: none !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important
	}

	.reveal {
		opacity: 1;
		transform: none
	}
}

/* ---------- Utilities ---------- */
.cols-2 {
	grid-template-columns: repeat(2, 1fr)
}

.cols-3 {
	grid-template-columns: repeat(3, 1fr)
}

.cols-4 {
	grid-template-columns: repeat(4, 1fr)
}

.gap-sm {
	gap: 14px
}

.mt-s {
	margin-top: 14px
}

.mt-m {
	margin-top: 26px
}

.mt-l {
	margin-top: 42px
}

.mb-l {
	margin-bottom: 42px
}

.flex {
	display: flex
}

.items-center {
	align-items: center
}

.justify-between {
	justify-content: space-between
}

.wrap-gap {
	gap: 16px;
	flex-wrap: wrap
}

/* ---------- Responsivo ---------- */
@media (max-width:1080px) {
	.footer-top {
		grid-template-columns: 1fr 1fr
	}

	.footer-brand {
		grid-column: 1/-1
	}
}

@media (max-width:980px) {

	.nav-menu,
	.nav-cta {
		display: none
	}

	.burger {
		display: block
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px
	}

	.hero-media {
		order: -1
	}

	.hero-badge--tl {
		left: 14px
	}

	.hero-badge--br {
		right: 14px
	}

	.split {
		grid-template-columns: 1fr;
		gap: 38px
	}

	.split--rev .split-media {
		order: -1
	}

	.page-hero--treat .page-hero-grid {
		grid-template-columns: 1fr;
		gap: 34px
	}

	.cols-4 {
		grid-template-columns: repeat(2, 1fr)
	}
}

@media (max-width:680px) {
	body {
		font-size: 16px
	}

	.cols-2,
	.cols-3,
	.cols-4 {
		grid-template-columns: 1fr
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.ba-pair {
		grid-template-columns: 1fr 1fr
	}

	.footer-top {
		grid-template-columns: 1fr;
		gap: 34px
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start
	}

	.hero-cta .btn {
		flex: 1
	}

	.nav {
		height: 68px
	}

	.hero-badge {
		padding: 12px 15px
	}

	.hero-badge strong {
		font-size: .95rem
	}
}