
:root {
	--vc-olive: #667b3f;
	--vc-olive-dark: #45572c;
	--vc-olive-pale: #e8eddc;
	--vc-charcoal: #1f241c;
	--vc-ink: #30362c;
	--vc-muted: #687063;
	--vc-sand: #f4f3ee;
	--vc-white: #ffffff;
	--vc-gold: #c3a56a;
	--vc-border: #dce1d5;
	--vc-shadow: 0 18px 50px rgba(31, 36, 28, 0.10);
	--vc-radius: 16px;
	--vc-shell: 1180px;
	--vc-font: "Aptos", "Segoe UI", Arial, sans-serif;
	--vc-serif: Georgia, "Times New Roman", serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--vc-ink);
	background: var(--vc-white);
	font-family: var(--vc-font);
	font-size: 17px;
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
}

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

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

a {
	color: var(--vc-olive-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

a:hover,
a:focus {
	color: var(--vc-olive);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 0.65em;
	color: var(--vc-charcoal);
	font-family: var(--vc-font);
	font-weight: 760;
	line-height: 1.12;
	letter-spacing: -0.028em;
}

h1 { font-size: clamp(2.7rem, 5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.35rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
p { margin: 0 0 1.2em; }
ul, ol { margin-top: 0; }

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

.vc-shell--narrow {
	max-width: 820px;
}

.vc-main {
	min-height: 60vh;
	overflow: hidden;
}

.vc-skip-link {
	position: fixed;
	top: -100px;
	left: 20px;
	z-index: 99999;
	padding: 12px 18px;
	color: var(--vc-white);
	background: var(--vc-charcoal);
}

.vc-skip-link:focus {
	top: 20px;
}

.vc-utility {
	color: #edf2e8;
	background: var(--vc-charcoal);
	font-size: 0.84rem;
}

.vc-utility__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	gap: 24px;
}

.vc-utility a {
	color: inherit;
	text-decoration: none;
}

.vc-utility__item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.vc-mini-icon {
	display: inline-flex;
	width: 15px;
	height: 15px;
}

.vc-mini-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.vc-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	border-bottom: 1px solid rgba(102,123,63,0.15);
	backdrop-filter: blur(12px);
}

.vc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 92px;
	gap: 28px;
}

.vc-brand {
	flex: 0 0 auto;
	text-decoration: none;
}

.vc-brand img,
.vc-brand .custom-logo {
	width: auto;
	max-width: 245px;
	max-height: 72px;
	object-fit: contain;
}

.vc-brand .custom-logo-link {
	display: block;
}

.vc-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.vc-menu,
.vc-menu ul {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.vc-menu li {
	position: relative;
}

.vc-menu a {
	display: block;
	padding: 16px 0;
	color: var(--vc-charcoal);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
}

.vc-menu > li > a::after {
	content: "";
	position: absolute;
	right: 50%;
	bottom: 8px;
	left: 50%;
	height: 2px;
	background: var(--vc-olive);
	transition: left .2s ease, right .2s ease;
}

.vc-menu > li > a:hover::after,
.vc-menu > li.current-menu-item > a::after,
.vc-menu > li.current_page_item > a::after {
	right: 0;
	left: 0;
}

.vc-menu .sub-menu {
	position: absolute;
	top: calc(100% - 4px);
	left: -20px;
	display: none;
	width: 260px;
	padding: 12px 20px;
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: 10px;
	box-shadow: var(--vc-shadow);
}

.vc-menu li:hover > .sub-menu,
.vc-menu li:focus-within > .sub-menu {
	display: block;
}

.vc-menu .sub-menu a {
	padding: 10px 0;
	text-transform: none;
}

.vc-button,
.wp-block-button__link,
input[type="submit"],
button.vc-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 24px;
	color: var(--vc-white) !important;
	background: var(--vc-olive);
	border: 2px solid var(--vc-olive);
	border-radius: 7px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none;
	transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.vc-button:hover,
.vc-button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
input[type="submit"]:hover,
button.vc-submit:hover {
	color: var(--vc-white) !important;
	background: var(--vc-olive-dark);
	border-color: var(--vc-olive-dark);
	box-shadow: 0 10px 25px rgba(69,87,44,.22);
	transform: translateY(-2px);
}

.vc-button--outline,
.vc-button--outline .wp-block-button__link,
.is-style-outline > .wp-block-button__link {
	color: var(--vc-olive-dark) !important;
	background: transparent;
	border-color: var(--vc-olive);
}

.vc-button--outline:hover,
.vc-button--outline .wp-block-button__link:hover,
.is-style-outline > .wp-block-button__link:hover {
	color: var(--vc-white) !important;
	background: var(--vc-olive-dark);
}

.vc-button--small {
	min-height: 44px;
	padding: 10px 17px;
	font-size: 0.87rem;
}

.vc-nav-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	color: var(--vc-charcoal);
	background: transparent;
	border: 1px solid var(--vc-border);
	border-radius: 7px;
}

.vc-nav-toggle__bars {
	display: grid;
	gap: 4px;
	width: 22px;
}

.vc-nav-toggle__bars span {
	display: block;
	height: 2px;
	background: currentColor;
}

.vc-eyebrow {
	margin: 0 0 16px;
	color: var(--vc-olive);
	font-size: 0.79rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.vc-hero {
	position: relative;
	padding: clamp(78px, 10vw, 138px) 0;
	color: var(--vc-white);
	background:
		radial-gradient(circle at 90% 18%, rgba(195,165,106,.55) 0 8%, transparent 8.3%),
		radial-gradient(circle at 94% 36%, rgba(102,123,63,.8) 0 26%, transparent 26.3%),
		linear-gradient(125deg, #182017 0%, #26331e 58%, #40522c 100%);
}

.vc-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 6px;
	background: linear-gradient(90deg, var(--vc-olive), var(--vc-gold), var(--vc-olive));
}

.vc-hero > .wp-block-group__inner-container,
.vc-section > .wp-block-group__inner-container,
.vc-band > .wp-block-group__inner-container,
.vc-cta > .wp-block-group__inner-container,
.vc-page-hero > .wp-block-group__inner-container {
	width: min(calc(100% - 40px), var(--vc-shell));
	margin-inline: auto;
}

.vc-hero__columns {
	align-items: center !important;
	gap: clamp(34px, 7vw, 90px) !important;
	margin: 0;
}

.vc-hero__copy {
	position: relative;
	z-index: 1;
	flex-basis: 60% !important;
}

.vc-hero h1 {
	max-width: 820px;
	color: var(--vc-white);
	font-size: clamp(3rem, 6.5vw, 6.1rem);
	letter-spacing: -0.055em;
}

.vc-hero__lead {
	max-width: 710px;
	color: #e5eadf;
	font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.vc-hero .vc-eyebrow {
	color: #cbd8b8;
}

.vc-hero .wp-block-buttons {
	margin-top: 30px;
	gap: 14px;
}

.vc-hero .is-style-outline > .wp-block-button__link {
	color: var(--vc-white) !important;
	border-color: rgba(255,255,255,.65);
}

.vc-hero__panel {
	position: relative;
	z-index: 1;
	min-width: 330px;
	padding: 32px;
	color: var(--vc-charcoal);
	background: rgba(255,255,255,.96);
	border: 1px solid rgba(255,255,255,.5);
	border-radius: 22px;
	box-shadow: 0 28px 80px rgba(0,0,0,.24);
}

.vc-hero__panel h3 {
	color: var(--vc-olive-dark);
	font-size: 0.86rem;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.vc-panel-number {
	margin-bottom: 0 !important;
	color: var(--vc-charcoal);
	font-size: 4.2rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.06em;
}

.vc-panel-caption {
	color: var(--vc-muted);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.vc-panel-list {
	display: grid;
	gap: 0;
	margin-top: 26px;
	border-top: 1px solid var(--vc-border);
}

.vc-panel-list p {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	margin: 0;
	padding: 13px 0;
	border-bottom: 1px solid var(--vc-border);
	color: var(--vc-muted);
	font-size: .86rem;
}

.vc-panel-list strong {
	color: var(--vc-olive-dark);
}

.vc-band {
	padding: 0;
	background: var(--vc-olive);
}

.vc-stat-grid {
	gap: 0 !important;
	margin: 0 !important;
}

.vc-stat {
	min-height: 130px;
	padding: 28px 24px;
	color: var(--vc-white);
	border-right: 1px solid rgba(255,255,255,.22);
}

.vc-stat:last-child {
	border-right: 0;
}

.vc-stat strong {
	display: block;
	margin-bottom: 6px;
	color: var(--vc-white);
	font-size: 1.35rem;
}

.vc-stat p {
	margin: 0;
	color: #edf2e8;
	font-size: .95rem;
}

.vc-section {
	padding: clamp(72px, 8vw, 112px) 0;
}

.vc-section--sand {
	background: var(--vc-sand);
}

.vc-section--pale {
	background: var(--vc-olive-pale);
}

.vc-section--dark {
	color: #e8ede3;
	background: var(--vc-charcoal);
}

.vc-section--dark h2,
.vc-section--dark h3 {
	color: var(--vc-white);
}

.vc-section--dark .vc-eyebrow {
	color: #bace9c;
}

.vc-section-header {
	max-width: 760px;
	margin-bottom: 48px;
}

.vc-section-header--center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.vc-section-header p:last-child {
	color: var(--vc-muted);
	font-size: 1.08rem;
}

.vc-service-grid,
.vc-card-grid,
.vc-process-grid,
.vc-value-grid {
	align-items: stretch !important;
	gap: 22px !important;
	margin-bottom: 22px !important;
}

.vc-service-card,
.vc-info-card,
.vc-process-card,
.vc-value-card {
	height: 100%;
	padding: 30px;
	background: var(--vc-white);
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius);
	box-shadow: 0 8px 28px rgba(31,36,28,.045);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.vc-service-card:hover,
.vc-info-card:hover,
.vc-value-card:hover {
	border-color: rgba(102,123,63,.55);
	box-shadow: var(--vc-shadow);
	transform: translateY(-5px);
}

.vc-card-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	margin-bottom: 24px !important;
	color: var(--vc-white);
	background: var(--vc-olive);
	border-radius: 50%;
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
}

.vc-service-card h3 {
	font-size: 1.42rem;
}

.vc-service-card p {
	color: var(--vc-muted);
	font-size: .96rem;
}

.vc-text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--vc-olive-dark);
	font-size: .9rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: .04em;
}

.vc-text-link::after {
	content: "→";
	transition: transform .18s ease;
}

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

.vc-split {
	align-items: center !important;
	gap: clamp(38px, 7vw, 90px) !important;
}

.vc-quote-panel {
	position: relative;
	min-height: 440px;
	padding: clamp(34px, 6vw, 64px);
	color: var(--vc-white);
	background:
		linear-gradient(rgba(24,32,23,.78), rgba(24,32,23,.78)),
		linear-gradient(135deg, var(--vc-olive-dark), var(--vc-charcoal));
	border-radius: 22px;
	overflow: hidden;
}

.vc-quote-panel::before,
.vc-quote-panel::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.vc-quote-panel::before {
	width: 250px;
	height: 250px;
	right: -90px;
	top: -90px;
	background: rgba(195,165,106,.45);
}

.vc-quote-panel::after {
	width: 160px;
	height: 160px;
	right: 60px;
	bottom: -70px;
	background: rgba(102,123,63,.8);
}

.vc-quote-panel > * {
	position: relative;
	z-index: 1;
}

.vc-quote-panel h2,
.vc-quote-panel h3 {
	color: var(--vc-white);
}

.vc-quote-panel p {
	color: #e6ebe1;
	font-size: 1.12rem;
}

.vc-check-list {
	padding: 0;
	list-style: none;
}

.vc-check-list li {
	position: relative;
	margin-bottom: 16px;
	padding-left: 34px;
}

.vc-check-list li::before {
	content: "✓";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 23px;
	height: 23px;
	color: var(--vc-white);
	background: var(--vc-olive);
	border-radius: 50%;
	font-size: .78rem;
	font-weight: 900;
}

.vc-process-card {
	position: relative;
	padding-top: 78px;
	background: transparent;
	border: 0;
	border-top: 2px solid var(--vc-border);
	border-radius: 0;
	box-shadow: none;
}

.vc-process-card .vc-card-number {
	position: absolute;
	top: -24px;
	left: 0;
	width: 48px;
	height: 48px;
	margin: 0 !important;
}

.vc-cta {
	position: relative;
	padding: clamp(72px, 8vw, 108px) 0;
	color: var(--vc-white);
	background: linear-gradient(125deg, var(--vc-olive-dark), var(--vc-olive));
	overflow: hidden;
}

.vc-cta::after {
	content: "";
	position: absolute;
	right: -130px;
	bottom: -230px;
	width: 500px;
	height: 500px;
	border: 70px solid rgba(255,255,255,.08);
	border-radius: 50%;
}

.vc-cta__inner {
	position: relative;
	z-index: 1;
	max-width: 850px;
}

.vc-cta h2 {
	color: var(--vc-white);
}

.vc-cta p {
	color: #eef2e8;
	font-size: 1.14rem;
}

.vc-page-hero,
.vc-standard-hero {
	padding: clamp(72px, 9vw, 125px) 0;
	background:
		radial-gradient(circle at 92% 18%, rgba(195,165,106,.35) 0 14%, transparent 14.3%),
		linear-gradient(125deg, #eef1e7, #f8f7f3);
	border-bottom: 1px solid var(--vc-border);
}

.vc-page-hero h1,
.vc-standard-hero h1 {
	max-width: 900px;
}

.vc-page-hero__lead {
	max-width: 780px;
	color: var(--vc-muted);
	font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.vc-standard-hero--center {
	text-align: center;
}

.vc-standard-hero--center .vc-button {
	margin-top: 18px;
}

.vc-page__content > :not(.alignfull):not(.alignwide),
.entry-content > :not(.alignfull):not(.alignwide) {
	width: min(calc(100% - 40px), 850px);
	margin-right: auto;
	margin-left: auto;
}

.vc-page__content > .alignwide,
.entry-content > .alignwide {
	width: min(calc(100% - 40px), var(--vc-shell));
	margin-right: auto;
	margin-left: auto;
}

.vc-page__content > .alignfull,
.entry-content > .alignfull {
	width: 100%;
	max-width: none;
	margin-right: 0;
	margin-left: 0;
}

.entry-content .vc-section,
.entry-content .vc-hero,
.entry-content .vc-band,
.entry-content .vc-cta,
.entry-content .vc-page-hero {
	margin-top: 0;
	margin-bottom: 0;
}

.vc-article {
	padding: 70px 0 100px;
}

.vc-article > * {
	max-width: 100%;
}

.vc-content-layout {
	padding: 70px 0 100px;
}

.vc-post-list {
	display: grid;
	gap: 26px;
	max-width: 860px;
	margin: 0 auto;
}

.vc-post-card {
	padding: 30px;
	border: 1px solid var(--vc-border);
	border-radius: var(--vc-radius);
}

.vc-post-card__meta {
	color: var(--vc-muted);
	font-size: .84rem;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.vc-post-card h2 {
	font-size: 2rem;
}

.vc-post-card h2 a {
	color: inherit;
	text-decoration: none;
}

.vc-contact-grid {
	align-items: flex-start !important;
	gap: clamp(36px, 7vw, 80px) !important;
}

.vc-contact-details {
	padding: 34px;
	background: var(--vc-olive-pale);
	border-radius: var(--vc-radius);
}

.vc-contact-details h3 {
	margin-top: 24px;
	margin-bottom: 5px;
	font-size: 1.05rem;
}

.vc-contact-details h3:first-child {
	margin-top: 0;
}

.vc-contact-details p {
	margin-bottom: 12px;
}

.vc-form {
	display: grid;
	gap: 18px;
}

.vc-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0,1fr));
	gap: 18px;
}

.vc-form label {
	display: block;
	color: var(--vc-charcoal);
	font-size: .9rem;
	font-weight: 750;
}

.vc-form label span {
	color: #a11;
}

.vc-form input,
.vc-form select,
.vc-form textarea {
	width: 100%;
	margin-top: 7px;
	padding: 13px 14px;
	color: var(--vc-charcoal);
	background: var(--vc-white);
	border: 1px solid #cbd2c3;
	border-radius: 7px;
	outline: none;
}

.vc-form textarea {
	min-height: 160px;
	resize: vertical;
}

.vc-form input:focus,
.vc-form select:focus,
.vc-form textarea:focus {
	border-color: var(--vc-olive);
	box-shadow: 0 0 0 3px rgba(102,123,63,.16);
}

.vc-form__consent {
	display: flex !important;
	align-items: flex-start;
	gap: 10px;
	font-weight: 400 !important;
}

.vc-form__consent input {
	width: auto;
	margin-top: 5px;
}

.vc-form__honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.vc-form-message {
	padding: 14px 16px;
	border-radius: 7px;
	font-weight: 700;
}

.vc-form-message--success {
	color: #254213;
	background: #e4f2d9;
	border: 1px solid #b8d9a0;
}

.vc-form-message--error {
	color: #6f1515;
	background: #f9e2e2;
	border: 1px solid #e8b3b3;
}

.vc-note {
	padding: 18px 20px;
	background: var(--vc-sand);
	border-left: 4px solid var(--vc-gold);
	border-radius: 0 8px 8px 0;
	color: var(--vc-muted);
	font-size: .92rem;
}

.vc-footer {
	color: #dfe6d8;
	background: #182017;
}

.vc-footer__grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr .85fr 1fr;
	gap: 54px;
	padding-top: 76px;
	padding-bottom: 65px;
}

.vc-footer__brand img {
	width: 230px;
	margin-bottom: 22px;
	background: var(--vc-white);
	border-radius: 4px;
}

.vc-footer__brand p {
	max-width: 360px;
	color: #cbd4c5;
}

.vc-footer h2 {
	margin-bottom: 18px;
	color: var(--vc-white);
	font-size: 1rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.vc-footer ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vc-footer li {
	margin-bottom: 10px;
}

.vc-footer a {
	color: #dfe6d8;
	text-decoration: none;
}

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

.vc-footer__contact p {
	color: #cbd4c5;
	font-size: .92rem;
}

.vc-footer__contact strong {
	color: var(--vc-white);
}

.vc-socials {
	display: flex;
	gap: 10px;
	margin-top: 25px;
}

.vc-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	color: var(--vc-white);
	background: rgba(255,255,255,.09);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 50%;
}

.vc-socials a:hover {
	background: var(--vc-olive);
	border-color: var(--vc-olive);
	transform: translateY(-2px);
}

.vc-socials svg,
.vc-floating-whatsapp svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.vc-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.12);
}

.vc-footer__bottom-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 70px;
	gap: 30px;
	color: #aeb8a9;
	font-size: .82rem;
}

.vc-footer__bottom p {
	margin: 0;
}

.vc-floating-whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 900;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	color: var(--vc-white);
	background: #2a9c52;
	border-radius: 50%;
	box-shadow: 0 12px 35px rgba(0,0,0,.25);
	transition: transform .18s ease;
}

.vc-floating-whatsapp:hover {
	color: var(--vc-white);
	transform: translateY(-4px) scale(1.03);
}

.wp-block-columns {
	box-sizing: border-box;
}

.wp-block-button {
	margin: 0;
}

.wp-block-separator {
	border: 0;
	border-top: 1px solid var(--vc-border);
}

@media (max-width: 1080px) {
	.vc-nav__cta {
		display: none;
	}

	.vc-menu,
	.vc-menu ul {
		gap: 18px;
	}

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

	.vc-hero__columns {
		flex-wrap: wrap !important;
	}

	.vc-hero__copy,
	.vc-hero__panel {
		flex-basis: 100% !important;
	}

	.vc-hero__panel {
		max-width: 520px;
	}
}

@media (max-width: 860px) {
	body.admin-bar .vc-header {
		top: 46px;
	}

	.vc-utility__location {
		display: none;
	}

	.vc-header__inner {
		min-height: 78px;
	}

	.vc-brand img,
	.vc-brand .custom-logo {
		max-width: 190px;
		max-height: 58px;
	}

	.vc-nav-toggle {
		display: inline-flex;
	}

	.vc-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		padding: 20px;
		background: var(--vc-white);
		border-bottom: 1px solid var(--vc-border);
		box-shadow: 0 18px 35px rgba(31,36,28,.12);
	}

	.vc-nav.is-open {
		display: block;
	}

	.vc-menu {
		display: grid;
		gap: 0;
	}

	.vc-menu a {
		padding: 12px 0;
	}

	.vc-menu > li > a::after {
		display: none;
	}

	.vc-menu .sub-menu {
		position: static;
		display: block;
		width: auto;
		margin-left: 16px;
		padding: 0;
		border: 0;
		box-shadow: none;
	}

	.vc-service-grid,
	.vc-card-grid,
	.vc-process-grid,
	.vc-value-grid,
	.vc-split,
	.vc-contact-grid {
		flex-wrap: wrap !important;
	}

	.vc-service-grid > .wp-block-column,
	.vc-card-grid > .wp-block-column,
	.vc-process-grid > .wp-block-column,
	.vc-value-grid > .wp-block-column,
	.vc-split > .wp-block-column,
	.vc-contact-grid > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vc-stat-grid {
		flex-wrap: wrap !important;
	}

	.vc-stat-grid > .wp-block-column {
		flex-basis: 50% !important;
	}

	.vc-stat {
		border-bottom: 1px solid rgba(255,255,255,.22);
	}

	.vc-footer__grid {
		gap: 36px;
	}

	.vc-footer__bottom-inner {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding: 20px 0;
	}
}

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

	.vc-shell,
	.vc-hero > .wp-block-group__inner-container,
	.vc-section > .wp-block-group__inner-container,
	.vc-band > .wp-block-group__inner-container,
	.vc-cta > .wp-block-group__inner-container,
	.vc-page-hero > .wp-block-group__inner-container {
		width: min(calc(100% - 28px), var(--vc-shell));
	}

	.vc-utility__inner {
		justify-content: center;
	}

	.vc-utility__item:first-child {
		display: none;
	}

	.vc-brand img,
	.vc-brand .custom-logo {
		max-width: 165px;
	}

	.vc-hero {
		padding: 70px 0 82px;
	}

	.vc-hero h1 {
		font-size: clamp(2.7rem, 14vw, 4rem);
	}

	.vc-hero__panel {
		min-width: 0;
		padding: 25px;
	}

	.vc-stat-grid > .wp-block-column {
		flex-basis: 100% !important;
	}

	.vc-stat {
		min-height: 105px;
		border-right: 0;
	}

	.vc-form__row {
		grid-template-columns: 1fr;
	}

	.vc-footer__grid {
		grid-template-columns: 1fr;
		padding-top: 60px;
		padding-bottom: 50px;
	}

	.vc-floating-whatsapp {
		right: 16px;
		bottom: 16px;
		width: 52px;
		height: 52px;
	}
}
