/**
 * Page sections & scaffolding (solid backgrounds Phase 3)
 * @package Vertex
 */

/* Home hero */
.hero {
	position: relative;
	min-height: var(--hero-min-height);
	color: var(--color-neutral-lightest);
	overflow: hidden;
	background: var(--scaffold-hero-bg);
}

/* Home: header é fixed — hero começa no topo do documento, sem margin negativo */
body.home:has(.hero) .hero,
body.home.vertex-home-hero .hero {
	margin-top: 0;
}

body.home:has(.hero) .hero__container,
body.home.vertex-home-hero .hero__container {
	padding-top: calc(var(--header-height) + var(--hero-content-padding-top));
}

.hero__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.hero__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* Arte do hero (faixas laranja) costuma ficar nas bordas; centro com cover cortava demais em alguns viewports */
	object-position: var(--hero-bg-object-position);
}


.hero__placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		var(--color-primary) 0%,
		var(--color-primary-light) 100%
	);
	opacity: 0.85;
}

.hero__container {
	position: relative;
	z-index: 1;
	padding-top: var(--hero-content-padding-top);
	padding-bottom: var(--hero-content-padding-bottom);
}

.hero__content {
	max-width: var(--hero-content-max-width);
}

.hero__title {
	font-weight: var(--fw-bold);
	font-size: var(--fs-h1);
	line-height: var(--lh-tight);
	display: flex;
	flex-direction: column;
	margin: 0;
}

.hero__title-line {
	display: block;
}

.hero__title-line--accent {
	color: var(--color-secondary);
}

.hero__title-line--light {
	color: var(--color-neutral-lightest);
}

.hero__content p {
	margin-top: var(--hero-text-gap);
	font-weight: var(--fw-regular);
	font-size: 1.25rem;
	line-height: 1.625;
	max-width: var(--hero-p-max-width);
}

/* Alternating sections */
.vertex-section {
	padding: var(--section-space-y) 0;
}

.vertex-section--a {
	background: var(--scaffold-alt-a);
}

.vertex-section--b {
	background: var(--scaffold-alt-b);
}

/* Blog: sem faixa cinzenta — herda o fundo da página / secção Elementor. */
.vertex-blog-section.vertex-section--b {
	background: transparent;
}

/* Blog em shortcode / Elementor: sem padding da secção (espaçamento no construtor). */
.vertex-blog-section.vertex-blog-section--embed {
	padding: 0;
}

/* Shortcode/Elementor: container sem max-width nem padding lateral (controlado no construtor). */
.vertex-blog-section__container--embed {
	max-width: none;
	margin-inline: 0;
	padding-inline: 0;
	width: 100%;
}

/* Grelha de posts — Figma: 32px entre cards */
.vertex-grid--3:has(.vertex-card--post) {
	gap: 2rem;
}

.vertex-section__header {
	margin-bottom: 2rem;
	max-width: 42rem;
}

.vertex-section__badge {
	display: inline-block;
	font-size: var(--fs-small);
	font-weight: var(--fw-bold);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-secondary);
	margin-bottom: 0.5rem;
}

.vertex-grid {
	display: grid;
	gap: 1.5rem;
}

.vertex-grid--2 {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.vertex-grid--2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

.vertex-grid--3 {
	grid-template-columns: 1fr;
}

@media (min-width: 768px) {
	.vertex-grid--3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.vertex-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vertex-grid--4 {
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 768px) {
	.vertex-grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Stats */
.vertex-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 768px) {
	.vertex-stats {
		grid-template-columns: repeat(4, 1fr);
	}
}

.vertex-stat {
	background: var(--color-neutral-lightest);
	padding: 1.25rem;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-card);
	text-align: center;
}

.vertex-stat__value {
	font-size: 1.75rem;
	font-weight: var(--fw-bold);
	color: var(--color-primary);
}

.vertex-stat__label {
	font-size: var(--fs-small);
	margin-top: 0.25rem;
}

/* Blog listing */
.vertex-blog-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.vertex-blog-tabs a {
	padding: 0.4rem 0.85rem;
	border-radius: var(--radius-full);
	background: var(--color-neutral-light);
	font-size: var(--fs-small);
	font-weight: var(--fw-medium);
}

.vertex-blog-tabs a.is-active {
	background: var(--color-primary);
	color: var(--color-neutral-lightest);
}

/* Two column page layout */
.vertex-layout-sidebar {
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.vertex-layout-sidebar {
		grid-template-columns: 260px 1fr;
		align-items: start;
	}

	.vertex-layout-sidebar--reverse {
		grid-template-columns: 1fr 300px;
	}
}

/* Single post article */
.vertex-article {
	max-width: 48rem;
	margin-inline: auto;
}

.vertex-article__header {
	padding: var(--section-space-y) 0 2rem;
}

.vertex-article__meta {
	font-size: var(--fs-small);
	color: var(--color-neutral-dark);
	margin-top: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.vertex-article__featured {
	margin-bottom: 2rem;
}

.vertex-article__featured img {
	width: 100%;
	height: auto;
	border-radius: var(--radius-sm);
}

.vertex-article__body {
	padding-bottom: var(--section-space-y);
}

.vertex-article__footer {
	padding-bottom: var(--section-space-y);
}

.vertex-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.vertex-article__tag {
	padding: 0.25rem 0.75rem;
	border-radius: var(--radius-full);
	background: var(--color-neutral-light);
	font-size: var(--fs-small);
}

/* Woo shop shell */
.vertex-shop__layout {
	display: grid;
	gap: 2rem;
}

@media (min-width: 1024px) {
	.vertex-shop__layout {
		grid-template-columns: 240px 1fr;
		align-items: start;
	}
}

.vertex-page-hero--inline {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.vertex-shop__toolbar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.5rem;
	font-size: var(--fs-small);
}

/* Legal / prose */
.vertex-prose {
	max-width: 48rem;
}

.vertex-prose h2 {
	margin-top: 2rem;
}

/* Contact page map placeholder */
.vertex-map-placeholder {
	aspect-ratio: 16 / 9;
	background: var(--scaffold-placeholder);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-neutral-lightest);
	font-size: var(--fs-small);
}

/* Service row (treinamentos) */
.vertex-service-row {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.vertex-service-row {
		grid-template-columns: 1fr 1fr;
	}

	.vertex-service-row--reverse .vertex-service-row__media {
		order: 2;
	}
}

.vertex-service-row__media {
	min-height: 200px;
	background: var(--scaffold-placeholder);
	border-radius: var(--radius-sm);
}

/* Timeline simple */
.vertex-timeline {
	display: grid;
	gap: 1.25rem;
	padding-left: 1rem;
	border-left: 2px solid var(--color-primary-lighter);
}

.vertex-timeline__item {
	position: relative;
}

.vertex-timeline__item::before {
	content: "";
	position: absolute;
	left: -1.35rem;
	top: 0.35rem;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--color-secondary);
}

/* =====================================================================
   Home — wrapper das dobras 2 + 3
   ===================================================================== */

.vertex-home-dobra-dupla {
	position: relative;
	display: flex;
	flex-direction: column;
}

/* =====================================================================
   Home — 2ª dobra: Treinamentos e Consultorias
   Fundo: Home-1.png via <img> com object-fit:cover (padrão da hero).
   Conteúdo: título + subtítulo + trevo (grid 2×2) em HTML puro.
   O trevo usa margin-bottom negativo para sobrepor a 3ª dobra (Home-2).
   ===================================================================== */

/* ---- Seção principal ---- */
.vertex-fold-treinamentos {
	position: relative;
	z-index: 2;
	overflow: visible;
	color: var(--color-neutral-lightest);
	background-color: var(--color-primary);
	min-height: var(--trein-min-height);
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
	padding-bottom: 0;
}

/* ---- Camada de fundo (mesmo padrão da hero) ---- */
.vertex-fold-treinamentos__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.vertex-fold-treinamentos__bg-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/* Sem imagem de fundo: gradiente sólido */
.vertex-fold-treinamentos--no-bg {
	background-image: linear-gradient(
		160deg,
		var(--color-primary) 0%,
		#0a1628 50%,
		var(--color-primary-light) 100%
	);
}

.vertex-fold-treinamentos__bg-placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		160deg,
		var(--color-primary) 0%,
		#0a1628 50%,
		var(--color-primary-light) 100%
	);
}

/* ---- Conteúdo interno (acima do __bg) ---- */
.vertex-fold-treinamentos__inner {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	/* Alinha o bloco do título à altura do horizonte na foto Home-1 (16:9, --trein-min-height) */
	padding-top: clamp(3.25rem, calc(var(--trein-min-height) * 0.36), 18rem);
	padding-bottom: clamp(2rem, 5vw, 3rem);
	text-align: center;
}

/* ---- Título ---- */
.vertex-fold-treinamentos__title {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.2em 0.35em;
	margin: 0 0 1rem;
	font-weight: var(--fw-bold);
	font-size: clamp(2.125rem, 6.5vw, 4rem);
	line-height: 1.12;
}

.vertex-fold-treinamentos__title-accent {
	color: var(--color-secondary);
}

.vertex-fold-treinamentos__title-e {
	color: var(--color-neutral-lightest);
	font-weight: var(--fw-bold);
}

/* ---- Subtítulo ---- */
.vertex-fold-treinamentos__subtitle {
	margin: 0 auto 2.5rem;
	max-width: 36rem;
	font-size: clamp(0.9375rem, 2vw, 1.0625rem);
	line-height: 1.5;
	font-weight: var(--fw-regular);
	color: rgba(255, 255, 255, 0.95);
}

/* ---- Trevo (grid 2×2) ---- */
/*
 * Figma: Component 3 = 847×847px em artboard 1440px → 58.8vw.
 * Gap entre quadrantes ≈ 22px (2.58% de 847).
 * Mínimo 18rem (mobile), máximo 847px (tamanho do Figma).
 */
.vertex-quadrant-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(0.75rem, 1.5vw, 1.5rem);
	width: clamp(18rem, 58.8vw, 847px);
	margin-inline: auto;
	margin-top: auto;
	margin-bottom: clamp(-12rem, -32vw, -6rem);
	position: relative;
	z-index: 10;
	aspect-ratio: 1;
	filter: drop-shadow(0 16px 48px rgba(0, 0, 0, 0.32));
}

/* ---- Quadrante individual ---- */
.vertex-quadrant {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: clamp(1.25rem, 3.2vw, 2.75rem);
	text-align: center;
	text-decoration: none;
	color: var(--color-neutral-lightest);
	font-weight: var(--fw-bold);
	font-size: clamp(0.9375rem, 2vw, 1.5rem);
	line-height: 1.3;
	background: var(--color-secondary);
	transition: transform 0.2s ease, filter 0.2s ease;
}

.vertex-quadrant:hover {
	transform: translateY(-3px);
	filter: brightness(1.06);
}

/* Ícone + rótulo puxados para o centro do trevo (célula laranja não move) */
.vertex-quadrant__stack {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(0.4rem, 1vw, 0.75rem);
	text-align: center;
	transition: transform 0.2s ease;
}

.vertex-quadrant:nth-child(1) .vertex-quadrant__stack {
	transform: translate(clamp(0.35rem, 1.15vw, 0.85rem), clamp(0.45rem, 1.65vw, 1.15rem));
}
.vertex-quadrant:nth-child(2) .vertex-quadrant__stack {
	transform: translate(clamp(-0.85rem, -1.15vw, -0.35rem), clamp(0.45rem, 1.65vw, 1.15rem));
}
.vertex-quadrant:nth-child(3) .vertex-quadrant__stack {
	transform: translate(clamp(0.35rem, 1.15vw, 0.85rem), clamp(-1.15rem, -1.65vw, -0.45rem));
}
.vertex-quadrant:nth-child(4) .vertex-quadrant__stack {
	transform: translate(clamp(-0.85rem, -1.15vw, -0.35rem), clamp(-1.15rem, -1.65vw, -0.45rem));
}

.vertex-quadrant:focus-visible {
	outline: 3px solid var(--color-neutral-lightest);
	outline-offset: 3px;
}

/* Cantos arredondados em "trevo" — quarto de círculo conforme Figma */
.vertex-quadrant:nth-child(1) { border-radius: 100% 0.875rem 0.875rem 0.875rem; }
.vertex-quadrant:nth-child(2) { border-radius: 0.875rem 100% 0.875rem 0.875rem; }
.vertex-quadrant:nth-child(3) { border-radius: 0.875rem 0.875rem 0.875rem 100%; }
.vertex-quadrant:nth-child(4) { border-radius: 0.875rem 0.875rem 100% 0.875rem; }

.vertex-quadrant__visual {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-neutral-lightest);
}

.vertex-quadrant__icon {
	display: block;
	width: clamp(2.75rem, 8.2vw, 6.25rem);
	height: auto;
}

.vertex-quadrant__label {
	max-width: 11em;
}

/* =====================================================================
   Home — 3ª dobra: Sobre (Figma node 89-10483)
   Fundo BRANCO. A imagem Home-2.png é ocultada — o Figma mostra
   fundo limpo branco com grid de texto + imagem das pessoas.
   O trevo da 2ª dobra sobrepõe o topo desta seção via z-index.
   ===================================================================== */

.vertex-section.vertex-home-about-fold {
	position: relative;
	z-index: 1;
	margin-top: 0;
	padding-top: clamp(10rem, 42vw, 24rem);
	padding-bottom: clamp(7rem, 20vw, 16rem);
	/* visible: overflow-x clip cortava o bleed da coluna mídia (margin-right viewport) */
	overflow-x: clip;
}

.vertex-home-about-fold__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.vertex-home-about-fold__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Texto sobre foto escura: cinza/azul → branco (accent laranja mantido) */
.vertex-section.vertex-home-about-fold .vertex-about-grid__heading {
	color: #fff;
}

.vertex-section.vertex-home-about-fold .vertex-about-grid__text p {
	color: #fff;
}

.vertex-section.vertex-home-about-fold .vertex-about-grid__stat-number {
	color: #fff;
}

.vertex-section.vertex-home-about-fold .vertex-about-grid__stat-label {
	color: #fff;
}

.vertex-about-grid {
	display: block;
}

/* Conteúdo único: largura legível + padding simétrico (evita texto “cortado” nas bordas) */
.vertex-about-grid__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5rem;
	max-width: 48rem;
	margin-inline: auto;
	padding-top: clamp(2.5rem, 5vw, 4.5rem);
	padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
	padding-inline: clamp(1rem, 3vw, 2rem);
	min-width: 0;
}

.vertex-about-grid__badge {
	display: inline-flex;
	align-self: flex-start;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--color-primary, #13284c);
	background: #dbeafe;
	padding: 0.5rem 1rem;
	border-radius: 9999px;
}

.vertex-about-grid__heading {
	font-size: clamp(2rem, 3.5vw, 2.75rem);
	font-weight: 700;
	line-height: 1.2;
	color: var(--color-primary, #13284c);
	margin: 0;
}

.vertex-about-grid__heading--accent {
	color: var(--color-secondary, #f47726);
}

.vertex-about-grid__text {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.vertex-about-grid__text p {
	font-size: clamp(0.9375rem, 1.15vw, 1.0625rem);
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

.vertex-about-grid__stats {
	display: flex;
	gap: clamp(1.5rem, 3vw, 3rem);
	flex-wrap: wrap;
	padding-top: 0.75rem;
	padding-bottom: 0.5rem;
}

.vertex-about-grid__stat {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
}

.vertex-about-grid__stat-number {
	font-size: clamp(2.25rem, 3.5vw, 3.25rem);
	font-weight: 700;
	color: var(--color-primary, #13284c);
	line-height: 1;
}

.vertex-about-grid__stat-label {
	font-size: 0.875rem;
	color: #6b7280;
	line-height: 1.4;
}

.vertex-about-grid__cta {
	align-self: flex-start;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.vertex-section.vertex-home-about-fold .container {
	position: relative;
	z-index: 1;
	overflow: visible;
}

/* ---- Responsivo ---- */
@media (max-width: 900px) {
	.vertex-section.vertex-home-about-fold {
		padding-top: clamp(6rem, 28vw, 14rem);
		padding-bottom: clamp(4rem, 14vw, 10rem);
	}

}

/* =====================================================================
   Página — Treinamentos e Consultorias (Figma: node 162:6807)
   ===================================================================== */

.vtx-tec {
	background: #ffffff;
}

.vtx-tec-h2 {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1.2083333333333333em;
	margin: 0;
}

.vtx-tec-h2--orange {
	color: #f47726;
}

.vtx-tec-body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.625em;
	color: #181818;
	margin: 0;
}

.vtx-tec-body--white {
	color: #ffffff;
}

.vtx-tec-body--semibold {
	font-weight: 600;
}

.vtx-tec-hero {
	position: relative;
	height: 430.59px;
	overflow: hidden;
	background-color: #13284c;
	background-image: linear-gradient(91deg, rgba(19, 40, 76, 1) 11%, rgba(19, 40, 76, 0.26) 100%),
		url("../images/fundo/Imagens%20de%20fundo/Treinamentos_E_Consultorias/Treinamentos_E_Consultorias.png");
	background-size: cover;
	background-position: center top;
	background-attachment: fixed;
}

.vtx-tec-hero__container {
	width: 1280px;
	margin: 0 auto;
	padding: 80px 24px 0px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	box-sizing: border-box;
}

.vtx-tec-breadcrumb {
	display: flex;
	align-items: center;
}

.vtx-tec-breadcrumb__link,
.vtx-tec-breadcrumb__sep {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4285714285714286em;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

.vtx-tec-breadcrumb__sep {
	padding: 0px 12px;
}

.vtx-tec-breadcrumb__current {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4285714285714286em;
	color: #ffffff;
}

.vtx-tec-hero__title {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 48px;
	line-height: 1em;
	color: #ffffff;
	margin: 0;
}

.vtx-tec-hero__desc {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.625em;
	color: #ffffff;
	margin: 0;
	width: 758px;
	padding-top: 8px;
}

.vtx-tec-pillars {
	max-width: 1440px;
	margin: 0 auto;
	height: 661px;
	padding: 0px 104px 80px;
	display: flex;
	gap: 119px;
	box-sizing: border-box;
}

.vtx-tec-pillars__text {
	width: 610px;
	height: 661px;
	padding: 116px 0px;
	display: flex;
	align-items: flex-start;
	box-sizing: border-box;
}

.vtx-tec-pillars__text-inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

.vtx-tec-pillars__graphic {
	width: 518px;
	height: 661px;
	position: relative;
}

.vtx-tec-pillars__tiles {
	position: absolute;
	left: 0px;
	top: 67px;
	width: 510.61px;
	height: 507.93px;
}

.vtx-tec-pillars__tile {
	position: absolute;
	width: 244.61px;
	height: 244.61px;
}

.vtx-tec-pillars__tile--tl {
	left: 123px;
	top: 0px;
	background: #f47726;
	border-radius: 17.266666412353516px 120.86666870117188px 17.266666412353516px 17.266666412353516px;
}

.vtx-tec-pillars__tile--bl {
	left: 0px;
	top: 263.32px;
	background: #13284c;
	border-radius: 17.266666412353516px 17.266666412353516px 17.266666412353516px 120.86666870117188px;
}

.vtx-tec-pillars__tile--br {
	left: 266px;
	top: 263px;
	background: #ea512e;
	border-radius: 17.266666412353516px 17.266666412353516px 120.86666870117188px 17.266666412353516px;
}

.vtx-tec-pillars__item {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.vtx-tec-pillars__item--treinamentos {
	left: 178px;
	top: 82px;
	width: 134px;
	height: 101.71px;
}

.vtx-tec-pillars__item--consultoria {
	left: 64.75px;
	top: 328.07px;
	width: 113px;
	height: 113.7px;
}

.vtx-tec-pillars__item--emergencia {
	left: 300.73px;
	top: 328.07px;
	width: 154.2px;
	height: 112.94px;
}

.vtx-tec-pillars__icon {
	display: block;
}

.vtx-tec-pillars__icon--treinamentos {
	width: 86.29px;
	height: 64.71px;
	margin-left: 17.91px;
}

.vtx-tec-pillars__icon--consultoria {
	width: 79.35px;
	height: 78.79px;
	margin-left: 16.79px;
}

.vtx-tec-pillars__icon--emergencia {
	width: 70.06px;
	height: 61.06px;
	margin-left: 43.17px;
}

.vtx-tec-pillars__label {
	margin-top: 0px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 19.766862869262695px;
	line-height: 1.3125000180922928em;
	text-align: center;
	color: #ffffff;
}

.vtx-tec-pillars__label--treinamentos {
	margin-top: 11px;
}

.vtx-tec-pillars__label--consultoria {
	margin-top: 8.91px;
	line-height: 1.3125000180922928em;
}

.vtx-tec-pillars__label--emergencia {
	line-height: 1.0625000422153497em;
	margin-top: 9.88px;
}

.vtx-tec-service {
	max-width: 1440px;
	margin: 0 auto;
	height: 889px;
	padding: 80px 104px;
	box-sizing: border-box;
}

.vtx-tec-service--treinamentos {
	background: url("../images/fundo/Imagens%20de%20fundo/Treinamentos_E_Consultorias/Treinamentos_E_Consultorias-2.png") center / cover no-repeat;
}

.vtx-tec-service--consultoria {
	background: url("../images/fundo/Imagens%20de%20fundo/Treinamentos_E_Consultorias/Treinamentos_E_Consultorias-3.png") center / cover no-repeat;
}

.vtx-tec-service--emergencia {
	background: url("../images/fundo/Imagens%20de%20fundo/Treinamentos_E_Consultorias/Treinamentos_E_Consultorias-4.png") center / cover no-repeat;
}

.vtx-tec-service__inner {
	display: flex;
	gap: 64px;
	align-items: center;
}

.vtx-tec-service__inner--reverse {
	flex-direction: row-reverse;
}

.vtx-tec-service__text {
	width: 610px;
	height: 767px;
	padding: 116px 0px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	box-sizing: border-box;
}

.vtx-tec-service__media {
	width: 726px;
	height: 809px;
}

.vtx-tec-btn {
	display: inline-flex;
	align-items: center;
	padding: 16px 32px;
	border-radius: 8px;
	background: #f47726;
	color: #ffffff;
	text-decoration: none;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5555555555555556em;
	width: fit-content;
}

.vtx-tec-btn__icon {
	margin-left: 12px;
	display: block;
	width: 28px;
	height: 18px;
}

.vtx-tec-card {
	position: relative;
	width: 726px;
	height: 809px;
}

.vtx-tec-card__frame {
	position: absolute;
	left: 78px;
	top: 35px;
	width: 654px;
	height: 762px;
}

.vtx-tec-card__image {
	position: absolute;
	left: 78px;
	top: 0px;
	width: 648px;
	height: 756px;
	box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1), 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.vtx-tec-faq {
	max-width: 1440px;
	margin: 0 auto;
	padding: 80px 272px;
	box-sizing: border-box;
	background: #ffffff;
}

.vtx-tec-faq__container {
	display: flex;
	flex-direction: column;
	gap: 64px;
}

.vtx-tec-faq__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.vtx-tec-faq__badge {
	display: inline-flex;
	justify-content: center;
	padding: 8px 16px;
	border-radius: 9999px;
	background: rgba(255, 102, 0, 0.1);
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4285714285714286em;
	color: #f47726;
}

.vtx-tec-faq__title {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.1111111111111112em;
	color: #181818;
	margin: 0;
	text-align: center;
}

.vtx-tec-faq__subtitle {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.4em;
	color: #9d9d9d;
	margin: 0;
	text-align: center;
}

.vtx-tec-faq__items {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.vtx-tec-faq__item {
	background: #ffffff;
	border-radius: 12px;
	padding: 24px;
	box-sizing: border-box;
}

.vtx-tec-faq__trigger {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5555555555555556em;
	color: #181818;
	text-align: left;
}

.vtx-tec-faq__chevron {
	width: 20px;
	height: 20px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.vtx-tec-faq__trigger[aria-expanded="true"] .vtx-tec-faq__chevron {
	transform: rotate(180deg);
}

.vtx-tec-faq__panel {
	margin-top: 16px;
}

.vtx-tec-faq__a {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.625em;
	color: #9d9d9d;
	margin: 0;
}

.vtx-tec-cta {
	max-width: 1440px;
	margin: 0 auto;
	padding: 80px 272px;
	box-sizing: border-box;
	background: linear-gradient(90deg, rgba(19, 40, 76, 1) 0%, rgba(39, 82, 157, 1) 100%);
}

.vtx-tec-cta__container {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.vtx-tec-cta__title {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.1111111111111112em;
	text-align: center;
	color: #ffffff;
	margin: 0;
}

.vtx-tec-cta__subtitle {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.625em;
	text-align: center;
	color: #ffffff;
	margin: 0;
}

.vtx-tec-cta__buttons {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 16.010000228881836px;
	padding: 16px 0px;
}

.vtx-tec-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 19.5px 40px 20.5px;
	border-radius: 8px;
	text-decoration: none;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 1.5555555555555556em;
}

.vtx-tec-cta__btn--primary {
	background: #f47726;
	color: #ffffff;
}

.vtx-tec-cta__btn--secondary {
	background: #ffffff;
	color: #13284c;
}

.vtx-tec-cta__divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.2);
	margin-top: 40px;
}

.vtx-tec-cta__meta {
	display: flex;
	justify-content: center;
	gap: 32px;
}

.vtx-tec-cta__meta-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.vtx-tec-cta__meta-icon {
	width: 30px;
	height: 30px;
}

.vtx-tec-cta__meta-title {
	margin-top: 0px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.5em;
	color: #ffffff;
}

.vtx-tec-cta__meta-value {
	padding-top: 4px;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5em;
	color: rgba(255, 255, 255, 0.8);
}
