/*
 * Chaveiro Curitiba Alerta 24h — tema 2.0
 * Direção visual: confiança técnica, proximidade e disponibilidade.
 */

:root {
	--navy-950: #061728;
	--navy-900: #082139;
	--navy-850: #0b2a47;
	--navy-800: #103554;
	--navy-700: #19496b;
	--gold-500: #d6a83d;
	--gold-400: #e6bc57;
	--gold-300: #f0cf7d;
	--cream-100: #faf7f0;
	--cream-200: #f2ede3;
	--white: #fff;
	--ink: #102437;
	--muted: #5e6d79;
	--line: #dfe3e5;
	--whatsapp: #178a4b;
	--whatsapp-dark: #0f6f3b;
	--shadow-sm: 0 12px 32px rgba(6, 23, 40, .08);
	--shadow-lg: 0 28px 80px rgba(6, 23, 40, .18);
	--radius-sm: 12px;
	--radius-md: 22px;
	--radius-lg: 34px;
	--container: min(1180px, calc(100% - 40px));
	--font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream-100);
	color: var(--ink);
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

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

button,
input,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol,
figure,
blockquote {
	margin-top: 0;
}

h1,
h2,
h3,
h4 {
	font-weight: 800;
	letter-spacing: -.035em;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3rem, 6vw, 5.7rem);
}

h2 {
	font-size: clamp(2.1rem, 4vw, 3.7rem);
}

h3 {
	font-size: clamp(1.25rem, 2vw, 1.55rem);
}

.container {
	width: var(--container);
	margin-inline: auto;
}

.section {
	padding: 112px 0;
}

.skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	padding: 10px 14px;
	background: var(--white);
	color: var(--navy-950);
	border-radius: 8px;
	transform: translateY(-150%);
}

.skip-link:focus {
	transform: none;
}

:focus-visible {
	outline: 3px solid var(--gold-400);
	outline-offset: 3px;
}

.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--gold-300);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.eyebrow > span {
	display: inline-block;
	width: 34px;
	height: 2px;
	background: currentColor;
}

.eyebrow--dark {
	color: var(--navy-700);
}

.eyebrow--light {
	color: var(--gold-300);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 54px;
	padding: 15px 23px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: .91rem;
	font-weight: 800;
	line-height: 1.15;
	transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--primary {
	background: var(--gold-400);
	color: var(--navy-950);
}

.button--primary:hover,
.button--gold:hover {
	background: var(--gold-300);
}

.button--ghost {
	border-color: rgba(255, 255, 255, .34);
	color: var(--white);
}

.button--ghost:hover {
	background: rgba(255, 255, 255, .08);
	border-color: var(--white);
}

.button--gold {
	background: var(--gold-400);
	color: var(--navy-950);
}

.button--navy {
	background: var(--navy-900);
	color: var(--white);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--white);
	font-size: .89rem;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, .35);
	text-underline-offset: 5px;
}

.text-link span {
	font-size: 1.2em;
	transition: transform .2s ease;
}

.text-link:hover span {
	transform: translateX(4px);
}

.text-link--dark {
	color: var(--navy-900);
	text-decoration-color: rgba(8, 33, 57, .26);
}

/* Header */
.site-header {
	position: relative;
	z-index: 100;
	background: var(--white);
	box-shadow: 0 6px 28px rgba(6, 23, 40, .07);
}

.header-top {
	background: var(--navy-950);
	color: var(--white);
}

.header-top__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	font-size: .78rem;
}

.header-status,
.header-phones {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
}

.header-status span:last-child {
	color: rgba(255, 255, 255, .62);
}

.status-dot {
	width: 8px;
	height: 8px;
	background: var(--gold-400);
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(230, 188, 87, .13);
}

.header-phones {
	font-weight: 700;
}

.header-phones span {
	color: var(--gold-400);
}

.header-phones a:hover {
	color: var(--gold-300);
}

.header-main {
	background: var(--white);
}

.header-main__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	width: 220px;
	padding: 7px 0;
}

.site-nav {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.6vw, 34px);
	font-size: .89rem;
	font-weight: 750;
}

.site-nav > a:not(.button),
.nav-services > summary {
	position: relative;
	color: var(--navy-900);
	cursor: pointer;
	list-style: none;
}

.nav-services > summary::-webkit-details-marker {
	display: none;
}

.site-nav > a:not(.button)::after,
.nav-services > summary::after {
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 0;
	height: 2px;
	background: var(--gold-500);
	content: "";
	transition: width .2s ease;
}

.site-nav > a:not(.button):hover::after,
.nav-services > summary:hover::after,
.nav-services[open] > summary::after {
	width: 100%;
}

.nav-services {
	position: relative;
}

.nav-services summary span {
	display: inline-block;
	margin-left: 4px;
	color: var(--navy-700);
	transition: transform .2s ease;
}

.nav-services[open] summary span {
	transform: rotate(180deg);
}

.services-menu {
	position: absolute;
	top: calc(100% + 24px);
	left: 50%;
	display: grid;
	width: min(650px, 88vw);
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	padding: 22px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--shadow-lg);
	transform: translateX(-38%);
}

.services-menu::before {
	position: absolute;
	top: -9px;
	left: 38%;
	width: 18px;
	height: 18px;
	background: var(--white);
	border-top: 1px solid var(--line);
	border-left: 1px solid var(--line);
	content: "";
	transform: rotate(45deg);
}

.services-menu__eyebrow {
	grid-column: 1 / -1;
	margin: 0 0 5px;
	color: var(--navy-700);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.services-menu a {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 13px 14px;
	border-radius: 11px;
}

.services-menu a:hover {
	background: var(--cream-100);
}

.services-menu a span {
	color: var(--navy-900);
	font-weight: 800;
}

.services-menu a small {
	color: var(--muted);
	font-size: .74rem;
	font-weight: 600;
}

.button--header {
	min-height: 46px;
	padding: 13px 18px;
	background: var(--navy-900);
	color: var(--white);
}

.button--header:hover {
	background: var(--navy-700);
}

.menu-toggle {
	display: none;
	align-items: center;
	gap: 12px;
	padding: 10px 12px;
	background: none;
	border: 1px solid var(--line);
	border-radius: 9px;
	color: var(--navy-900);
	font-size: .78rem;
	font-weight: 800;
}

.menu-toggle__icon {
	display: flex;
	width: 20px;
	flex-direction: column;
	gap: 4px;
}

.menu-toggle__icon i {
	display: block;
	width: 100%;
	height: 2px;
	background: currentColor;
}

/* Hero */
.hero,
.inner-hero,
.article-header {
	position: relative;
	overflow: hidden;
	background: var(--navy-950);
	color: var(--white);
}

.hero::before,
.inner-hero::before,
.article-header::before {
	position: absolute;
	top: -30%;
	right: -15%;
	width: 720px;
	height: 720px;
	background: radial-gradient(circle, rgba(33, 82, 111, .72), rgba(6, 23, 40, 0) 68%);
	content: "";
}

.hero::after {
	position: absolute;
	left: -120px;
	bottom: -250px;
	width: 500px;
	height: 500px;
	border: 1px solid rgba(230, 188, 87, .09);
	border-radius: 50%;
	content: "";
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: 620px;
	grid-template-columns: 1.16fr .84fr;
	align-items: center;
	gap: clamp(54px, 7vw, 94px);
	padding-top: 60px;
	padding-bottom: 64px;
}

.hero h1 {
	max-width: 760px;
	margin-bottom: 28px;
	font-size: clamp(3.15rem, 4.45vw, 4.65rem);
}

.hero__lead {
	max-width: 670px;
	margin-bottom: 32px;
	color: rgba(255, 255, 255, .72);
	font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__proof {
	display: grid;
	max-width: 670px;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	margin: 44px 0 0;
	padding: 25px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .14);
	list-style: none;
}

.hero__proof li {
	display: flex;
	min-height: 52px;
	flex-direction: column;
	justify-content: center;
	padding: 0 20px;
	border-left: 1px solid rgba(255, 255, 255, .14);
}

.hero__proof li:first-child {
	padding-left: 0;
	border-left: 0;
}

.hero__proof strong {
	color: var(--gold-300);
	font-size: 1.25rem;
	line-height: 1;
}

.hero__proof span {
	margin-top: 7px;
	color: rgba(255, 255, 255, .62);
	font-size: .72rem;
	font-weight: 650;
}

.hero__visual {
	position: relative;
	padding: 0 0 50px 28px;
}

.hero__image {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 4.45;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 170px 28px 28px 28px;
	box-shadow: var(--shadow-lg);
}

.hero__image::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(6, 23, 40, .34), transparent 55%);
	content: "";
}

.hero__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.availability-card {
	position: absolute;
	right: 22px;
	top: 22px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px 12px 12px;
	background: rgba(255, 255, 255, .94);
	color: var(--navy-950);
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(10px);
}

.availability-card__icon {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	background: var(--navy-900);
	color: var(--gold-300);
	border-radius: 50%;
	font-size: .82rem;
	font-weight: 900;
}

.availability-card p {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin: 0;
	font-size: .75rem;
	line-height: 1.2;
}

.availability-card small {
	color: var(--muted);
	font-size: .67rem;
}

.experience-card {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	display: flex;
	width: min(340px, 75%);
	align-items: center;
	gap: 17px;
	padding: 20px 23px;
	background: var(--gold-400);
	color: var(--navy-950);
	border-radius: 16px;
	box-shadow: var(--shadow-lg);
}

.experience-card__number {
	margin: 0;
	font-size: 3rem;
	font-weight: 900;
	letter-spacing: -.08em;
	line-height: 1;
}

.experience-card__number sup {
	font-size: .46em;
	vertical-align: top;
}

.experience-card > div {
	display: flex;
	flex-direction: column;
	font-size: .82rem;
	line-height: 1.25;
}

.experience-card span {
	margin-top: 4px;
	color: rgba(6, 23, 40, .67);
	font-size: .69rem;
}

.trust-strip {
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.trust-strip p {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 76px;
	margin: 0;
	padding: 10px 18px;
	border-left: 1px solid var(--line);
	font-size: .82rem;
	font-weight: 750;
	text-align: center;
}

.trust-strip p:last-child {
	border-right: 1px solid var(--line);
}

.trust-strip p span {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	background: var(--cream-200);
	color: var(--navy-700);
	border-radius: 50%;
	font-size: .7rem;
}

/* Seções e cartões */
.section-heading {
	margin-bottom: 54px;
}

.section-heading h2 {
	max-width: 760px;
	margin-bottom: 0;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr);
	align-items: end;
	gap: 80px;
}

.section-heading--split > p {
	margin-bottom: 4px;
	color: var(--muted);
}

.section-heading--center {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.section-heading--center .eyebrow {
	justify-content: center;
}

.services-section {
	background: var(--cream-100);
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.service-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--navy-900);
	color: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.service-card--large {
	grid-column: span 2;
}

.service-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: var(--navy-800);
}

.service-card:not(.service-card--large) .service-card__media {
	aspect-ratio: 1.25 / 1;
}

.service-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .45s ease;
}

.service-card:hover .service-card__media img {
	transform: scale(1.035);
}

.service-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 28px;
}

.service-card__label {
	margin-bottom: 12px;
	color: var(--gold-300);
	font-size: .68rem;
	font-weight: 850;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.service-card h3 {
	margin-bottom: 13px;
}

.service-card h3 a:hover {
	color: var(--gold-300);
}

.service-card__body > p:not(.service-card__label) {
	margin-bottom: 22px;
	color: rgba(255, 255, 255, .68);
	font-size: .91rem;
}

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

.emergency-banner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 34px;
	margin-top: 62px;
	padding: 32px 38px;
	background: var(--navy-950);
	color: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.emergency-banner__badge {
	display: grid;
	width: 90px;
	height: 90px;
	place-content: center;
	background: var(--gold-400);
	color: var(--navy-950);
	border-radius: 50%;
	text-align: center;
}

.emergency-banner__badge strong {
	font-size: 1.7rem;
	letter-spacing: -.04em;
	line-height: 1;
}

.emergency-banner__badge span {
	margin-top: 4px;
	font-size: .57rem;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.emergency-banner .eyebrow {
	margin-bottom: 9px;
}

.emergency-banner h2 {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.emergency-banner__actions {
	display: flex;
	min-width: 200px;
	flex-direction: column;
	align-items: stretch;
	gap: 9px;
	text-align: center;
}

.emergency-banner__actions > a:last-child {
	color: rgba(255, 255, 255, .7);
	font-size: .73rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.about-section {
	background: var(--white);
}

.about-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	align-items: center;
	gap: clamp(60px, 9vw, 120px);
}

.about-visual {
	position: relative;
	min-height: 520px;
	padding: 58px 45px 120px;
	background: var(--navy-900);
	color: var(--white);
	border-radius: 170px 28px 28px 28px;
	box-shadow: var(--shadow-lg);
}

.about-visual::before {
	position: absolute;
	right: 30px;
	top: 32px;
	width: 74px;
	height: 74px;
	border: 1px solid rgba(230, 188, 87, .38);
	border-radius: 50%;
	content: "";
}

.about-visual__panel p {
	margin-bottom: 38px;
	color: var(--gold-300);
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.about-visual__panel strong {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 750;
	letter-spacing: -.035em;
	line-height: 1;
}

.about-visual__stat {
	position: absolute;
	right: -32px;
	bottom: 34px;
	display: flex;
	width: 250px;
	align-items: center;
	gap: 18px;
	padding: 22px 24px;
	background: var(--gold-400);
	color: var(--navy-950);
	border-radius: 16px;
	box-shadow: var(--shadow-sm);
}

.about-visual__stat span {
	font-size: 2.8rem;
	font-weight: 900;
	letter-spacing: -.08em;
	line-height: 1;
}

.about-visual__stat p {
	margin: 0;
	font-size: .72rem;
	font-weight: 750;
	line-height: 1.35;
}

.about-copy h2 {
	margin-bottom: 28px;
}

.about-copy > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.04rem;
}

.about-copy blockquote,
.story-copy blockquote {
	margin: 31px 0;
	padding: 8px 0 8px 24px;
	border-left: 3px solid var(--gold-500);
	color: var(--navy-900);
	font-size: 1.03rem;
	font-weight: 700;
}

.reasons-section {
	background: var(--cream-200);
}

.reason-grid,
.value-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}

.reason-grid article,
.value-grid article {
	min-height: 265px;
	padding: 30px;
	background: var(--white);
	border: 1px solid rgba(8, 33, 57, .07);
	border-radius: var(--radius-sm);
}

.reason-grid article > span,
.value-grid article > span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	margin-bottom: 42px;
	background: var(--navy-900);
	color: var(--gold-300);
	border-radius: 10px;
	font-size: .72rem;
	font-weight: 850;
}

.reason-grid h3,
.value-grid h3 {
	margin-bottom: 13px;
}

.reason-grid p,
.value-grid p {
	margin: 0;
	color: var(--muted);
	font-size: .89rem;
}

.insights-section {
	background: var(--white);
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.post-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	background: var(--cream-100);
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	transition: transform .25s ease, box-shadow .25s ease;
}

.post-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-sm);
}

.post-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.52 / 1;
	background: var(--navy-900);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.post-card:hover .post-card__media img {
	transform: scale(1.035);
}

.post-card__placeholder {
	display: grid;
	height: 100%;
	place-items: center;
	color: var(--gold-300);
	font-weight: 800;
}

.post-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: 25px;
}

.post-card__meta {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 14px;
	color: var(--muted);
	font-size: .66rem;
	font-weight: 750;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.post-card__meta span {
	color: var(--navy-700);
}

.post-card h3 {
	margin-bottom: 13px;
	font-size: 1.28rem;
}

.post-card h3 a:hover {
	color: var(--navy-700);
}

.post-card__body > p {
	margin-bottom: 21px;
	color: var(--muted);
	font-size: .86rem;
}

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

.faq-section {
	background: var(--cream-100);
}

.faq-grid {
	display: grid;
	grid-template-columns: .7fr 1.3fr;
	align-items: start;
	gap: clamp(55px, 9vw, 120px);
}

.faq-intro {
	position: sticky;
	top: 30px;
}

.faq-intro h2 {
	margin-bottom: 22px;
}

.faq-intro > p:not(.eyebrow) {
	color: var(--muted);
}

.faq-list {
	border-top: 1px solid var(--line);
}

.faq-list details {
	border-bottom: 1px solid var(--line);
}

.faq-list summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 24px 0;
	color: var(--navy-900);
	cursor: pointer;
	font-size: 1.02rem;
	font-weight: 800;
	list-style: none;
}

.faq-list summary::-webkit-details-marker {
	display: none;
}

.faq-list summary span {
	display: grid;
	width: 30px;
	height: 30px;
	flex: 0 0 30px;
	place-items: center;
	background: var(--navy-900);
	color: var(--gold-300);
	border-radius: 50%;
	font-size: 1.1rem;
	font-weight: 400;
	transition: transform .2s ease;
}

.faq-list details[open] summary span {
	transform: rotate(45deg);
}

.faq-list details p {
	max-width: 660px;
	margin: -4px 48px 24px 0;
	color: var(--muted);
}

.final-cta {
	background: var(--navy-850);
	color: var(--white);
}

.final-cta__inner {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	align-items: center;
	gap: 70px;
	padding-top: 76px;
	padding-bottom: 76px;
}

.final-cta .eyebrow {
	margin-bottom: 12px;
}

.final-cta h2 {
	max-width: 760px;
	margin: 0;
	font-size: clamp(2rem, 4vw, 3.3rem);
}

.final-cta__actions {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 16px;
}

.final-cta__actions > a:last-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 4px;
}

.final-cta__actions > a:last-child span {
	color: rgba(255, 255, 255, .65);
	font-size: .72rem;
	font-weight: 750;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.final-cta__actions > a:last-child strong {
	color: var(--gold-300);
	font-size: 1.08rem;
}

/* Páginas internas */
.inner-hero {
	padding: 28px 0 82px;
}

.breadcrumb {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 9px;
	overflow: hidden;
	margin-bottom: 54px;
	color: rgba(255, 255, 255, .54);
	font-size: .72rem;
	font-weight: 650;
	white-space: nowrap;
}

.breadcrumb a:hover {
	color: var(--gold-300);
}

.breadcrumb span:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
}

.inner-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr .83fr;
	align-items: center;
	gap: clamp(58px, 8vw, 104px);
}

.inner-hero h1 {
	margin-bottom: 25px;
	font-size: clamp(2.8rem, 5.4vw, 5.1rem);
}

.inner-hero__lead {
	max-width: 690px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, .72);
	font-size: 1.13rem;
}

.service-availability {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 26px 0 0;
	color: rgba(255, 255, 255, .64);
	font-size: .75rem;
	font-weight: 700;
}

.service-availability span {
	width: 7px;
	height: 7px;
	background: var(--gold-400);
	border-radius: 50%;
}

.inner-hero__media {
	position: relative;
	overflow: visible;
}

.inner-hero__media > img {
	width: 100%;
	aspect-ratio: 1.15 / 1;
	object-fit: cover;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.media-stamp {
	position: absolute;
	right: -22px;
	bottom: -24px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 17px 21px;
	background: var(--gold-400);
	color: var(--navy-950);
	border-radius: 14px;
	box-shadow: var(--shadow-sm);
}

.media-stamp strong {
	font-size: 1.55rem;
	line-height: 1;
}

.media-stamp span {
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .07em;
	line-height: 1.25;
	text-transform: uppercase;
}

.service-intro-grid {
	display: grid;
	grid-template-columns: 1.05fr .7fr;
	align-items: start;
	gap: clamp(55px, 9vw, 120px);
}

.service-intro-grid h2 {
	margin-bottom: 26px;
}

.large-copy {
	color: var(--muted);
	font-size: 1.06rem;
}

.situation-card {
	padding: 34px;
	background: var(--white);
	border-top: 4px solid var(--gold-500);
	box-shadow: var(--shadow-sm);
}

.situation-card h2 {
	margin-bottom: 24px;
	font-size: 1.35rem;
}

.situation-card ul {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.situation-card li {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	color: var(--muted);
	font-size: .89rem;
}

.situation-card li span {
	display: grid;
	width: 23px;
	height: 23px;
	flex: 0 0 23px;
	place-items: center;
	background: var(--cream-200);
	color: var(--navy-700);
	border-radius: 50%;
	font-size: .65rem;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 68px;
}

.benefit-grid article {
	padding: 28px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
}

.benefit-grid article > span {
	display: inline-block;
	margin-bottom: 30px;
	color: var(--gold-500);
	font-size: .72rem;
	font-weight: 900;
}

.benefit-grid h3 {
	margin-bottom: 12px;
}

.benefit-grid p {
	margin: 0;
	color: var(--muted);
	font-size: .87rem;
}

.process-section,
.commitment-section {
	background: var(--navy-900);
	color: var(--white);
}

.process-grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	align-items: center;
	gap: clamp(60px, 9vw, 120px);
}

.process-grid h2 {
	margin-bottom: 22px;
}

.process-grid > div > p:not(.eyebrow) {
	margin-bottom: 30px;
	color: rgba(255, 255, 255, .66);
}

.process-list {
	margin: 0;
	padding: 0;
	border-top: 1px solid rgba(255, 255, 255, .14);
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 22px;
	padding: 25px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.process-list > li > span {
	color: var(--gold-300);
	font-size: .75rem;
	font-weight: 850;
}

.process-list strong {
	display: block;
	margin-bottom: 4px;
	font-size: 1.04rem;
}

.process-list p {
	margin: 0;
	color: rgba(255, 255, 255, .62);
	font-size: .86rem;
}

.faq-section--service {
	background: var(--white);
}

.related-services {
	background: var(--cream-200);
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.related-grid > a {
	position: relative;
	display: flex;
	min-height: 170px;
	flex-direction: column;
	justify-content: flex-end;
	padding: 28px;
	background: var(--white);
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	transition: transform .2s ease, border-color .2s ease;
}

.related-grid > a:hover {
	border-color: var(--gold-500);
	transform: translateY(-4px);
}

.related-grid a > span {
	margin-bottom: 8px;
	color: var(--navy-700);
	font-size: .65rem;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.related-grid a strong {
	max-width: 80%;
	font-size: 1.14rem;
	line-height: 1.25;
}

.related-grid a i {
	position: absolute;
	right: 26px;
	bottom: 24px;
	font-size: 1.25rem;
	font-style: normal;
}

/* Institucional */
.about-hero__grid,
.blog-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	align-items: end;
	gap: 90px;
}

.about-hero h1,
.blog-hero h1 {
	max-width: 880px;
	margin: 0;
}

.about-hero__grid > p,
.blog-hero__grid > p {
	margin-bottom: 8px;
	padding-left: 26px;
	border-left: 2px solid var(--gold-500);
	color: rgba(255, 255, 255, .68);
	font-size: 1.03rem;
}

.story-section {
	background: var(--white);
}

.story-grid {
	display: grid;
	grid-template-columns: .72fr 1.28fr;
	align-items: center;
	gap: clamp(65px, 10vw, 140px);
}

.story-number {
	display: grid;
	min-height: 420px;
	place-content: center;
	padding: 40px;
	background: var(--navy-900);
	color: var(--white);
	border-radius: 180px 24px 24px 24px;
	text-align: center;
}

.story-number span {
	color: var(--gold-300);
	font-size: clamp(5rem, 10vw, 8rem);
	font-weight: 900;
	letter-spacing: -.1em;
	line-height: .9;
}

.story-number sup {
	font-size: .34em;
	vertical-align: top;
}

.story-number p {
	margin: 22px 0 0;
	font-size: .74rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.story-copy h2 {
	margin-bottom: 27px;
}

.story-copy > p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.02rem;
}

.values-section {
	background: var(--cream-200);
}

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

.commitment-grid {
	display: grid;
	grid-template-columns: 1.05fr .7fr;
	align-items: center;
	gap: 110px;
}

.commitment-grid h2 {
	margin-bottom: 24px;
}

.commitment-grid > div > p:not(.eyebrow) {
	color: rgba(255, 255, 255, .68);
}

.commitment-grid ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.commitment-grid li {
	display: flex;
	min-height: 86px;
	align-items: center;
	gap: 12px;
	padding: 18px;
	background: rgba(255, 255, 255, .07);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 10px;
	font-size: .78rem;
	font-weight: 750;
}

.commitment-grid li span {
	color: var(--gold-300);
}

/* Blog e artigo */
.blog-listing,
.related-posts {
	background: var(--white);
}

.blog-listing__intro {
	margin-bottom: 46px;
}

.blog-listing__intro > p {
	margin-bottom: 9px;
	color: var(--navy-700);
	font-size: .7rem;
	font-weight: 850;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.blog-listing__intro h2 {
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.post-grid--listing .pagination {
	grid-column: 1 / -1;
}

.pagination,
.pagination .nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 38px;
}

.pagination .page-numbers {
	display: grid;
	min-width: 42px;
	height: 42px;
	place-items: center;
	padding: 0 10px;
	background: var(--cream-100);
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: .78rem;
	font-weight: 750;
}

.pagination .current,
.pagination a:hover {
	background: var(--navy-900);
	color: var(--white);
	border-color: var(--navy-900);
}

.article-header {
	padding: 28px 0 86px;
}

.article-header__inner {
	position: relative;
	z-index: 1;
}

.article-header h1 {
	max-width: 930px;
	margin-bottom: 23px;
	font-size: clamp(2.7rem, 5.3vw, 5rem);
}

.article-excerpt {
	max-width: 760px;
	margin-bottom: 26px;
	color: rgba(255, 255, 255, .7);
	font-size: 1.1rem;
}

.article-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255, 255, 255, .54);
	font-size: .73rem;
	font-weight: 650;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	align-items: start;
	gap: 70px;
	padding-top: 80px;
	padding-bottom: 100px;
}

.article-cover {
	overflow: hidden;
	margin-bottom: 48px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.article-cover img {
	width: 100%;
	max-height: 600px;
	object-fit: cover;
}

.article-content {
	max-width: 760px;
}

.article-content p,
.article-content li {
	color: #465966;
	font-size: 1.02rem;
}

.article-content p {
	margin-bottom: 23px;
}

.article-content h2 {
	margin: 52px 0 18px;
	font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.article-content h3 {
	margin: 38px 0 14px;
}

.article-content a {
	color: var(--navy-700);
	font-weight: 700;
	text-decoration: underline;
}

.article-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-top: 58px;
	padding: 32px;
	background: var(--navy-900);
	color: var(--white);
	border-radius: var(--radius-md);
}

.article-cta span {
	color: var(--gold-300);
	font-size: .67rem;
	font-weight: 850;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.article-cta h2 {
	margin: 8px 0 6px;
	font-size: 1.55rem;
}

.article-cta p {
	margin: 0;
	color: rgba(255, 255, 255, .63);
	font-size: .83rem;
}

.article-cta .button {
	flex: 0 0 auto;
}

.article-sidebar {
	position: sticky;
	top: 30px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.sidebar-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px;
	background: var(--navy-900);
	color: var(--white);
	border-radius: 16px;
}

.sidebar-card > span {
	margin-bottom: 22px;
	color: var(--gold-300);
	font-size: .67rem;
	font-weight: 850;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.sidebar-card h2 {
	margin-bottom: 22px;
	font-size: 1.45rem;
}

.sidebar-card > a {
	margin-top: 6px;
	color: var(--gold-300);
	font-size: 1.03rem;
	font-weight: 800;
}

.sidebar-card--links {
	background: var(--white);
	color: var(--navy-900);
	border: 1px solid var(--line);
}

.sidebar-card--links h2 {
	font-size: 1.13rem;
}

.sidebar-card--links > a {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 0;
	color: var(--navy-900);
	border-top: 1px solid var(--line);
	font-size: .78rem;
}

.sidebar-card--links > a span {
	color: var(--gold-500);
}

.archive-hero h1 {
	position: relative;
	z-index: 1;
	margin: 0;
}

.empty-state {
	grid-column: 1 / -1;
	padding: 40px;
	background: var(--cream-200);
	border-radius: var(--radius-sm);
	text-align: center;
}

.not-found {
	display: grid;
	min-height: 70vh;
	place-items: center;
	background: var(--cream-100);
}

.not-found__inner {
	max-width: 760px;
	padding-top: 90px;
	padding-bottom: 90px;
	text-align: center;
}

.not-found__code {
	margin: 0;
	color: var(--gold-500);
	font-size: clamp(5rem, 12vw, 9rem);
	font-weight: 900;
	letter-spacing: -.1em;
	line-height: .9;
}

.not-found .eyebrow,
.not-found .hero__actions {
	justify-content: center;
}

.not-found h1 {
	margin-bottom: 23px;
	font-size: clamp(2.5rem, 5vw, 4.7rem);
}

.not-found__inner > p:not(.eyebrow, .not-found__code) {
	color: var(--muted);
}

.not-found .button--primary {
	background: var(--gold-400);
}

/* Rodapé */
.site-footer {
	padding: 78px 0 26px;
	background: var(--navy-950);
	color: var(--white);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr .75fr;
	gap: 80px;
	padding-bottom: 65px;
}

.footer-logo {
	display: inline-flex;
	width: 215px;
	margin-bottom: 22px;
	padding: 11px 15px;
	background: var(--white);
	border-radius: 10px;
}

.footer-brand > p {
	max-width: 330px;
	color: rgba(255, 255, 255, .62);
	font-size: .88rem;
}

.footer-badge {
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
	padding: 7px 11px;
	background: rgba(230, 188, 87, .1);
	color: var(--gold-300);
	border: 1px solid rgba(230, 188, 87, .24);
	border-radius: 999px;
	font-size: .65rem;
	font-weight: 800;
	letter-spacing: .05em;
	text-transform: uppercase;
}

.site-footer h2 {
	margin-bottom: 25px;
	color: var(--gold-300);
	font-size: .73rem;
	font-weight: 850;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.footer-links,
.footer-contact {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links {
	display: flex;
	flex-direction: column;
	gap: 11px;
}

.footer-links a {
	color: rgba(255, 255, 255, .68);
	font-size: .82rem;
}

.footer-links a:hover {
	color: var(--white);
}

.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.footer-contact li {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.footer-contact span {
	color: rgba(255, 255, 255, .42);
	font-size: .62rem;
	font-weight: 750;
	letter-spacing: .07em;
	text-transform: uppercase;
}

.footer-contact a,
.footer-contact strong {
	font-size: .91rem;
}

.footer-contact a:hover {
	color: var(--gold-300);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, .1);
	color: rgba(255, 255, 255, .43);
	font-size: .68rem;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom nav {
	display: flex;
	gap: 22px;
}

.footer-bottom a:hover {
	color: var(--white);
}

.whatsapp-float {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 90;
	display: flex;
	align-items: center;
	padding: 12px 17px;
	background: var(--whatsapp);
	color: var(--white);
	border: 1px solid rgba(255, 255, 255, .22);
	border-radius: 999px;
	box-shadow: 0 12px 35px rgba(5, 66, 35, .27);
	font-size: .75rem;
	transition: background-color .2s ease, transform .2s ease;
}

.whatsapp-float:hover {
	background: var(--whatsapp-dark);
	transform: translateY(-2px);
}

.mobile-actions {
	display: none;
}

/* WordPress admin */
.admin-bar .site-header {
	margin-top: 0;
}

/* Responsividade */
@media (max-width: 1080px) {
	:root {
		--container: min(100% - 36px, 960px);
	}

	.site-nav {
		gap: 19px;
	}

	.site-brand {
		width: 190px;
	}

	.hero__grid {
		grid-template-columns: 1.12fr .88fr;
		gap: 48px;
	}

	.hero h1 {
		font-size: clamp(3rem, 5.5vw, 4.3rem);
	}

	.service-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.service-card--large {
		grid-column: span 1;
	}

	.service-card:not(.service-card--large) .service-card__media,
	.service-card__media {
		aspect-ratio: 1.45 / 1;
	}

	.reason-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.article-layout {
		grid-template-columns: minmax(0, 1fr) 270px;
		gap: 42px;
	}
}

@media (max-width: 900px) {
	:root {
		--container: min(100% - 32px, 760px);
	}

	.section {
		padding: 88px 0;
	}

	.header-top__inner {
		min-height: 38px;
	}

	.header-status span:last-child,
	.header-phones span,
	.header-phones a:first-child {
		display: none;
	}

	.header-main__inner {
		min-height: 78px;
	}

	.menu-toggle {
		display: flex;
	}

	.site-nav {
		position: fixed;
		inset: 116px 0 auto;
		display: none;
		max-height: calc(100vh - 116px);
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		overflow-y: auto;
		padding: 18px 20px 30px;
		background: var(--white);
		box-shadow: 0 18px 40px rgba(6, 23, 40, .16);
	}

	.site-nav.is-open {
		display: flex;
	}

	.site-nav > a:not(.button),
	.nav-services > summary {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 16px 4px;
		border-bottom: 1px solid var(--line);
	}

	.site-nav > a:not(.button)::after,
	.nav-services > summary::after {
		display: none;
	}

	.services-menu {
		position: static;
		width: 100%;
		grid-template-columns: 1fr;
		padding: 10px 0 16px;
		border: 0;
		box-shadow: none;
		transform: none;
	}

	.services-menu::before,
	.services-menu__eyebrow {
		display: none;
	}

	.services-menu a {
		padding: 11px 12px;
		background: var(--cream-100);
	}

	.button--header {
		margin-top: 16px;
	}

	.hero__grid {
		grid-template-columns: 1fr;
		gap: 64px;
		padding-top: 72px;
		padding-bottom: 82px;
	}

	.hero h1 {
		font-size: clamp(3rem, 8vw, 4.3rem);
	}

	.hero__content {
		max-width: 730px;
	}

	.hero__visual {
		max-width: 590px;
		margin-inline: auto;
	}

	.hero__image {
		aspect-ratio: 1.18 / 1;
		border-radius: 150px 28px 28px 28px;
	}

	.trust-strip__inner {
		grid-template-columns: 1fr;
		padding: 14px 0;
	}

	.trust-strip p {
		min-height: 48px;
		justify-content: flex-start;
		border: 0;
	}

	.trust-strip p:last-child {
		border: 0;
	}

	.section-heading--split,
	.final-cta__inner,
	.about-hero__grid,
	.blog-hero__grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.section-heading--split > p,
	.section-heading--split > .text-link {
		max-width: 600px;
	}

	.emergency-banner {
		grid-template-columns: auto 1fr;
	}

	.emergency-banner__actions {
		grid-column: 1 / -1;
		flex-direction: row;
		align-items: center;
		justify-content: flex-end;
	}

	.about-grid,
	.inner-hero__grid,
	.service-intro-grid,
	.process-grid,
	.story-grid,
	.commitment-grid {
		grid-template-columns: 1fr;
		gap: 65px;
	}

	.about-visual {
		width: calc(100% - 30px);
		max-width: 560px;
	}

	.post-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.post-grid > .post-card:last-of-type:nth-child(odd) {
		grid-column: 1 / -1;
	}

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

	.faq-intro {
		position: static;
		max-width: 650px;
	}

	.inner-hero {
		padding-bottom: 84px;
	}

	.inner-hero__media {
		max-width: 650px;
	}

	.inner-hero__media > img {
		aspect-ratio: 1.45 / 1;
	}

	.benefit-grid,
	.related-grid,
	.value-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.story-number {
		max-width: 560px;
	}

	.commitment-grid ul {
		max-width: 650px;
	}

	.article-layout {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}

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

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

@media (max-width: 600px) {
	:root {
		--container: calc(100% - 28px);
	}

	body {
		padding-bottom: 60px;
	}

	h1 {
		font-size: clamp(2.55rem, 12vw, 3.55rem);
	}

	h2 {
		font-size: clamp(1.9rem, 9vw, 2.65rem);
	}

	.section {
		padding: 72px 0;
	}

	.header-top__inner {
		font-size: .69rem;
	}

	.header-phones a:last-child {
		font-size: .68rem;
	}

	.site-brand {
		width: 172px;
	}

	.header-main__inner {
		min-height: 74px;
	}

	.site-nav {
		inset: 112px 0 auto;
		max-height: calc(100vh - 112px);
	}

	.hero__grid {
		min-height: 0;
		padding-top: 58px;
		padding-bottom: 72px;
	}

	.hero h1 {
		font-size: clamp(2.55rem, 12vw, 3.55rem);
	}

	.hero__lead {
		font-size: 1.02rem;
	}

	.hero__actions,
	.not-found .hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__actions .button {
		width: 100%;
	}

	.hero__proof {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.hero__proof li,
	.hero__proof li:first-child {
		min-height: 0;
		padding: 0 0 0 15px;
		border: 0;
		border-left: 2px solid rgba(230, 188, 87, .3);
	}

	.hero__proof span {
		margin-top: 3px;
	}

	.hero__visual {
		padding: 0 0 56px;
	}

	.hero__image {
		aspect-ratio: .95 / 1;
		border-radius: 100px 20px 20px 20px;
	}

	.availability-card {
		right: 12px;
		top: 12px;
		padding: 9px 11px 9px 9px;
	}

	.availability-card__icon {
		width: 36px;
		height: 36px;
	}

	.experience-card {
		left: 12px;
		width: calc(100% - 24px);
		padding: 17px 19px;
	}

	.experience-card__number {
		font-size: 2.6rem;
	}

	.service-grid,
	.post-grid,
	.reason-grid,
	.benefit-grid,
	.related-grid,
	.value-grid,
	.article-sidebar {
		grid-template-columns: 1fr;
	}

	.post-grid > .post-card:last-of-type:nth-child(odd) {
		grid-column: auto;
	}

	.service-card__media,
	.service-card:not(.service-card--large) .service-card__media {
		aspect-ratio: 1.4 / 1;
	}

	.emergency-banner {
		grid-template-columns: 1fr;
		justify-items: start;
		padding: 28px;
	}

	.emergency-banner__badge {
		width: 78px;
		height: 78px;
	}

	.emergency-banner__actions {
		grid-column: auto;
		width: 100%;
		flex-direction: column;
		align-items: stretch;
	}

	.about-visual {
		min-height: 450px;
		padding: 52px 28px 120px;
		border-radius: 120px 22px 22px 22px;
	}

	.about-visual__stat {
		right: -28px;
		width: 240px;
	}

	.faq-list summary {
		font-size: .92rem;
	}

	.final-cta__inner {
		gap: 38px;
		padding-top: 64px;
		padding-bottom: 64px;
	}

	.inner-hero {
		padding: 22px 0 74px;
	}

	.breadcrumb {
		margin-bottom: 40px;
	}

	.inner-hero h1 {
		font-size: clamp(2.45rem, 12vw, 3.6rem);
	}

	.inner-hero__media > img {
		aspect-ratio: 1 / .92;
		border-radius: 20px;
	}

	.media-stamp {
		right: 12px;
		bottom: -24px;
	}

	.situation-card {
		padding: 28px;
	}

	.process-list li {
		grid-template-columns: 48px 1fr;
	}

	.about-hero__grid > p,
	.blog-hero__grid > p {
		padding-left: 18px;
		font-size: .95rem;
	}

	.story-number {
		min-height: 350px;
		border-radius: 130px 22px 22px 22px;
	}

	.commitment-grid ul {
		grid-template-columns: 1fr;
	}

	.article-header {
		padding-bottom: 66px;
	}

	.article-header h1 {
		font-size: clamp(2.35rem, 11vw, 3.4rem);
	}

	.article-layout {
		gap: 52px;
		padding-top: 60px;
		padding-bottom: 72px;
	}

	.article-cover {
		margin-bottom: 38px;
		border-radius: 16px;
	}

	.article-cta {
		flex-direction: column;
		align-items: stretch;
	}

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

	.footer-brand {
		grid-column: auto;
	}

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

	.whatsapp-float {
		display: none;
	}

	.mobile-actions {
		position: fixed;
		inset: auto 0 0;
		z-index: 120;
		display: grid;
		height: 60px;
		grid-template-columns: 1fr 1fr;
		background: var(--white);
		box-shadow: 0 -8px 28px rgba(6, 23, 40, .15);
	}

	.mobile-actions a {
		display: grid;
		place-items: center;
		background: var(--navy-900);
		color: var(--white);
		font-size: .8rem;
		font-weight: 850;
	}

	.mobile-actions a:last-child {
		background: var(--whatsapp);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}
