@font-face {
	font-family: "Montserrat Verticalis";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("../fonts/montserrat-latin.woff2") format("woff2");
}

:root {
	--v-bg: #0d0d0d;
	--v-panel: #121212;
	--v-ink: #f2f2f2;
	--v-orange: #ff6a00;
	--v-orange-light: #ff8a33;
	--v-muted: rgba(242, 242, 242, 0.64);
	--v-line: rgba(242, 242, 242, 0.1);
	--v-container: 1240px;
	--v-gutter: clamp(18px, 4vw, 40px);
}

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

body.verticalis-site {
	margin: 0;
	background: var(--v-bg);
	color: var(--v-ink);
	font-family: "Montserrat Verticalis", Montserrat, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

body.verticalis-site *,
body.verticalis-site *::before,
body.verticalis-site *::after {
	box-sizing: border-box;
}

body.verticalis-site img,
body.verticalis-site svg {
	display: block;
}

body.verticalis-site img {
	max-width: 100%;
}

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

body.verticalis-site button,
body.verticalis-site a {
	-webkit-tap-highlight-color: transparent;
}

body.verticalis-site button,
body.verticalis-site input,
body.verticalis-site textarea {
	font: inherit;
}

body.verticalis-site a:focus-visible,
body.verticalis-site button:focus-visible {
	outline: 3px solid var(--v-orange-light);
	outline-offset: 4px;
}

.v-site-shell {
	min-height: 100vh;
	background: var(--v-bg);
	overflow: clip;
}

.v-container {
	width: min(100%, var(--v-container));
	margin-inline: auto;
	padding-inline: var(--v-gutter);
}

.v-loader {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 100svh;
	background: var(--v-bg);
	opacity: 1;
	visibility: visible;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.v-loader.is-ready {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.v-loader__brand {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: min(86vw, 360px);
	text-align: center;
	transform: translateY(-2vh);
	animation: v-loader-in 0.55s ease both;
}

.v-loader__brand img {
	width: 78px;
	height: 86px;
	margin: 0 auto 20px;
}

.v-loader__brand span {
	font-size: clamp(22px, 5vw, 30px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.18em;
	text-indent: 0.18em;
}

.v-loader__brand small {
	margin-top: 9px;
	color: var(--v-orange);
	font-size: 9px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.24em;
	text-indent: 0.24em;
}

@keyframes v-loader-in {
	from { opacity: 0; transform: translateY(calc(-2vh + 12px)); }
	to { opacity: 1; transform: translateY(-2vh); }
}

.v-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 1000000;
	padding: 12px 18px;
	background: var(--v-orange);
	color: var(--v-panel) !important;
	font-weight: 800;
	transform: translateY(-180%);
}

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

.v-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(13, 13, 13, 0.92);
	border-bottom: 1px solid var(--v-line);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
}

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

.v-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 20px;
}

.v-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	flex: none;
}

.v-brand__logo {
	width: 34px;
	height: 38px;
	object-fit: contain;
}

.v-brand__copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.v-brand__copy strong {
	font-size: 17px;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.16em;
}

.v-brand__copy small {
	color: var(--v-orange);
	font-size: 8px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.22em;
}

.v-desktop-nav {
	display: flex;
	align-items: center;
	gap: clamp(14px, 2.2vw, 30px);
}

.v-desktop-nav > a:not(.v-button) {
	position: relative;
	font-size: clamp(10.5px, 1.05vw, 12px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	white-space: nowrap;
}

.v-desktop-nav > a:not(.v-button)::after {
	position: absolute;
	right: 0;
	bottom: -8px;
	left: 0;
	height: 2px;
	background: var(--v-orange);
	content: "";
	transform: scaleX(0);
	transition: transform 0.2s ease;
}

.v-desktop-nav > a:hover,
.v-desktop-nav > a:focus-visible {
	color: var(--v-orange);
}

.v-desktop-nav > a:hover::after,
.v-desktop-nav > a:focus-visible::after {
	transform: scaleX(1);
}

.v-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 54px;
	padding: 16px clamp(20px, 2.4vw, 30px);
	border: 1px solid var(--v-orange);
	border-radius: 2px;
	background: var(--v-orange);
	color: var(--v-panel) !important;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.08em;
	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.v-button:hover {
	border-color: var(--v-orange-light);
	background: var(--v-orange-light);
	color: var(--v-panel) !important;
	transform: translateY(-2px);
}

.v-button--small {
	min-height: 44px;
	padding: 13px clamp(14px, 1.6vw, 20px);
	font-size: clamp(10.5px, 1.05vw, 12px);
}

.v-button--ghost {
	border-color: rgba(242, 242, 242, 0.28);
	background: transparent;
	color: var(--v-ink) !important;
}

.v-button--ghost:hover {
	border-color: var(--v-orange);
	background: transparent;
	color: var(--v-orange) !important;
}

.v-mobile-actions,
.v-mobile-menu {
	display: none;
}

.v-icon-button,
.v-menu-toggle {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 3px;
}

.v-icon-button {
	border: 1px solid rgba(242, 242, 242, 0.25);
	color: var(--v-orange) !important;
}

.v-menu-toggle {
	padding: 0;
	border: 0;
	background: var(--v-orange);
	color: var(--v-panel);
	cursor: pointer;
}

.v-icon-button svg,
.v-menu-toggle svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.v-menu-toggle .v-menu-toggle__close,
.v-menu-toggle[aria-expanded="true"] .v-menu-toggle__open {
	display: none;
}

.v-menu-toggle[aria-expanded="true"] .v-menu-toggle__close {
	display: block;
}

.v-hero {
	padding: clamp(28px, 4vw, 44px) 0 clamp(56px, 7vw, 90px);
}

.v-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: stretch;
	gap: clamp(16px, 2.4vw, 28px);
}

.v-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(440px, 52vw, 560px);
	padding: clamp(26px, 4vw, 48px);
	border: 1px solid rgba(242, 242, 242, 0.09);
	border-radius: 4px;
	background: var(--v-panel);
}

.v-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	color: var(--v-orange);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.v-eyebrow i {
	display: block;
	width: 26px;
	height: 2px;
	background: currentColor;
}

.v-eyebrow--center {
	justify-content: center;
	text-align: center;
}

.v-hero h1,
.v-section h2,
.v-contact h2,
.v-error-main h1 {
	margin: 0;
	font-weight: 900;
	line-height: 0.99;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.v-hero h1 {
	margin-top: clamp(20px, 2.5vw, 28px);
	font-size: clamp(34px, 4.4vw, 66px);
}

.v-hero h1 span,
.v-challenge h2 span,
.v-error-main h1 span {
	color: var(--v-orange);
}

.v-hero__lead {
	max-width: 48ch;
	margin: clamp(20px, 2.5vw, 28px) 0 0;
	color: var(--v-muted);
	font-size: clamp(14px, 1.6vw, 17px);
	line-height: 1.65;
}

.v-button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: clamp(20px, 2.5vw, 28px);
}

.v-stats {
	display: flex;
	flex-wrap: wrap;
	gap: clamp(24px, 3vw, 40px);
	margin-top: clamp(24px, 3vw, 34px);
	padding-top: clamp(16px, 2vw, 22px);
	border-top: 1px solid var(--v-line);
}

.v-stats > div {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.v-stats strong {
	color: var(--v-orange);
	font-size: clamp(27px, 3.4vw, 36px);
	font-weight: 900;
	line-height: 1;
}

.v-stats span {
	margin-top: 1px;
	color: rgba(242, 242, 242, 0.55);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.v-hero__media,
.v-process__media {
	position: relative;
	min-width: 0;
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	background: #1b1b1b;
}

.v-hero__media {
	min-height: clamp(440px, 52vw, 560px);
}

.v-hero__media img,
.v-process__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.v-hero__media picture,
.v-process__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.v-hero__media:hover img,
.v-process__media:hover img {
	transform: scale(1.025);
}

.v-hero__media figcaption {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	padding: clamp(16px, 2.4vw, 26px);
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.82), transparent);
	pointer-events: none;
}

.v-hero__media figcaption span {
	display: inline-block;
	padding: 9px 13px;
	background: var(--v-orange);
	color: var(--v-panel);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.v-pillars {
	border-top: 1px solid var(--v-line);
	border-bottom: 1px solid var(--v-line);
	background: var(--v-panel);
}

.v-pillars__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 26px);
	padding-block: clamp(20px, 2.4vw, 27px);
}

.v-pillar {
	display: flex;
	align-items: center;
	gap: 12px;
}

.v-pillar > span {
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: none;
	border: 1.5px solid var(--v-orange);
	border-radius: 50%;
	color: var(--v-orange);
	font-size: 13px;
	font-weight: 900;
}

.v-pillar div {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 5px;
}

.v-pillar strong {
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.v-pillar small {
	color: rgba(242, 242, 242, 0.5);
	font-size: 11px;
	line-height: 1.35;
}

.v-section {
	padding: clamp(62px, 7vw, 110px) 0;
}

.v-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(30px, 4vw, 50px);
}

.v-section-heading h2,
.v-process h2 {
	margin-top: 15px;
	font-size: clamp(30px, 4.6vw, 52px);
}

.v-section-heading h2 span {
	color: rgba(242, 242, 242, 0.35);
}

.v-section-heading > p {
	max-width: 42ch;
	margin: 0;
	color: var(--v-muted);
	font-size: clamp(13px, 1.5vw, 15px);
	line-height: 1.7;
}

.v-services__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(12px, 1.6vw, 18px);
}

.v-service-card {
	display: flex;
	min-width: 0;
	min-height: 235px;
	flex-direction: column;
	gap: 14px;
	padding: clamp(22px, 2.6vw, 32px);
	border: 1px solid rgba(242, 242, 242, 0.09);
	border-radius: 4px;
	background: var(--v-panel);
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.v-service-card:hover {
	border-color: var(--v-orange);
	transform: translateY(-3px);
}

.v-service-card > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.v-service-card > div span {
	color: rgba(255, 106, 0, 0.32);
	font-size: 34px;
	font-weight: 900;
	line-height: 1;
}

.v-service-card > div i {
	width: 38px;
	height: 2px;
	background: var(--v-orange);
}

.v-service-card h3 {
	margin: 0;
	font-size: clamp(16px, 1.9vw, 20px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.v-service-card p {
	margin: 0;
	color: var(--v-muted);
	font-size: 13.5px;
	line-height: 1.65;
}

.v-process {
	border-top: 1px solid var(--v-line);
	border-bottom: 1px solid var(--v-line);
	background: var(--v-panel);
}

.v-process__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(32px, 4vw, 60px);
}

.v-process__media {
	height: clamp(420px, 48vw, 610px);
}

.v-steps {
	display: flex;
	flex-direction: column;
	margin-top: clamp(24px, 3vw, 34px);
}

.v-step {
	display: flex;
	gap: clamp(14px, 2vw, 22px);
	padding: clamp(16px, 2vw, 22px) 0;
	border-top: 1px solid var(--v-line);
}

.v-step > span {
	width: 44px;
	flex: none;
	color: var(--v-orange);
	font-size: clamp(20px, 2.4vw, 26px);
	font-weight: 900;
	line-height: 1;
}

.v-step strong {
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.v-step p {
	max-width: 46ch;
	margin: 7px 0 0;
	color: var(--v-muted);
	font-size: 13.5px;
	line-height: 1.6;
}

.v-process__content > .v-button {
	margin-top: clamp(22px, 3vw, 32px);
}

.v-challenge__panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(26px, 4vw, 56px);
	padding: clamp(28px, 4vw, 56px);
	border: 1px solid rgba(255, 106, 0, 0.38);
	border-radius: 4px;
	background: linear-gradient(135deg, rgba(255, 106, 0, 0.09), transparent 60%);
}

.v-challenge h2 {
	font-size: clamp(28px, 4.4vw, 48px);
}

.v-reasons {
	display: flex;
	flex-direction: column;
	gap: clamp(15px, 2vw, 20px);
}

.v-reasons p {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin: 0;
	color: rgba(242, 242, 242, 0.75);
	font-size: 14px;
	line-height: 1.6;
}

.v-reasons i {
	width: 9px;
	height: 9px;
	margin-top: 6px;
	flex: none;
	background: var(--v-orange);
	transform: rotate(45deg);
}

.v-contact {
	padding: clamp(62px, 7vw, 100px) 0;
	background: var(--v-orange);
	color: var(--v-panel);
}

.v-contact__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(30px, 4vw, 56px);
}

.v-contact .v-eyebrow {
	color: rgba(18, 18, 18, 0.7);
}

.v-contact h2 {
	margin-top: 14px;
	font-size: clamp(30px, 4.6vw, 52px);
}

.v-contact__grid > div:first-child > p:last-child {
	max-width: 46ch;
	margin: 18px 0 0;
	font-size: clamp(14px, 1.6vw, 16px);
	font-weight: 500;
	line-height: 1.65;
	opacity: 0.82;
}

.v-contact__actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.v-contact__whatsapp {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px;
	border-radius: 2px;
	background: var(--v-panel);
	color: var(--v-ink) !important;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.v-contact__whatsapp:hover {
	background: #000;
	color: var(--v-orange) !important;
}

.v-contact__whatsapp span {
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.v-contact__whatsapp strong {
	font-size: clamp(17px, 2.4vw, 24px);
	font-weight: 900;
	line-height: 1;
}

.v-contact__info {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.v-contact__info > div {
	padding: 18px;
	border: 1.5px solid rgba(18, 18, 18, 0.35);
	border-radius: 2px;
}

.v-contact__info small {
	display: block;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	opacity: 0.65;
}

.v-contact__info strong {
	display: block;
	margin-top: 9px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
}

.v-footer {
	padding: clamp(34px, 4vw, 54px) 0;
	background: var(--v-bg);
}

.v-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}

.v-footer__services {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(10px, 1.8vw, 22px);
	margin: 0;
	color: rgba(242, 242, 242, 0.45);
	font-size: 10px;
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.v-footer__services i {
	color: var(--v-orange);
	font-style: normal;
}

.v-footer__copyright {
	margin: 0;
	color: rgba(242, 242, 242, 0.4);
	font-size: 11px;
	white-space: nowrap;
}

.v-floating-wa {
	position: fixed;
	right: clamp(14px, 2.4vw, 26px);
	bottom: clamp(14px, 2.4vw, 26px);
	z-index: 90;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 19px 12px 14px;
	border: 1.5px solid var(--v-ink);
	border-radius: 999px;
	background: var(--v-panel);
	box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
	color: var(--v-ink) !important;
	transition: color 0.2s ease, background-color 0.2s ease;
}

.v-floating-wa:hover {
	background: var(--v-ink);
	color: var(--v-panel) !important;
}

.v-floating-wa svg {
	width: 27px;
	height: 27px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.v-floating-wa span {
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.v-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.55s ease, transform 0.55s ease;
}

.v-has-js .v-reveal {
	opacity: 0;
	transform: translateY(16px);
}

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

.v-site-shell--error {
	display: flex;
	min-height: 100svh;
	flex-direction: column;
}

.v-error-main {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 620px;
	flex: 1;
	padding: clamp(70px, 10vw, 130px) var(--v-gutter);
	overflow: hidden;
	text-align: center;
}

.v-error-main__mark {
	position: absolute;
	top: 50%;
	left: 50%;
	color: rgba(255, 106, 0, 0.07);
	font-size: clamp(190px, 36vw, 520px);
	font-weight: 900;
	line-height: 0.7;
	letter-spacing: -0.08em;
	transform: translate(-51%, -50%);
	user-select: none;
}

.v-error-main__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	max-width: 780px;
	flex-direction: column;
}

.v-error-main__content > img {
	width: 68px;
	height: 76px;
	margin: 26px auto;
}

.v-error-main h1 {
	font-size: clamp(36px, 6vw, 76px);
}

.v-error-main__content > p:not(.v-eyebrow) {
	max-width: 56ch;
	margin: 25px 0 0;
	color: var(--v-muted);
	font-size: clamp(14px, 1.6vw, 17px);
	line-height: 1.7;
}

.v-error-main .v-button-row {
	justify-content: center;
}

.v-site-shell--error .v-footer {
	border-top: 1px solid var(--v-line);
}

.v-site-shell--error .v-footer a {
	color: var(--v-orange);
	font-size: 12px;
	font-weight: 700;
}

@media (max-width: 1040px) {
	.admin-bar .v-header { top: 32px; }
	.v-desktop-nav { display: none; }
	.v-mobile-actions { display: flex; align-items: center; gap: 10px; }
	.v-mobile-menu { border-top: 1px solid var(--v-line); }
	.v-mobile-menu:not([hidden]) { display: block; }
	.v-mobile-menu .v-container { display: flex; flex-direction: column; padding-block: 8px 22px; }
	.v-mobile-menu a:not(.v-button) { padding: 16px 0; border-bottom: 1px solid rgba(242, 242, 242, 0.08); font-size: 14px; font-weight: 800; line-height: 1; letter-spacing: 0.06em; text-transform: uppercase; }
	.v-mobile-menu .v-button { margin-top: 18px; }
	.v-pillars__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.v-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.v-footer__inner { flex-wrap: wrap; }
	.v-footer__services { order: 3; width: 100%; justify-content: flex-start; }
}

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

@media (max-width: 760px) {
	html { scroll-padding-top: 74px; }
	.v-header__inner { min-height: 68px; }
	.v-brand__copy strong { font-size: 15px; }
	.v-brand__copy small { font-size: 7px; }
	.v-brand__logo { width: 30px; height: 34px; }
	.v-hero { padding-top: 18px; }
	.v-hero__grid { grid-template-columns: 1fr; }
	.v-hero__media { order: 1; min-height: min(94vw, 510px); }
	.v-hero__content { order: 2; min-height: 0; text-align: center; }
	.v-hero__lead { margin-inline: auto; }
	.v-button-row { justify-content: center; }
	.v-stats { justify-content: center; }
	.v-section-heading { align-items: flex-start; flex-direction: column; }
	.v-services__grid { grid-template-columns: 1fr; }
	.v-service-card { min-height: 0; }
	.v-process__grid { grid-template-columns: 1fr; }
	.v-process__media { height: min(120vw, 590px); }
	.v-challenge__panel { grid-template-columns: 1fr; }
	.v-contact__grid { grid-template-columns: 1fr; }
	.v-contact__whatsapp { align-items: flex-start; flex-direction: column; }
	.v-error-header-cta { min-height: 42px; padding-inline: 13px; font-size: 10px; }
	.v-error-main { min-height: 560px; }
}

@media (max-width: 520px) {
	:root { --v-gutter: 17px; }
	.v-header__inner { gap: 10px; }
	.v-icon-button { display: none; }
	.v-brand { gap: 8px; }
	.v-brand__copy strong { font-size: 13px; }
	.v-brand__copy small { max-width: 150px; font-size: 6px; letter-spacing: 0.18em; }
	.v-hero__content { padding: 28px 20px; }
	.v-hero h1 { font-size: clamp(32px, 10vw, 46px); }
	.v-hero__media figcaption { font-size: 8px; }
	.v-button-row { flex-direction: column; }
	.v-button-row .v-button { width: 100%; }
	.v-stats { gap: 20px; }
	.v-stats > div { flex-direction: column; text-align: left; }
	.v-pillars__grid { grid-template-columns: 1fr; }
	.v-contact__info { grid-template-columns: 1fr; }
	.v-footer__inner { align-items: flex-start; flex-direction: column; }
	.v-footer__services { justify-content: flex-start; }
	.v-floating-wa { padding-right: 14px; }
	.v-floating-wa span { display: none; }
	.v-error-header-cta { display: none; }
	.v-error-main__content > img { width: 58px; height: 65px; }
	.v-error-main h1 { font-size: clamp(34px, 11vw, 50px); }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.v-loader,
	.v-loader__brand,
	.v-reveal,
	.v-button,
	.v-service-card,
	.v-hero__media img,
	.v-process__media img { animation: none !important; transition-duration: 0.01ms !important; }
}
