/*
 * page-home.css — Home Page (front-page.php)
 * Fidelidade ao Figma: node 89-10423
 * Mobile-first — breakpoints: 768px (tablet), 1024px (desktop)
 * Carregado APENAS na home via functions.php
 */

/* ================================================================
   TOKENS — cores, fontes, transições reutilizáveis
   ================================================================ */
:root {
	--vhome-blue: #13284c;
	--vhome-blue-mid: #003d7a;
	--vhome-blue-light: #27529d;
	--vhome-orange: #f47726;
	--vhome-orange-dark: #ea512e;
	--vhome-white: #ffffff;
	--vhome-text: #4b5563;
	--vhome-text-light: rgba(255, 255, 255, 0.75);
	--vhome-text-muted: #9d9d9d;
	--vhome-font: 'Inter', system-ui, -apple-system, sans-serif;
	--vhome-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   PAGE WRAPPER + UNIFIED BACKGROUND
   ================================================================ */
.vhome-page {
	width: 100%;
	max-width: 100%;
	padding-inline: 0;
	margin-inline: 0;
}

.vhome-unified-wrap {
	position: relative;
	z-index: 0;
	overflow: hidden;
	/* Mostra o background completo no bloco inteiro da home (sem corte por altura). */
	background-size: 100% 100%;
	background-position: center top;
	background-repeat: no-repeat;
	background-color: var(--vhome-blue);
	margin-top: -106px;
}

/*
 * Fundo único da home: o bloco Treinamentos trazia um <img> próprio (Home-1),
 * que desenhava uma segunda “faixa” (mar escuro) por cima do fluxo visual.
 * Aqui desativamos só dentro da home — o PNG continua disponível em outras páginas.
 */
.vhome-unified-wrap .vertex-fold-treinamentos {
	background-color: transparent;
}

.vhome-unified-wrap .vertex-fold-treinamentos__bg,
.vhome-unified-wrap .vertex-fold-treinamentos__bg-img {
	display: none !important;
}

.vhome-unified-wrap .vertex-fold-treinamentos__bg-placeholder {
	display: none !important;
}

/* ================================================================
   UTILITIES — reutilizáveis entre seções
   ================================================================ */
.vhome-badge {
	display: inline-flex;
	align-items: center;
	border-radius: 9999px;
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 1.43;
	padding: 6px 14px;
	width: fit-content;
	letter-spacing: 0.05em;
}

.vhome-badge--primary {
	background: rgba(244, 119, 38, 0.2);
	color: var(--vhome-orange);
}

.vhome-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 8px;
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 0.9375rem;
	line-height: 1.5;
	text-decoration: none;
	transition: opacity 0.2s var(--vhome-ease), transform 0.2s var(--vhome-ease);
	cursor: pointer;
	border: none;
}

.vhome-btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

.vhome-btn--primary {
	background: var(--vhome-orange);
	color: var(--vhome-white);
}

.vhome-btn--secondary {
	background: var(--vhome-orange);
	color: var(--vhome-white);
}

.vhome-btn--sm {
	padding: 10px 20px;
	font-size: 0.8125rem;
}

.vhome-btn svg {
	flex-shrink: 0;
}

.vhome-btn--secondary {
	width: fit-content;
}

/* Section header pattern */
.vhome-section-header {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 32px;
}

.vhome-section-header--center {
	align-items: center;
	text-align: center;
}

.vhome-section-header__title {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: clamp(1.75rem, 4vw, 3rem);
	line-height: 1.15;
	color: var(--vhome-blue);
	margin: 0;
}

.vhome-section-header__title--white {
	color: var(--vhome-white);
}

.vhome-section-header__title .accent {
	color: var(--vhome-orange);
}

.vhome-section-header__sub {
	font-family: var(--vhome-font);
	font-size: clamp(1rem, 2vw, 1.25rem);
	font-weight: 400;
	line-height: 1.5;
	color: var(--vhome-text-muted);
	max-width: 600px;
	margin: 0;
}

.vhome-section-header__sub--white {
	color: var(--vhome-text-light);
}

.vhome-produtos__nav {
	display: none;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.vhome-produtos__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	cursor: pointer;
	transition: all 0.2s var(--vhome-ease);
	padding: 0;
}

.vhome-produtos__arrow:hover {
	background: var(--vhome-orange);
	border-color: var(--vhome-orange);
}

/* ================================================================
   HERO — mobile first
   ================================================================ */
.vhome-hero {
	padding-top: calc(106px + 40px);
	padding-bottom: 40px;
	min-height: 320px;
}

.vhome-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vhome-hero__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 720px;
}

.vhome-hero__title {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: clamp(2rem, 6vw, 3.75rem);
	line-height: 1.08;
	color: var(--vhome-white);
	margin: 0;
	display: flex;
	flex-direction: column;
}

.vhome-hero__line {
	display: block;
}

.vhome-hero__line--accent {
	color: var(--vhome-orange);
}

.vhome-hero__line--light {
	color: var(--vhome-white);
}

.vhome-hero__subtitle {
	font-family: var(--vhome-font);
	font-size: clamp(0.9375rem, 2vw, 1.25rem);
	font-weight: 400;
	line-height: 1.5;
	color: var(--vhome-text-light);
	margin: 0;
	max-width: 560px;
}

.vhome-hero__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--vhome-orange);
	color: var(--vhome-white);
	border-radius: 8px;
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	transition: opacity 0.2s var(--vhome-ease), transform 0.2s var(--vhome-ease);
	width: fit-content;
}

.vhome-hero__btn:hover {
	opacity: 0.9;
	transform: translateY(-1px);
}

/* ================================================================
   SOBRE A VERTEX — mobile first
   ================================================================ */
.vhome-sobre {
	padding: 48px 0;
}

.vhome-sobre__inner {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.vhome-sobre__content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.vhome-sobre__title {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: clamp(1.75rem, 4.5vw, 2.75rem);
	line-height: 1.2;
	color: var(--vhome-white);
	margin: 0;
}

.vhome-sobre__title .accent {
	color: var(--vhome-orange);
}

.vhome-sobre__text {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vhome-sobre__text p {
	font-family: var(--vhome-font);
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	font-weight: 400;
	line-height: 1.625;
	color: var(--vhome-text-light);
	margin: 0;
}

.vhome-sobre__stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.vhome-sobre__stat {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vhome-sobre__stat-number {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: clamp(1.875rem, 3.5vw, 2.75rem);
	line-height: 1.1;
	color: var(--vhome-orange);
}

.vhome-sobre__stat-label {
	font-family: var(--vhome-font);
	font-weight: 500;
	font-size: 0.9375rem;
	line-height: 1.4;
	color: var(--vhome-text-light);
}

.vhome-sobre__image {
	position: relative;
	overflow: visible;
}

.vhome-sobre__image > img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.vhome-sobre__cert-badge {
	position: absolute;
	left: 27.1604938272%;
	bottom: 18.5185185185%;
	display: flex;
	align-items: center;
	gap: 17.43px;
	background: var(--vhome-white);
	padding: 26.145px;
	border-radius: 17.43px;
	box-shadow: 0 21.788px 27.235px -5.447px rgba(0, 0, 0, 0.1), 0 8.715px 10.894px -6.536px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
	min-width: 240.2317px;
	min-height: 114.3631px;
	box-sizing: border-box;
}

.vhome-sobre__cert-badge-text {
	display: flex;
	flex-direction: column;
}

.vhome-sobre__cert-badge svg {
	width: 24.5111px;
	height: 32.6815px;
	flex: 0 0 auto;
}

.vhome-sobre__cert-badge-text strong {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: 17.43px;
	color: #001f3f;
	line-height: 26.145px;
}

.vhome-sobre__cert-badge-text span {
	font-family: var(--vhome-font);
	font-weight: 400;
	font-size: 15.251px;
	color: #6c757d;
	line-height: 21.788px;
}

.vhome-sobre .vhome-badge--primary {
	background: #80adfa;
	color: #27529d;
	padding: 8px 16px;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0;
}

/* ================================================================
   PRODUTOS EM DESTAQUE — mobile first
   ================================================================ */
.vhome-produtos {
	padding: 48px 0;
}

.vhome-produtos__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.vhome-produtos__card {
	display: flex;
	flex-direction: column;
	background: var(--vhome-white);
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.3s var(--vhome-ease), box-shadow 0.3s var(--vhome-ease);
}

.vhome-produtos__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.vhome-produtos__card-img {
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: #f3f4f6;
}

.vhome-produtos__card-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--vhome-ease);
}

.vhome-produtos__card:hover .vhome-produtos__card-img img {
	transform: scale(1.05);
}

.vhome-produtos__card-body {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vhome-produtos__card-name {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3;
	color: var(--vhome-blue);
	margin: 0;
}

.vhome-produtos__card-sku {
	font-family: var(--vhome-font);
	font-size: 0.75rem;
	font-weight: 500;
	color: var(--vhome-text-muted);
}

.vhome-produtos__cta {
	display: flex;
	justify-content: center;
	margin-top: 24px;
}

/* ================================================================
   CLIENTES E PARCEIROS — mobile first
   ================================================================ */
.vhome-clientes {
	padding: 56px 0 64px;
}

/* Eyebrow label */
/* Eyebrow label - deprecated for this section as per Figma update */
/*
.vhome-clientes__eyebrow {
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 0.8125rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 6px;
}
*/

/* Carousel wrapper */
.vhome-clientes__carousel {
	position: relative;
	margin-bottom: 20px;
}

/* Track (scrollable row of cards) */
.vhome-clientes__track {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 12px 0 8px;
	align-items: center;
}

.vhome-clientes__track::-webkit-scrollbar {
	display: none;
}

/* Each logo card — mobile: 1 card centralizado */
.vhome-clientes__slide {
	flex: 0 0 90%;
	scroll-snap-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	border-radius: 14px;
	padding: 24px 36px;
	min-width: 0;
	height: 110px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
	transition: transform 0.2s var(--vhome-ease), box-shadow 0.2s var(--vhome-ease);
}

.vhome-clientes__slide:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* Logo images — cores reais, sem filtro */
.vhome-clientes__slide img {
	display: block;
	max-width: 180px;
	max-height: 64px;
	width: auto;
	height: auto;
	object-fit: contain;
	transition: opacity 0.2s var(--vhome-ease);
}

.vhome-clientes__slide:hover img {
	opacity: 1;
}

/* Nav arrows — below, centered */
.vhome-clientes__nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
}

.vhome-clientes__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.35);
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
	cursor: pointer;
	transition: background 0.2s var(--vhome-ease), border-color 0.2s var(--vhome-ease);
}

.vhome-clientes__arrow:hover {
	background: rgba(255, 255, 255, 0.28);
	border-color: rgba(255, 255, 255, 0.6);
}

/* Stats */
.vhome-clientes__stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.vhome-clientes__stat {
	text-align: center;
	padding: 20px 16px;
	background: transparent;
	border: none;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.vhome-clientes__stat-number {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	line-height: 1.1;
	color: var(--vhome-orange);
}

.vhome-clientes__stat-label {
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 1.125rem;
	line-height: 1.4;
	color: var(--vhome-white);
}

.vhome-clientes__stat-desc {
	font-family: var(--vhome-font);
	font-size: 0.9375rem;
	font-weight: 400;
	color: var(--vhome-text-light);
}

/* ================================================================
   CERTIFICAÇÕES — mobile first
   ================================================================ */
.vhome-cert {
	padding: 48px 0;
}

.vhome-cert__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 16px;
	justify-items: center;
	margin-top: -60px;
}

.vhome-cert__card {
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: none;
	border-radius: 0;
	padding: 0;
	width: 100%;
	aspect-ratio: 1;
	max-width: 220px; /* Base mobile (reduzido drasticamente para 220px) */
}

.vhome-cert__card:hover {
	/* Cards estáticos - sem hover */
}

.vhome-cert__card img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

/* ================================================================
   BLOG E NOTÍCIAS — Figma 89:10681
   ================================================================ */
.vhome-blog {
	padding: 195px 0 80px;
	width: 100%;
}

.vhome-blog__header,
.vhome-blog__grid {
	width: 100%;
}

.vhome-blog__header {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
}

.vhome-blog__header-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vhome-blog__title {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.2;
	color: #181818;
	margin: 0;
}

.vhome-blog__subtitle {
	font-family: var(--vhome-font);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.4;
	color: #9d9d9d;
	margin: 0;
}

.vhome-blog__see-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 1rem;
	color: #27529d;
	text-decoration: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.vhome-blog__see-all:hover {
	color: var(--vhome-orange);
}

.vhome-blog__see-all svg {
	flex-shrink: 0;
}

.vhome-blog__header-actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.vhome-blog__nav {
	display: none;
	justify-content: center;
	gap: 12px;
}

.vhome-blog__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1.5px solid rgba(0, 0, 0, 0.15);
	background: #ffffff;
	color: #181818;
	cursor: pointer;
	transition: all 0.2s var(--vhome-ease);
	padding: 0;
}

.vhome-blog__arrow:hover {
	background: var(--vhome-orange);
	border-color: var(--vhome-orange);
	color: #ffffff;
}

.vhome-blog__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.vhome-blog__card {
	background: var(--vhome-white);
	border: 1px solid #f1f1f1;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s var(--vhome-ease), box-shadow 0.3s var(--vhome-ease);
}

.vhome-blog__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.vhome-blog__card-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

a.vhome-blog__card-link:hover {
	color: inherit;
}

.vhome-blog__card-image {
	height: 224px;
	overflow: hidden;
	background: #f3f4f6;
}

.vhome-blog__card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s var(--vhome-ease);
}

.vhome-blog__card:hover .vhome-blog__card-image img {
	transform: scale(1.05);
}

.vhome-blog__card-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.vhome-blog__badge {
	display: inline-block;
	width: fit-content;
	padding: 4px 12px;
	border-radius: 9999px;
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 0.75rem;
	line-height: 1.33;
	letter-spacing: 0.02em;
}

.vhome-blog__card-title {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.4;
	color: #181818;
	margin: 0;
}

.vhome-blog__card-excerpt {
	font-family: var(--vhome-font);
	font-weight: 400;
	font-size: 0.9375rem;
	line-height: 1.625;
	color: #9d9d9d;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.vhome-blog__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 4px;
	margin-top: auto;
}

.vhome-blog__card-date {
	font-family: var(--vhome-font);
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.43;
	color: #9d9d9d;
}

.vhome-blog__card-more {
	font-family: var(--vhome-font);
	font-weight: 600;
	font-size: 0.875rem;
	line-height: 1.43;
	color: #27529d;
}

/* ================================================================
   ANIMAÇÕES DE ENTRADA — scroll reveal
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {
	.vhome-hero__content,
	.vhome-sobre__content,
	.vhome-sobre__image,
	.vhome-section-header,
	.vhome-produtos__card,
	.vhome-clientes__stat,
	.vhome-cert__card,
	.vhome-blog__card {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity 0.6s var(--vhome-ease), transform 0.6s var(--vhome-ease);
	}

	.vhome-sobre__image {
		transform: translateX(24px);
		transition-delay: 0.15s;
	}

	.vhome-hero__content.vhome-visible,
	.vhome-sobre__content.vhome-visible,
	.vhome-sobre__image.vhome-visible,
	.vhome-section-header.vhome-visible,
	.vhome-produtos__card.vhome-visible,
	.vhome-clientes__carousel.vhome-visible,
	.vhome-clientes__stat.vhome-visible,
	.vhome-cert__card.vhome-visible,
	.vhome-blog__card.vhome-visible {
		opacity: 1;
		transform: none;
	}
}

/* ================================================================
   RESPONSIVIDADE — TABLET (≥768px)
   ================================================================ */
@media (min-width: 768px) {

	.vhome-hero {
		padding-top: calc(106px + 64px);
		padding-bottom: 64px;
		min-height: 400px;
	}

	.vhome-sobre {
		padding: 64px 0;
	}

	.vhome-sobre__inner {
		flex-direction: row;
		align-items: center;
		gap: 40px;
	}

	.vhome-sobre__content {
		flex: 1 1 55%;
	}

	.vhome-sobre__image {
		flex: 1 1 45%;
	}

	.vhome-produtos__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.vhome-clientes__stats {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Carousel: 4 cards visíveis, scroll horizontal */
	.vhome-clientes__track {
		overflow-x: auto;
		flex-wrap: nowrap;
	}

	.vhome-clientes__slide {
		flex: 0 0 calc((100% - 3 * 24px) / 4);
		scroll-snap-align: start;
	}

	.vhome-blog__header {
		flex-direction: row;
		align-items: flex-end;
		justify-content: space-between;
	}

	.vhome-blog__header-actions {
		flex-direction: row;
		gap: 24px;
	}

	.vhome-blog__see-all {
		margin-right: 0; /* Changed since it is flex child now */
	}

	.vhome-blog__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.vhome-blog__card-title {
		font-size: 1.25rem;
	}

	.vhome-produtos,
	.vhome-clientes,
	.vhome-cert,
	.vhome-blog {
		padding: 64px 0;
	}
}

/* ================================================================
   RESPONSIVIDADE — DESKTOP (≥1024px)
   ================================================================ */
@media (min-width: 1024px) {

	.vhome-hero {
		display: flex; /* Conforme solicitado: div 100% flex */
		justify-content: center;
		width: 100%;
		padding-top: calc(106px + 240px);
		padding-bottom: 120px;
		min-height: 600px;
	}

	.vhome-hero .container {
		width: 1440px !important; /* Conteúdo com 1440px fixo de largura */
		max-width: 1440px !important;
		margin: 0 auto !important;
		flex-shrink: 0;
		padding-left: 15px; /* Ajuste fino padrão para alinhar com a logo */
		padding-right: 15px;
	}

	.vhome-hero__content {
		gap: 24px;
		/* Mantém bloco fixo no desktop para evitar elasticidade do Hero. */
		width: 659px;
		min-width: 659px;
		max-width: 659px;
		align-self: flex-start;
	}

	.vhome-hero__title {
		font-size: 60px;
		line-height: 72px;
	}

	.vhome-hero__line {
		white-space: nowrap;
	}

	.vhome-hero__subtitle {
		font-size: 20px;
		line-height: 32.5px;
		max-width: 560px;
	}

	.vhome-sobre {
		padding: 330px 0 0; /* Original 180px + 150px descer */
		margin-bottom: -150px; /* Compensa o padding-top para não afastar a próxima seção */
	}

	/* Sobre: mantém seção 100% e encosta arte no canto direito da viewport. */
	.vhome-sobre .container {
		width: 1440px !important; /* Travado em 1440px conforme solicitado */
		max-width: 1440px !important;
		margin: 0 auto !important;
		padding-left: 15px !important; /* Alinhado com a logo (mesmo do Hero) */
		padding-right: 15px !important;
	}

	.vhome-sobre__inner {
		display: grid;
		grid-template-columns: 610px minmax(0, 726px);
		gap: 0;
		justify-content: space-between;
		align-items: start;
		overflow: visible;
	}

	.vhome-sobre__stats {
		gap: 24px;
	}

	.vhome-sobre__content {
		max-width: 610px;
		padding-left: 0;
	}

	.vhome-sobre__image {
		width: 726px;
		max-width: 726px;
		justify-self: end;
		/* Mantém independente do texto e traz 100px para a esquerda do edge da viewport. */
		margin-right: calc(50% - 50vw + 300px);
		transform: translateY(-25px);
	}

	/* Garante que o transform da imagem não seja resetado pela animação vhome-visible */
	.vhome-sobre__image.vhome-visible {
		transform: translateY(-25px) !important;
	}

	.vhome-sobre__image img {
		width: 654px;
		max-width: 100%;
		margin-left: auto;
		max-height: none;
	}


	.vhome-produtos__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}

	.vhome-produtos__card-body {
		padding: 20px;
	}

	.vhome-blog {
		padding: 195px 0 80px;
	}

	.vhome-blog__header {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-end;
	}

	.vhome-blog__header-actions {
		flex-direction: row;
	}

	.vhome-blog__title {
		font-size: 2.25rem;
	}

	.vhome-blog__subtitle {
		font-size: 1.25rem;
	}

	.vhome-blog__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 32px;
	}

	.vhome-cert__grid {
		gap: 24px;
	}

	.vhome-cert__card {
		max-width: 350px; /* Desktop: cards agora mais compactos (reduzido para 350px) */
	}

	.vhome-produtos {
		padding-top: 800px; /* Reduzido 250px para subir a seção */
		padding-bottom: 120px;
	}

	.vhome-clientes {
		padding: 80px 0;
	}


	.vhome-cert {
		padding: 330px 0 180px; /* Subindo o conteúdo em 100px, compensando no padding bottom */
	}

	.vhome-section-header {
		margin-bottom: 48px;
	}
}

@media (min-width: 1600px) {
	.vhome-hero__content {
		width: 659px;
		min-width: 659px;
		max-width: 659px;
	}
}

/* ================================================================
   NEWSLETTER — Figma 89:10529
   ================================================================ */
.vhome-newsletter {
	background: linear-gradient(135deg, #001f3f 0%, #003366 60%, #004080 100%);
	padding: 80px 20px;
	text-align: center;
}

.vhome-newsletter__inner {
	max-width: 640px;
	margin: 0 auto;
}

.vhome-newsletter__title {
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: 1.75rem;
	line-height: 1.3;
	color: var(--vhome-white);
	margin: 0 0 16px;
}

.vhome-newsletter__text {
	font-family: var(--vhome-font);
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(255,255,255,0.8);
	margin: 0 0 32px;
}

.vhome-newsletter__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: stretch;
	margin: 0 0 16px;
}

.vhome-newsletter__input-wrap {
	flex: 1;
}

.vhome-newsletter__input {
	width: 100%;
	padding: 16px 20px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.2);
	background: rgba(255,255,255,0.1);
	color: var(--vhome-white);
	font-family: var(--vhome-font);
	font-size: 1rem;
	outline: none;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.vhome-newsletter__input::placeholder {
	color: rgba(255,255,255,0.5);
}

.vhome-newsletter__input:focus {
	border-color: var(--vhome-orange);
}

.vhome-newsletter__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 40px;
	border: none;
	border-radius: 8px;
	background: var(--vhome-orange);
	color: var(--vhome-white);
	font-family: var(--vhome-font);
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.2s ease;
	white-space: nowrap;
}

.vhome-newsletter__btn:hover {
	background: #d86518;
	transform: translateY(-2px);
}

.vhome-newsletter__disclaimer {
	font-family: var(--vhome-font);
	font-weight: 400;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(255,255,255,0.5);
	margin: 0;
}

@media (min-width: 768px) {
	.vhome-newsletter {
		padding: 80px 40px;
	}

	.vhome-newsletter__title {
		font-size: 2.25rem;
	}

	.vhome-newsletter__form {
		flex-direction: row;
		gap: 0;
	}

	.vhome-newsletter__input {
		border-radius: 8px 0 0 8px;
	}

	.vhome-newsletter__btn {
		border-radius: 0 8px 8px 0;
	}
}

.vhome-newsletter {
	margin-bottom: 0 !important;
}

/* ================================================================
   FOOTER: CTA colado — anula margens extras
   ================================================================ */
.vhome-page + .site-footer,
body.home .site-footer,
body.page-template-front-page .site-footer {
	margin-top: 0 !important;
}

.vhome-page.site-main {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

/* ================================================================
   ACESSIBILIDADE
   ================================================================ */
.vhome-hero__btn:focus-visible,
.vhome-btn:focus-visible,
.vhome-produtos__card:focus-visible,
.vhome-blog__card:focus-visible,
.vhome-clientes__arrow:focus-visible {
	outline: 3px solid var(--vhome-orange);
	outline-offset: 2px;
	border-radius: 4px;
}

/* ================================================================
   MOBILE FIX (max-width: 767px) — CORREÇÕES DE LAYOUT
   ================================================================ */
@media (max-width: 767px) {

	/* 1. Corrigir Background do Wrapper (garantir que a onda laranja apareça no final) */
	.vhome-unified-wrap {
		background-size: cover; 
		background-position: center top; 
		background-attachment: scroll;
	}

	/* 2. Overlay Escuro Global (Garantir Legibilidade) */
	.vhome-unified-wrap::before {
		content: '';
		position: absolute;
		inset: 0;
		background: linear-gradient(
			180deg,
			rgba(19, 40, 76, 0.85) 0%,
			rgba(19, 40, 76, 0.60) 50%,
			rgba(19, 40, 76, 0.80) 100%
		);
		z-index: -1;
		pointer-events: none;
	}

	/* 3. Seções com Overlay Semi-Transparente (Apenas as Escuras) */
	.vhome-hero {
		background: transparent;
	}

	.vhome-sobre {
		background: transparent;
		margin-top: 80px;
		padding-top: 140px !important; /* Reduzido de 330px para subir o conteúdo */
		padding-bottom: 80px !important;
		margin-bottom: -150px; /* Ajustado de -250px para evitar conflito com a próxima seção */
	}

	/* CORREÇÃO: pessoas.png colada na DIREITA */
	.vhome-sobre__image {
		transform: none !important;
		top: 60px; /* Reduzido de 185px para subir a imagem e badge */
		margin-left: auto;
		margin-right: -25px;
	}

	.vhome-sobre__image img {
		margin-left: auto;
		margin-right: 0;
	}

	/* Produtos: mantém fundo branco sólido (sem imagem) */
	.vhome-produtos {
		padding: 170px 20px 80px !important; /* Aumentado mais 45px (total 170px) no topo */
	}

	.vhome-produtos__nav {
		display: flex !important; /* Sempre visível no mobile */
	}

	/* Carrossel de Produtos em Mobile */
	.vhome-produtos__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		gap: 12px;
		padding-bottom: 16px;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.vhome-produtos__grid::-webkit-scrollbar {
		display: none;
	}

	.vhome-produtos__card {
		flex: 0 0 100% !important; /* Apenas 1 card por vez */
		max-width: none !important;
		scroll-snap-align: center;
	}

	.vhome-produtos__card-body {
		text-align: center;
		align-items: center;
	}

	/* Remover underline de todos os links e botões no mobile */
	.vhome-page a:hover,
	.vhome-produtos__card:hover,
	.vhome-produtos__card a:hover,
	.vhome-btn:hover {
		text-decoration: none !important;
	}

	/* Blog: mantém fundo branco sólido (sem imagem) */

	.vhome-clientes {
		background: rgba(19, 40, 76, 0.85);
		padding: 80px 20px !important;
	}

	.vhome-cert {
		background: transparent; /* Sem fundo - só logos */
	}

	.vhome-cert__card {
		background: transparent;
		border-radius: 0;
		box-shadow: none;
	}

	/* 4. Centralização e Padding Mobile */
	.vhome-hero__content {
		padding-inline: 20px;
		padding-top: 150px;
		text-align: center;
		align-items: center;
		width: 100%;
	}

	/* Trevo MAIOR no mobile */
	.vhome-unified-wrap .vertex-fold-treinamentos {
		padding-top: 60px;
	}

	.vhome-unified-wrap .vertex-quadrant-grid {
		width: clamp(22rem, 75vw, 1000px);
		aspect-ratio: 1;
	}

	.vhome-unified-wrap .vertex-quadrant {
		padding: clamp(1.75rem, 5vw, 3.5rem);
	}

	.vhome-hero__title,
	.vhome-hero__subtitle {
		text-align: center;
	}

	/* Ajustar fonte do Hero — MAIORES para mobile */
	.vhome-hero__title {
		font-size: clamp(2rem, 8vw, 3.5rem);
	}

	.vhome-hero__subtitle {
		font-size: clamp(1rem, 3vw, 1.5rem);
	}

	.vhome-sobre__content {
		text-align: center;
		align-items: center;
	}

	.vhome-sobre__stats {
		justify-content: center;
	}

	.vhome-section-header {
		align-items: center;
		text-align: center;
	}

	.vhome-clientes__stats {
		text-align: center;
	}

	.vhome-cert__grid {
		justify-items: center;
	}

	.vhome-clientes__track {
		padding-left: 20px;
		padding-right: 20px;
		margin-left: -20px;
		margin-right: -20px;
	}

	.vhome-blog {
		background: #ffffff !important; /* Fundo limpo para separar da onda laranja */
		padding: 195px 0 80px !important; /* Removi padding lateral daqui */
		position: relative;
		z-index: 10;
		overflow: hidden;
	}

	.vhome-blog__header {
		text-align: center;
		align-items: center;
		margin-bottom: 48px; /* Mais espaço abaixo do título */
	}

	.vhome-blog__header-actions {
		width: 100%;
	}
	
	.vhome-blog__nav {
		display: flex !important; /* Sempre visível no mobile */
	}
	
	.vhome-blog .container {
		width: 100% !important;
		max-width: 100% !important;
		margin: 0 auto !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
		overflow: hidden;
	}

	.vhome-blog__grid {
		display: flex !important;
		overflow-x: auto !important;
		scroll-snap-type: x mandatory;
		gap: 20px;
		padding-bottom: 20px;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.vhome-blog__grid::-webkit-scrollbar {
		display: none;
	}

	.vhome-blog__card {
		flex: 0 0 100% !important; /* Apenas 1 card por vez no mobile */
		max-width: none !important;
		scroll-snap-align: center;
	}

	/* 6. Carrossel de Certificações com Dots */
	.vhome-cert {
		padding: 140px 0 200px !important; /* Subindo o conteúdo em 100px */
	}

	.vhome-cert .container {
		max-width: 100% !important;
		width: 100% !important;
		margin: 0 auto !important;
		padding-left: 20px !important;
		padding-right: 20px !important;
	}

	.vhome-cert__grid {
		display: flex;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		gap: 24px;
		padding-bottom: 24px;
	}

	.vhome-cert__card {
		flex: 0 0 100% !important; /* 1 card por vez no mobile */
		max-width: none !important;
		scroll-snap-align: center;
	}

	/* Dots de navegação */
	.vhome-cert__dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 16px;
	}

	.vhome-cert__dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.3);
		border: none;
		cursor: pointer;
		transition: background 0.3s;
	}

/* Seção Certificações: Mantém overflow visible para efeitos de design */
.vhome-cert {
    position: relative;
    overflow: visible; 
}

	.vhome-cert__dot.active,
	.vhome-cert__dot:hover {
		background: var(--vhome-secondary, #f47726);
	}

	/* Remover espaço entre newsletter e footer */
	.vhome-newsletter {
		margin-bottom: 0 !important;
		padding-bottom: 48px;
	}

	/* Remover underline do hover nos produtos */
	.vhome-produtos__card:hover {
		text-decoration: none;
	}

	.vhome-produtos__card:hover .vhome-produtos__card-name {
		text-decoration: none;
	}
}

/* ================================================================
   IPAD AIR 5 FIX (768px - 834px) — VIEWPORT CRÍTICO
   ================================================================ */
@media (min-width: 768px) and (max-width: 834px) {

	/* Background tartaruga na DIREITA */
	.vhome-unified-wrap {
		background-position: right center;
	}

	/* Blog container 1440px centralizado */
	.vhome-blog {
		max-width: 1440px;
		margin: 0 auto;
		padding-left: 24px;
		padding-right: 24px;
	}

	.vhome-blog .container,
	.vhome-blog__grid {
		max-width: 1440px;
		margin: 0 auto;
	}

	/* Hero content com largura adequada para 820px */
	.vhome-hero__content {
		max-width: 100%;
		padding-inline: 24px;
	}

	/* Grid de produtos: 2 colunas para não ficar espremido */
	.vhome-produtos__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

/* ================================================================
   IPAD PRO 11"/12.9" E TABLETS MAIORES (835px+)
   ================================================================ */
@media (min-width: 835px) and (max-width: 1024px) {

	/* Blog container 1440px centralizado */
	.vhome-blog {
		max-width: 1440px;
		margin: 0 auto;
		padding-left: 40px;
		padding-right: 40px;
	}

	/* Grid de produtos: 3 colunas */
	.vhome-produtos__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vhome-cert__card img {
	width: 100% !important;
	height: auto !important;
	display: block;
	object-fit: contain;
}

/* ================================================================
   TARTARUGA FLUTUANTE (tortuguita.png)
   Posicionada FORA do unified-wrap para evitar overflow:hidden
   ================================================================ */
.vhome-turtle-anchor {
    position: relative;
    z-index: 50;
    width: 100%;
    text-align: right;
    margin-top: -140px;
    margin-bottom: -180px;
    pointer-events: none;
    line-height: 0;
    overflow: hidden;         /* Impede scroll horizontal */
}

.vhome-tortuguita {
    display: inline-block !important;
    width: 350px;
    height: auto;
    margin-right: -20px;      /* Puxa para a direita, encosta na borda */
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1.2s ease, transform 1.2s ease;
    /* SEM animação flutuante — evita corte e scroll horizontal */
}

.vhome-tortuguita.vhome-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Desktop grande */
@media (min-width: 1024px) {
    .vhome-turtle-anchor {
        margin-top: -170px;
        margin-bottom: -200px;
    }
    .vhome-tortuguita {
        width: 450px;
        margin-right: -20px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .vhome-tortuguita {
        width: 300px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .vhome-turtle-anchor {
        margin-top: -160px;
        margin-bottom: -160px;
    }
    .vhome-tortuguita {
        width: 380px;
        margin-right: -20px;
    }
}



