@font-face {
	font-family: "Manrope";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/manrope-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Sora";
	font-style: normal;
	font-weight: 500 800;
	font-display: swap;
	src: url("../fonts/sora-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Libre Baskerville";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("../fonts/libre-baskerville-latin.woff2") format("woff2");
}

:root {
	--navy-950: #0d182c;
	--navy-900: #14233d;
	--navy-850: #192b49;
	--navy-700: #314461;
	--gold-600: #a9822d;
	--gold-500: #c39a3d;
	--gold-300: #e4ca8c;
	--cream-100: #f3eee3;
	--cream-50: #faf8f3;
	--paper: #fffdf9;
	--ink: #172033;
	--muted: #667085;
	--line: rgba(20, 35, 61, 0.15);
	--white-line: rgba(255, 255, 255, 0.18);
	--success: #21684e;
	--success-soft: #e7f1ed;
	--warning: #9c5c18;
	--warning-soft: #fff3df;
	--error: #a33a32;
	--display: "Sora", ui-sans-serif, sans-serif;
	--sans: "Manrope", ui-sans-serif, sans-serif;
	--serif: "Libre Baskerville", Georgia, serif;
	--shell: 1240px;
	--shadow: 0 24px 64px rgba(7, 18, 34, 0.13);
	--radius-lg: 28px;
	--radius-md: 18px;
	--radius-sm: 12px;
}

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 90px;
}

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

body.menu-open {
	overflow: hidden;
}

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

.icon {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.icon--small {
	width: 17px;
	height: 17px;
}

.whatsapp-icon {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
	fill: currentColor;
	stroke: none;
}

.icon.whatsapp-icon {
	fill: currentColor;
	stroke: none;
}

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

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
}

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

h1,
h2,
h3 {
	line-height: 1.16;
	letter-spacing: -0.035em;
}

h1,
h2 {
	font-family: var(--serif);
	font-weight: 500;
	letter-spacing: -0.045em;
}

h3 {
	font-family: var(--display);
	font-weight: 600;
}

h1 {
	font-size: clamp(2.55rem, 3.9vw, 4.15rem);
}

h2 {
	font-size: clamp(1.95rem, 2.8vw, 3.05rem);
}

h3 {
	font-size: clamp(1.16rem, 1.55vw, 1.48rem);
}

.shell {
	width: min(calc(100% - 48px), var(--shell));
	margin-inline: auto;
}

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

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

.skip-link:focus {
	transform: translateY(0);
}

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

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	border-bottom: 1px solid transparent;
	background: transparent;
	transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled,
.menu-open .site-header {
	border-bottom-color: rgba(228, 202, 140, 0.16);
	background: rgba(13, 24, 44, 0.97);
	backdrop-filter: blur(18px);
	box-shadow: 0 10px 35px rgba(6, 12, 24, 0.2);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 270px 1fr auto;
	align-items: center;
	min-height: 92px;
	gap: 28px;
}

.brand {
	display: inline-flex;
	align-items: center;
	width: 260px;
	height: 80px;
	overflow: visible;
}

.brand img {
	width: 260px;
	height: auto;
}

.site-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(22px, 3vw, 42px);
}

.site-navigation a {
	position: relative;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.84rem;
	font-weight: 600;
	letter-spacing: 0.015em;
	text-decoration: none;
}

.site-navigation a::after {
	position: absolute;
	left: 0;
	right: 100%;
	bottom: -9px;
	height: 1px;
	background: var(--gold-500);
	content: "";
	transition: right 180ms ease;
}

.site-navigation a:hover::after {
	right: 0;
}

.site-navigation__whatsapp {
	display: none;
}

.header-contact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 44px;
	padding: 10px 18px;
	border-radius: 10px;
	border: 1px solid #1f8d61;
	background: #1f8d61;
	color: white;
	font-size: 0.82rem;
	font-weight: 650;
	letter-spacing: 0.025em;
	text-decoration: none;
	transition: background-color 180ms ease, color 180ms ease;
}

.header-contact:hover {
	border-color: #18764f;
	background: #18764f;
	color: white;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 11px;
	border: 0;
	background: transparent;
	color: white;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	border-radius: 2px;
	background: currentColor;
	transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
	transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 54px;
	padding: 14px 24px;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	font-size: 0.91rem;
	font-weight: 700;
	letter-spacing: 0.015em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

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

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

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

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

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

.button--whatsapp {
	border-color: #1f8d61;
	background: #1f8d61;
	box-shadow: 0 10px 26px rgba(7, 37, 26, 0.2);
	color: white;
}

.button--whatsapp:hover {
	border-color: #18764f;
	background: #18764f;
	color: white;
}

.button--outline-light {
	border-color: rgba(255, 255, 255, 0.42);
	background: transparent;
	color: white;
}

.button--outline-light:hover {
	border-color: white;
	background: white;
	color: var(--navy-950);
}

.button--text {
	min-height: 44px;
	padding-inline: 4px;
	background: transparent;
	color: var(--navy-900);
}

.button--text:hover {
	color: var(--gold-600);
}

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.88rem;
	font-weight: 650;
	text-underline-offset: 7px;
}

.text-link span {
	color: var(--gold-300);
	font-size: 1.2em;
}

.text-link--dark {
	color: var(--navy-900);
}

.section-index {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	color: var(--gold-600);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

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

.hero-section {
	position: relative;
	padding-top: 92px;
	overflow: hidden;
	background-color: var(--navy-900);
	background-image:
		linear-gradient(90deg, rgba(13, 24, 44, 0.99) 0%, rgba(13, 24, 44, 0.94) 34%, rgba(13, 24, 44, 0.76) 56%, rgba(13, 24, 44, 0.25) 100%),
		linear-gradient(180deg, rgba(13, 24, 44, 0.06) 58%, rgba(13, 24, 44, 0.58) 100%),
		url("../images/hero-obra-ampla.webp");
	background-position: center, center, center 78%;
	background-repeat: no-repeat;
	background-size: cover, cover, 104% auto;
	color: white;
}

.hero-section__grid {
	display: grid;
	grid-template-columns: minmax(0, 920px);
	align-items: center;
	min-height: 620px;
	padding-block: 76px 118px;
}

.hero-section__copy {
	position: relative;
	z-index: 2;
}

.hero-section h1 {
	max-width: 920px;
	margin-bottom: 24px;
	color: var(--paper);
	font-size: clamp(2.45rem, 3.25vw, 3.45rem);
}

.hero-title__line {
	display: block;
	font-size: 0.9em;
	white-space: nowrap;
}

.hero-title__line--primary {
	color: var(--paper);
}

.hero-title__line--accent {
	color: var(--gold-300);
}

.hero-section__lead {
	max-width: 800px;
	margin-bottom: 18px;
	color: white;
	font-size: clamp(1.05rem, 1.4vw, 1.24rem);
	line-height: 1.45;
}

.hero-section__text {
	max-width: 620px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 0.98rem;
}

.hero-section__text .hero-section__name {
	color: var(--gold-300);
	font-weight: 700;
}

.hero-section__actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-bottom: 20px;
}

.hero-section__note {
	max-width: 600px;
	margin: 0;
	color: rgba(255, 255, 255, 0.43);
	font-size: 0.75rem;
}

.credential-line {
	border-top: 0;
	background: var(--cream-100);
	box-shadow: inset 0 -1px rgba(20, 35, 61, 0.08);
}

.credential-line__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
}

.credential-line span {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 27px clamp(18px, 3vw, 38px);
	border-right: 1px solid rgba(20, 35, 61, 0.12);
	color: var(--navy-700);
	font-size: 0.76rem;
	font-weight: 650;
	letter-spacing: 0.025em;
	text-align: center;
}

.credential-line span:last-child {
	border-right: 0;
}

.credential-line span .icon {
	flex: 0 0 auto;
	color: var(--gold-600);
}

.credential-line span b {
	font-weight: 650;
}

.calculator-section {
	position: relative;
	overflow: hidden;
	padding: 112px 0 124px;
	background: var(--navy-950);
	color: white;
}

.calculator-section::after {
	position: absolute;
	top: 70px;
	right: -70px;
	width: 390px;
	height: 430px;
	background: url("../images/logo-simbolo.png") center / contain no-repeat;
	content: "";
	opacity: 0.035;
	pointer-events: none;
}

.calculator-section__intro {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 0.55fr;
	align-items: end;
	gap: 72px;
	margin-bottom: 34px;
}

.calculator-section__intro h2 {
	max-width: 830px;
	margin-bottom: 0;
	color: var(--paper);
}

.calculator-section__intro > p {
	margin-bottom: 8px;
	color: rgba(255, 255, 255, 0.56);
}

.calculator-shell {
	position: relative;
	z-index: 2;
}

.calculator-card {
	min-height: 0;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--paper);
	color: var(--ink);
	box-shadow: 0 24px 60px rgba(4, 10, 21, 0.18);
}

.calculator-progress {
	padding: 22px clamp(24px, 4vw, 56px) 18px;
	border-bottom: 1px solid var(--line);
	background: #f6f3ed;
}

.calculator-progress__bar {
	position: relative;
	height: 2px;
	margin-bottom: 16px;
	background: rgba(20, 35, 61, 0.12);
}

.calculator-progress__bar span {
	display: block;
	width: 25%;
	height: 100%;
	background: var(--gold-500);
	transition: width 300ms ease;
}

.calculator-progress ol {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 0;
	list-style: none;
}

.calculator-progress li {
	display: flex;
	align-items: baseline;
	gap: 9px;
	color: #9a9da5;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.calculator-progress li span {
	font-family: var(--display);
	font-size: 0.9rem;
}

.calculator-progress li.is-active,
.calculator-progress li.is-complete {
	color: var(--navy-900);
}

.calculator-progress li.is-active span {
	color: var(--gold-600);
}

.calculator-step {
	padding: clamp(32px, 4vw, 50px);
}

.calculator-step[hidden] {
	display: none !important;
}

.calculator-step.is-entering {
	animation: calculator-enter 350ms ease both;
}

@keyframes calculator-enter {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: translateY(0); }
}

.calculator-step__heading {
	max-width: 680px;
	margin-bottom: 30px;
}

.calculator-step__heading > p,
.contact-step__intro > p,
.result-heading p {
	margin-bottom: 9px;
	color: var(--gold-600);
	font-size: 0.73rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.calculator-step__heading h3,
.contact-step__intro h3,
.result-heading h3 {
	margin-bottom: 10px;
	color: var(--navy-900);
	font-size: clamp(1.55rem, 2.2vw, 2.1rem);
}

.calculator-step__heading > span,
.contact-step__intro > span {
	display: block;
	color: var(--muted);
}

.field-grid {
	display: grid;
	gap: 18px 22px;
}

.field-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field--full {
	grid-column: 1 / -1;
}

.field.is-hidden,
.field--honeypot {
	display: none;
}

.field label,
.area-row label > span {
	display: block;
	margin-bottom: 8px;
	color: var(--navy-700);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.025em;
}

.field label small {
	color: #9297a1;
	font-weight: 500;
}

.field input,
.field select,
.area-row input,
.area-row select {
	width: 100%;
	height: 50px;
	padding: 0 14px;
	border: 1px solid #cdd1d8;
	border-radius: 10px;
	background: #fdfcf9;
	color: var(--ink);
	transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field input:focus,
.field select:focus,
.area-row input:focus,
.area-row select:focus {
	border-color: var(--gold-500);
	box-shadow: 0 0 0 3px rgba(195, 154, 61, 0.14);
	outline: none;
}

.field input.is-invalid,
.field select.is-invalid,
.area-row input.is-invalid {
	border-color: var(--error);
}

.field-error {
	display: block;
	margin-top: 5px;
	color: var(--error);
	font-size: 0.74rem;
}

.field-error:empty {
	display: none;
}

.field-error--block {
	margin-top: 8px;
}

.calculator-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-top: 28px;
}

.calculator-actions--end {
	justify-content: flex-end;
}

.area-table {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
}

.area-table__head,
.area-row {
	display: grid;
	grid-template-columns: 1.05fr 1.3fr 0.8fr;
	align-items: center;
	gap: 28px;
}

.area-table__head {
	padding: 11px 18px;
	background: var(--navy-900);
	color: white;
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.area-row {
	padding: 16px 18px;
	border: 0;
	border-top: 1px solid var(--line);
	background: #fff;
}

.area-row strong,
.area-row small {
	display: block;
}

.area-row strong {
	color: var(--navy-900);
	font-family: var(--display);
	font-size: 1.17rem;
	line-height: 1.25;
}

.area-row small {
	margin-top: 3px;
	color: var(--muted);
	font-size: 0.72rem;
}

.area-row label > span {
	display: none;
}

.area-row label > .area-input {
	position: relative;
	display: block;
	margin: 0;
	color: var(--ink);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: normal;
}

.area-input input {
	padding-right: 58px;
}

.area-input__unit {
	position: absolute;
	top: 50%;
	right: 36px;
	color: var(--navy-700);
	font-size: 0.78rem;
	font-weight: 750;
	pointer-events: none;
	transform: translateY(-50%);
}

.area-row__empty {
	min-height: 1px;
}

.area-row p {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
}

.area-row--compact {
	background: #fbf9f4;
}

.calculator-note {
	margin-top: 18px;
	padding: 15px 18px;
	border-left: 3px solid var(--gold-500);
	border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
	background: #f6f1e7;
}

.calculator-note strong {
	display: block;
	margin-bottom: 4px;
	color: var(--navy-900);
	font-family: var(--display);
	font-size: 1.05rem;
}

.calculator-note p {
	margin: 0;
	color: var(--muted);
	font-size: 0.82rem;
}

.contact-step {
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: clamp(42px, 6vw, 74px);
}

.contact-step__intro {
	padding-right: 20px;
}

.contact-step__intro ul {
	padding: 20px 0 0;
	margin: 24px 0 0;
	border-top: 1px solid var(--line);
	list-style: none;
}

.contact-step__intro li {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	color: var(--navy-700);
	font-size: 0.88rem;
}

.contact-step__intro li .icon {
	width: 18px;
	height: 18px;
	flex: 0 0 auto;
	color: var(--gold-600);
}

.contact-step__fields .field + .field {
	margin-top: 12px;
}

.calculator-contact-form .field p {
	margin: 0;
}

.calculator-contact-form .wpcf7-form-control-wrap {
	display: block;
}

.calculator-contact-form .wpcf7-not-valid {
	border-color: var(--error);
}

.calculator-contact-form .wpcf7-not-valid-tip {
	display: block;
	margin-top: 5px;
	color: var(--error);
	font-size: 0.74rem;
}

.contact-step__fields .wpcf7 form .wpcf7-response-output {
	padding: 11px 14px;
	border: 1px solid rgba(163, 58, 50, 0.28);
	border-radius: 10px;
	margin: 16px 0 0;
	background: rgba(163, 58, 50, 0.06);
	color: var(--error);
	font-size: 0.78rem;
}

.contact-step__fields .wpcf7 form.sent .wpcf7-response-output {
	border-color: rgba(33, 104, 78, 0.28);
	background: var(--success-soft);
	color: var(--success);
}

.calculator-contact-form .wpcf7-submit:disabled {
	cursor: not-allowed;
	opacity: 0.48;
}

.calculator-contact-form .wpcf7-spinner {
	margin: 0 0 0 8px;
}

.consent-field {
	margin-top: 18px;
	color: var(--muted);
	font-size: 0.76rem;
}

.consent-field .wpcf7-list-item {
	margin: 0;
}

.consent-field label {
	display: grid;
	grid-template-columns: 18px 1fr;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.consent-field input[type="checkbox"] {
	width: 17px;
	height: 17px;
	margin: 0;
	accent-color: var(--navy-900);
}

.consent-field .wpcf7-list-item-label {
	line-height: 1.55;
}

.terms-details {
	margin-top: 12px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.terms-details summary,
.memory-details summary {
	padding: 12px 0;
	cursor: pointer;
	color: var(--navy-700);
	font-size: 0.78rem;
	font-weight: 700;
}

.terms-details p {
	color: var(--muted);
	font-size: 0.74rem;
}

.calculator-result {
	min-height: 600px;
}

.result-loading {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 430px;
}

.result-loading[hidden],
[data-result-content][hidden] {
	display: none !important;
}

.result-loading span {
	width: 42px;
	height: 42px;
	border: 2px solid rgba(20, 35, 61, 0.15);
	border-top-color: var(--gold-500);
	border-radius: 50%;
	animation: spin 800ms linear infinite;
}

.result-loading p {
	margin: 18px 0 0;
	color: var(--muted);
	font-size: 0.85rem;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

.result-overview__card > * {
	position: relative;
	z-index: 2;
}

.result-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 30px;
}

.result-heading h3 {
	margin-bottom: 0;
}

.result-overview {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1fr;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	box-shadow: 0 14px 34px rgba(18, 35, 61, 0.08);
}

.result-overview__card {
	position: relative;
	display: flex;
	min-width: 0;
	min-height: 224px;
	padding: clamp(22px, 3vw, 34px);
	overflow: hidden;
	border-right: 1px solid var(--line);
	flex-direction: column;
	isolation: isolate;
}

.result-overview__card::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: url("../images/logo-simbolo-pattern-spaced.png");
	background-position: top left;
	background-repeat: repeat;
	background-size: 78px auto;
	content: "";
	filter: grayscale(1) saturate(0) brightness(0.68);
	opacity: 0.06;
	pointer-events: none;
}

.result-overview__card:last-child {
	border-right: 0;
}

.result-overview__card > span,
.result-overview__card > small,
.result-overview__card > strong,
.result-overview__card > em {
	display: block;
}

.result-overview__card > span {
	color: var(--navy-900);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.075em;
	line-height: 1.35;
	text-transform: uppercase;
}

.result-overview__card > small {
	min-height: 38px;
	margin-top: 5px;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.4;
}

.result-overview__card > strong {
	margin-top: auto;
	color: var(--navy-900);
	font-family: var(--display);
	font-size: clamp(1.85rem, 3.25vw, 3.15rem);
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1;
}

.result-overview__card > em {
	margin-top: 11px;
	color: var(--muted);
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 650;
}

.result-overview__card > em b {
	color: inherit;
	font-weight: 800;
}

.result-overview__card--charged {
	border-color: rgba(255, 255, 255, 0.12);
	background: #203653;
}

.result-overview__card--charged::before {
	filter: grayscale(1) saturate(0) brightness(1.8);
	opacity: 0.075;
}

.result-overview__card--charged > span {
	color: white;
}

.result-overview__card--charged > small,
.result-overview__card--charged > em {
	color: rgba(255, 255, 255, 0.58);
}

.result-overview__card--charged > strong {
	color: var(--gold-300);
}

.result-overview__card--reduction {
	background: #fbf5eb;
}

.result-overview__card--reduction > strong,
.result-overview__card--reduction > em {
	color: var(--warning);
}

.result-overview__card--reduction > em {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 18px;
	padding-top: 12px;
	border-top: 1px solid rgba(156, 92, 24, 0.22);
	font-size: 0.73rem;
	letter-spacing: 0.035em;
	line-height: 1.2;
	text-transform: uppercase;
}

.result-overview__card--reduction > em b {
	color: var(--warning);
	font-family: var(--display);
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 0.9;
}

.result-overview__card--due {
	background: #edf5f1;
}

.result-overview__card--due > strong {
	color: var(--success);
}

.result-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 26px;
	border-left: 1px solid var(--line);
	border-top: 1px solid var(--line);
}

.result-grid > div {
	min-height: 94px;
	padding: 16px 18px;
	border-right: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.result-grid span,
.result-grid strong {
	display: block;
}

.result-grid span {
	margin-bottom: 7px;
	color: var(--muted);
	font-size: 0.68rem;
}

.result-grid strong {
	color: var(--navy-900);
	font-family: var(--display);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.15;
}

.result-grid__total {
	background: var(--success-soft);
}

.result-grid__total strong {
	color: var(--success);
	font-size: 1.25rem;
}

.result-grid__total small {
	display: block;
	margin-top: 6px;
	color: var(--warning);
	font-size: 0.7rem;
}

.result-contact {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-top: 28px;
	padding: 28px;
	background: #eee8dc;
	border-radius: var(--radius-md);
}

.result-contact strong {
	display: block;
	color: var(--navy-900);
	font-family: var(--display);
	font-size: 1.35rem;
	line-height: 1.2;
}

.result-contact p {
	max-width: 600px;
	margin: 5px 0 0;
	color: var(--muted);
	font-size: 0.8rem;
}

.result-contact .button {
	flex: 0 0 auto;
}

.memory-details {
	margin-top: 24px;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.memory-details summary {
	padding: 18px 0;
	font-size: 0.84rem;
}

.memory-table-wrap {
	position: relative;
	overflow-x: auto;
	margin-bottom: 26px;
	isolation: isolate;
}

.memory-details[open] .memory-table-wrap::before {
	position: absolute;
	inset: 0;
	z-index: 5;
	background-image: url("../images/logo-simbolo-pattern-spaced.png");
	background-position: top left;
	background-repeat: repeat;
	background-size: 78px auto;
	content: "";
	filter: grayscale(1) saturate(0) brightness(0.68);
	opacity: 0.045;
	pointer-events: none;
}
}

.memory-table {
	width: 100%;
	min-width: 850px;
	border-collapse: collapse;
	font-size: 0.72rem;
}

.memory-table th,
.memory-table td {
	padding: 10px 12px;
	border: 1px solid var(--line);
	text-align: right;
}

.memory-table th {
	background: var(--navy-900);
	color: white;
	font-weight: 650;
}

.memory-table td:first-child,
.memory-table th:first-child {
	position: sticky;
	left: 0;
	z-index: 1;
	text-align: left;
}

.memory-table td:first-child {
	background: #f7f3eb;
	font-weight: 650;
}

.memory-table .is-total td {
	background: var(--success-soft);
	font-weight: 750;
}

.memory-table--codes {
	min-width: 520px;
	max-width: 680px;
}

.memory-table caption {
	margin-bottom: 8px;
	color: var(--navy-700);
	font-size: 0.74rem;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
}

.result-disclaimer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 22px;
}

.result-disclaimer p {
	margin: 0;
	padding: 18px;
	border-left: 2px solid var(--gold-500);
	background: #f7f4ed;
	color: var(--muted);
	font-size: 0.72rem;
}

.legal-thesis {
	padding: 116px 0;
	background: var(--cream-100);
}

.legal-thesis__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
	align-items: center;
	gap: clamp(64px, 9vw, 124px);
}

.legal-thesis__statement {
	padding-left: 30px;
	border-left: 2px solid var(--gold-500);
}

.legal-thesis__statement h2 {
	max-width: 760px;
	margin: 0;
	color: var(--navy-900);
}

.legal-thesis__copy {
	max-width: 610px;
	padding: 0;
}

.legal-thesis__copy p {
	color: #536074;
}

.legal-thesis__copy .text-link {
	margin-top: 14px;
}

.scope-section {
	padding: 128px 0;
	background: var(--paper);
}

.section-heading--split {
	display: grid;
	grid-template-columns: 1fr 0.55fr;
	align-items: end;
	gap: 80px;
	margin-bottom: 64px;
}

.section-heading h2 {
	max-width: 820px;
	margin: 0;
	color: var(--navy-900);
}

.section-heading > p {
	margin: 0 0 8px;
	color: var(--muted);
}

.analysis-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0;
	margin: 0;
	gap: 20px;
	list-style: none;
}

.analysis-list li {
	min-height: 340px;
	padding: 32px 28px;
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: #fff;
	box-shadow: 0 10px 30px rgba(18, 35, 61, 0.035);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.analysis-list li:hover {
	border-color: rgba(195, 154, 61, 0.4);
	box-shadow: 0 16px 38px rgba(18, 35, 61, 0.07);
	transform: translateY(-3px);
}

.analysis-list__meta {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 34px;
}

.analysis-list__meta .icon {
	width: 25px;
	height: 25px;
	color: var(--navy-700);
}

.analysis-list h3 {
	margin-bottom: 14px;
	color: var(--navy-900);
	font-size: 1.24rem;
}

.analysis-list p {
	margin: 0;
	color: var(--muted);
	font-size: 0.86rem;
}

.process-section {
	padding: 124px 0;
	background-color: var(--navy-900);
	background-image:
		linear-gradient(90deg, rgba(20, 35, 61, 0.9) 0%, rgba(20, 35, 61, 0.88) 48%, rgba(20, 35, 61, 0.94) 100%),
		linear-gradient(180deg, rgba(13, 24, 44, 0.14) 0%, rgba(13, 24, 44, 0.52) 100%),
		url("../images/projeto-e-obra.webp");
	background-position: center, center, center 66%;
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
}

.process-section__grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: clamp(72px, 9vw, 130px);
}

.process-section__intro {
	position: sticky;
	top: 130px;
	align-self: start;
}

.process-section__intro h2 {
	margin-bottom: 24px;
	color: var(--paper);
}

.process-section__intro > p:not(.section-index) {
	margin-bottom: 32px;
	color: rgba(255, 255, 255, 0.58);
}

.process-list {
	padding: 0;
	margin: 0;
	border-top: 1px solid var(--white-line);
	list-style: none;
}

.process-list li {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 26px;
	padding: 34px 0;
	border-bottom: 1px solid var(--white-line);
}

.process-list__marker {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
}

.process-list__marker span {
	color: var(--gold-300);
	font-family: var(--display);
	font-size: 1rem;
}

.process-list__marker .icon {
	width: 27px;
	height: 27px;
	color: rgba(228, 202, 140, 0.82);
	stroke-width: 1.55;
}

.process-list h3 {
	margin-bottom: 12px;
	color: white;
	font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.process-list p {
	max-width: 650px;
	margin: 0;
	color: rgba(255, 255, 255, 0.55);
}

.about-section {
	padding: 124px 0;
	background: var(--cream-50);
}

.about-section__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.74fr) 1.26fr;
	align-items: center;
	gap: clamp(58px, 9vw, 120px);
}

.about-section__image {
	position: relative;
	padding: 14px 14px 0 0;
}

.about-section__image::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 28px;
	left: 42px;
	border-radius: 30px;
	background: var(--navy-900);
	content: "";
}

.about-section__image > img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: clamp(420px, 34vw, 450px);
	object-fit: cover;
	object-position: center 18%;
	border-radius: var(--radius-lg);
	filter: saturate(0.88);
}

.about-section__brand-mark {
	position: absolute;
	right: -22px;
	top: 42px;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 136px;
	height: 144px;
	padding: 20px;
	border: 1px solid rgba(228, 202, 140, 0.42);
	border-radius: 22px;
	background: rgba(13, 24, 44, 0.96);
	box-shadow: 0 22px 46px rgba(7, 18, 34, 0.22);
}

.about-section__brand-mark img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-section__copy h2 {
	max-width: 760px;
	margin-bottom: 30px;
	color: var(--navy-900);
}

.about-section__copy > p:not(.section-index) {
	max-width: 710px;
	color: var(--muted);
}

.signature-block {
	padding-top: 24px;
	margin-top: 34px;
	border-top: 1px solid var(--line);
}

.signature-block strong,
.signature-block span {
	display: block;
}

.signature-block strong {
	color: var(--navy-900);
	font-family: var(--serif);
	font-size: 1.25rem;
	font-weight: 500;
}

.signature-block span {
	color: var(--muted);
	font-size: 0.78rem;
}

.faq-section {
	padding: 120px 0;
	border-top: 1px solid var(--line);
	background: var(--paper);
}

.faq-section__grid {
	display: grid;
	grid-template-columns: 0.72fr 1.28fr;
	gap: clamp(58px, 8vw, 110px);
}

.faq-section__intro {
	position: sticky;
	top: 130px;
	align-self: start;
}

.faq-section__intro h2 {
	margin-bottom: 24px;
	color: var(--navy-900);
}

.faq-section__intro > p:not(.section-index) {
	color: var(--muted);
}

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

.faq-list details {
	border: 1px solid var(--line);
	border-radius: var(--radius-md);
	background: #fff;
}

.faq-list summary {
	position: relative;
	padding: 22px 62px 22px 24px;
	cursor: pointer;
	color: var(--navy-900);
	font-family: var(--sans);
	font-size: clamp(1rem, 1.4vw, 1.14rem);
	font-weight: 600;
	line-height: 1.25;
	list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
	position: absolute;
	top: 50%;
	right: 24px;
	width: 20px;
	height: 1px;
	background: var(--gold-600);
	content: "";
	transition: transform 180ms ease;
}

.faq-list summary::after {
	transform: rotate(90deg);
}

.faq-list details[open] summary::after {
	transform: rotate(0);
}

.faq-list details p {
	max-width: 720px;
	padding: 0 60px 24px 24px;
	margin: 0;
	color: var(--muted);
}

.closing-section {
	position: relative;
	padding: 110px 0;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(8, 18, 33, 0.96) 0%, rgba(8, 18, 33, 0.9) 46%, rgba(8, 18, 33, 0.73) 100%),
		url("../images/obra-concluida.webp") center 58% / cover no-repeat;
	color: white;
}

.closing-section__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: end;
	gap: 100px;
}

.closing-section h2 {
	max-width: 760px;
	margin-bottom: 0;
	color: var(--paper);
}

.closing-section__grid > div:last-child > p {
	color: rgba(255, 255, 255, 0.76);
}

/* Destaques pontuais para facilitar a leitura dos textos. */
.hero-section__text strong,
.calculator-section__intro > p strong,
.legal-thesis__copy p strong,
.section-heading > p strong,
.process-section__intro > p strong,
.process-list p strong,
.about-section__copy > p strong,
.faq-section__intro > p strong,
.closing-section__grid > div:last-child > p strong {
	font-weight: 650;
}

.legal-thesis__copy p strong,
.section-heading > p strong,
.about-section__copy > p strong,
.faq-section__intro > p strong {
	color: var(--navy-900);
}

.hero-section__text strong,
.calculator-section__intro > p strong,
.process-section__intro > p strong,
.process-list p strong,
.closing-section__grid > div:last-child > p strong {
	color: rgba(255, 255, 255, 0.94);
}

.closing-section__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 28px;
}

.site-footer {
	padding: 74px 0 28px;
	background: #091221;
	color: rgba(255, 255, 255, 0.58);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1.1fr 0.62fr 1.25fr 0.92fr;
	gap: clamp(38px, 5vw, 72px);
	padding-bottom: 56px;
}

.site-footer__brand img {
	width: 174px;
	height: auto;
	margin-bottom: 14px;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 174px;
	gap: 9px;
}

.site-footer__socials a,
.site-footer__main .site-footer__socials a {
	display: grid;
	width: 34px;
	height: 34px;
	margin: 0;
	place-items: center;
	border: 1px solid rgba(228, 202, 140, 0.34);
	border-radius: 50%;
	color: var(--gold-300);
	transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.site-footer__socials a:hover {
	border-color: var(--gold-300);
	background: rgba(228, 202, 140, 0.09);
	color: var(--gold-300);
	transform: translateY(-2px);
}

.site-footer__socials .social-icon {
	width: 16px;
	height: 16px;
	fill: currentColor;
}

.site-footer__socials .social-icon--stroke {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.site-footer__socials .social-icon__dot {
	fill: currentColor;
	stroke: none;
}

.site-footer__main a {
	display: block;
	margin-bottom: 7px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.82rem;
	text-decoration: none;
	word-break: break-word;
}

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

.site-footer__nav a {
	width: fit-content;
}

.site-footer__item,
.site-footer__main a.site-footer__item {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	margin: 0 0 13px;
	color: rgba(255, 255, 255, 0.66);
	font-size: 0.8rem;
	line-height: 1.55;
}

.site-footer__item .icon {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex: 0 0 auto;
	color: var(--gold-300);
}

.site-footer__item span {
	min-width: 0;
	word-break: break-word;
}

.site-footer__label {
	margin-bottom: 18px !important;
	color: var(--gold-300);
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.site-footer__legal {
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.site-footer__legal p {
	margin: 0;
	font-size: 0.7rem;
}

.floating-contact {
	position: fixed;
	right: 22px;
	bottom: 22px;
	z-index: 800;
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 16px;
	border-radius: 14px;
	background: #1f8d61;
	box-shadow: 0 12px 32px rgba(7, 37, 26, 0.28);
	color: white;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none;
	transition: transform 160ms ease, background-color 160ms ease;
}

.floating-contact:hover {
	background: #18764f;
	transform: translateY(-2px);
}

.floating-contact svg {
	width: 21px;
	height: 21px;
	fill: currentColor;
}

.basic-page {
	min-height: 70vh;
	padding-block: 150px 80px;
}

@media (max-width: 1080px) {
	.site-header__inner {
		grid-template-columns: 230px 1fr auto;
		gap: 20px;
	}

	.site-navigation {
		gap: 22px;
	}

	.calculator-section__intro,
	.section-heading--split {
		grid-template-columns: 1fr 0.55fr;
		gap: 50px;
	}

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

	.result-contact {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 880px) {
	.shell {
		width: min(calc(100% - 36px), var(--shell));
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		min-height: 88px;
	}

	.brand,
	.brand img {
		width: 214px;
	}

	.brand {
		height: 66px;
	}

	.menu-toggle {
		display: block;
	}

	.site-navigation {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		height: calc(100dvh - 88px);
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		flex-direction: column;
		gap: 0;
		padding: 36px 24px;
		background: var(--navy-950);
		overflow-y: auto;
		opacity: 0;
		pointer-events: none;
		transform: translateY(-12px);
		transition: opacity 180ms ease, transform 180ms ease;
	}

	.site-navigation.is-open {
		opacity: 1;
		pointer-events: auto;
		transform: translateY(0);
	}

	.site-navigation a {
		width: 100%;
		padding: 15px 0;
		border-bottom: 1px solid var(--white-line);
		font-family: var(--sans);
		font-size: 1rem;
		font-weight: 600;
		letter-spacing: 0.01em;
		text-transform: none;
	}

	.site-navigation .site-navigation__whatsapp {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: fit-content;
		min-height: 44px;
		gap: 9px;
		margin-top: 22px;
		padding: 10px 16px;
		border: 1px solid #1f8d61;
		border-radius: 10px;
		background: #1f8d61;
		color: white;
		font-size: 0.86rem;
	}

	.site-navigation .site-navigation__whatsapp::after {
		display: none;
	}

	.site-navigation .site-navigation__whatsapp:hover {
		border-color: #18764f;
		background: #18764f;
		color: white;
	}

	.header-contact {
		display: none;
	}

	.hero-section {
		padding-top: 88px;
		background-image:
			linear-gradient(90deg, rgba(13, 24, 44, 0.99) 0%, rgba(13, 24, 44, 0.94) 62%, rgba(13, 24, 44, 0.64) 100%),
			linear-gradient(180deg, rgba(13, 24, 44, 0.08) 58%, rgba(13, 24, 44, 0.64) 100%),
			url("../images/hero-obra-ampla.webp");
		background-position: center, center, 64% 78%;
		background-size: cover, cover, cover;
	}

	.hero-section__grid {
		grid-template-columns: 1fr;
		min-height: 580px;
		padding-block: 70px 88px;
	}

	.hero-section__copy {
		max-width: 760px;
	}

	.hero-title__line {
		white-space: normal;
	}

	.credential-line__inner {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.credential-line span {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.credential-line span:last-child {
		border-bottom: 0;
	}

	.calculator-section__intro,
	.legal-thesis__grid,
	.section-heading--split,
	.process-section__grid,
	.about-section__grid,
	.faq-section__grid,
	.closing-section__grid {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.calculator-section,
	.legal-thesis,
	.scope-section,
	.process-section,
	.about-section,
	.faq-section,
	.closing-section {
		padding-block: 90px;
	}

	.calculator-section::after {
		top: 90px;
		right: -90px;
		width: 300px;
		height: 330px;
	}

	.calculator-section__intro {
		margin-bottom: 38px;
	}

	.calculator-step {
		padding: 40px 28px;
	}

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

	.process-section__intro,
	.faq-section__intro {
		position: static;
	}

	.about-section__grid {
		grid-template-columns: minmax(0, 520px);
		justify-content: center;
	}

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

	.result-overview {
		grid-template-columns: 1fr;
	}

	.result-overview__card {
		border-right: 0;
		border-bottom: 1px solid var(--line);
	}

	.result-overview__card:last-child {
		border-bottom: 0;
	}

	.site-footer__main {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.calculator-title-break {
		display: none;
	}

	.shell {
		width: min(calc(100% - 28px), var(--shell));
	}

	h1 {
		font-size: clamp(2.05rem, 9.8vw, 2.45rem);
	}

	h2 {
		font-size: clamp(1.72rem, 7.8vw, 2.18rem);
	}

	.hero-section__grid {
		padding-block: 42px 62px;
	}

	.hero-title__line {
		display: inline;
		font-size: 0.9em;
	}

	.hero-section__lead {
		font-size: 1rem;
	}

	.hero-section__text {
		font-size: 0.9rem;
	}

	.hero-section__text-break {
		display: none;
	}

	.hero-section__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.hero-section__actions .text-link {
		justify-content: center;
	}

	.calculator-section {
		padding-bottom: 70px;
	}

	.calculator-shell.shell {
		width: calc(100% - 20px);
	}

	.calculator-card {
		border-radius: 22px;
	}

	.calculator-progress {
		padding-inline: 18px;
	}

	.calculator-progress li {
		align-items: center;
		flex-direction: column;
		gap: 2px;
		font-size: 0.64rem;
	}

	.calculator-step {
		padding: 30px 18px 34px;
	}

	.field-grid--two {
		grid-template-columns: 1fr;
	}

	.field--full {
		grid-column: auto;
	}

	.calculator-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.calculator-actions--end {
		flex-direction: column;
	}

	.calculator-actions .button {
		width: 100%;
	}

	.area-table__head {
		display: none;
	}

	.area-row {
		grid-template-columns: 1fr;
		gap: 14px;
		padding: 20px 16px;
		border-top: 1px solid var(--line);
		margin-top: 12px;
	}

	.area-row label > span {
		display: block;
	}

	.area-row p {
		margin-top: -4px;
	}

	.area-row__empty {
		display: none;
	}

	.result-heading {
		align-items: flex-start;
		flex-direction: column;
	}

	.result-grid {
		grid-template-columns: 1fr;
	}

	.result-overview__card {
		min-height: 190px;
	}

	.result-disclaimer {
		grid-template-columns: 1fr;
	}

	.analysis-list {
		grid-template-columns: 1fr;
	}

	.analysis-list li {
		min-height: auto;
	}

	.analysis-list__meta {
		margin-bottom: 28px;
	}

	.about-section__image {
		padding: 10px 10px 0 0;
	}

	.about-section__image::before {
		bottom: 24px;
		left: 28px;
	}

	.about-section__brand-mark {
		right: 0;
		top: 24px;
		width: 104px;
		height: 112px;
		padding: 16px;
		border-radius: 18px;
	}

	.process-list li {
		grid-template-columns: 45px 1fr;
		gap: 14px;
	}

	.closing-section__actions,
	.closing-section__actions .button {
		width: 100%;
	}

	.site-footer__main {
		grid-template-columns: 1fr;
		gap: 34px;
		text-align: center;
	}

	.site-footer__brand {
		grid-column: auto;
	}

	.site-footer__brand img,
	.site-footer__socials {
		margin-inline: auto;
	}

	.site-footer__nav,
	.site-footer__column {
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.site-footer__nav a {
		margin-inline: auto;
	}

	.site-footer__item,
	.site-footer__main a.site-footer__item {
		align-items: center;
		justify-content: center;
		text-align: center;
	}

	.site-footer__item .icon {
		margin-top: 0;
	}

	.floating-contact {
		right: 14px;
		bottom: 14px;
		width: 52px;
		height: 52px;
		padding: 14px;
	}

	.floating-contact span {
		display: none;
	}

	.floating-contact svg {
		width: 24px;
		height: 24px;
	}
}

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