/* Eco X — /home2/ engenharia e infraestrutura móvel. */

.ecox-home2-landing .ecox-landing-main {
	background: var(--white);
	padding: 0;
}

.ecox-home2-landing .justica-section {
	padding: clamp(40px, 5.5vw, 64px) 0;
}

.ecox-home2-landing .justica-section-title {
	max-width: 16ch;
	letter-spacing: -.03em;
}

.ecox-home2-landing .justica-section-sub {
	max-width: 52ch;
}

.ecox-home2-landing .justica-inner {
	box-sizing: border-box;
	width: min(1240px, 90vw);
	max-width: 100%;
	margin-inline: auto;
}

.home2-hero {
	position: relative;
	min-height: min(92vh, 900px);
	overflow: hidden;
	background: #0a0a0a;
}

.home2-hero:focus {
	outline: none;
}

.home2-hero__slide {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	min-height: 100%;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .8s ease, visibility .8s ease;
}

.home2-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	z-index: 1;
}

.home2-hero__bg,
.home2-hero__overlay {
	position: absolute;
	inset: 0;
}

.home2-hero__bg {
	min-height: 100%;
	background-position: center 18%;
	background-size: cover;
	background-repeat: no-repeat;
	transform: scale(1.08);
}

.home2-hero__slide.is-active .home2-hero__bg {
	animation: home2-kenburns 6.4s ease-out forwards;
}

.home2-hero__overlay,
.ecox-home2-landing .home2-destaque__overlay {
	background: linear-gradient(
		180deg,
		rgba(6, 6, 6, .62) 0%,
		rgba(6, 6, 6, .18) 34%,
		rgba(6, 6, 6, .08) 52%,
		rgba(6, 6, 6, .58) 78%,
		rgba(6, 6, 6, .9) 100%
	);
}

.home2-hero__content {
	position: relative;
	z-index: 1;
	box-sizing: border-box;
	width: min(1240px, 90vw);
	max-width: 100%;
	margin-inline: auto;
	padding: 0 0 clamp(108px, 14vw, 148px);
}

.home2-hero__content > * {
	opacity: 0;
	transform: translateY(18px);
}

.home2-hero__slide.is-active .home2-hero__content > * {
	opacity: 1;
	transform: none;
	transition: opacity .7s ease, transform .7s ease;
}

.home2-hero__slide.is-active .home2-hero__content > *:nth-child(2) { transition-delay: .08s; }
.home2-hero__slide.is-active .home2-hero__content > *:nth-child(3) { transition-delay: .14s; }
.home2-hero__slide.is-active .home2-hero__content > *:nth-child(4) { transition-delay: .2s; }

.home2-hero__title {
	max-width: 13ch;
	margin: 0 0 16px;
	color: var(--white);
}

.ecox-home2-landing .home2-hero__title em {
	padding: 0 .12em;
	background: #fff;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	color: var(--red);
	font-style: italic;
}

.home2-hero__tag {
	max-width: 40ch;
	margin: 0;
	color: rgba(255, 255, 255, .7);
	font-size: .95rem;
	line-height: 1.55;
}

.home2-hero__bar {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, .55), transparent);
}

.home2-hero__bar-inner {
	box-sizing: border-box;
	width: min(1240px, 90vw);
	max-width: 100%;
	margin-inline: auto;
	display: flex;
	align-items: flex-end;
	gap: 16px;
	padding: 18px 0 16px;
}

.home2-hero__nav {
	display: flex;
	flex: 1 1 auto;
	flex-wrap: nowrap;
	justify-content: space-between;
	gap: 8px;
	min-width: 0;
}

.home2-hero__dot {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
	padding: 0 0 10px;
	border: 0;
	border-bottom: 2px solid rgba(255, 255, 255, .18);
	background: transparent;
	color: rgba(255, 255, 255, .48);
	font: inherit;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
	transition: color .25s ease, border-color .25s ease;
}

.home2-hero__dot span {
	color: var(--red);
	font-size: .62rem;
	letter-spacing: .14em;
	opacity: .55;
}

.home2-hero__dot.is-active,
.home2-hero__dot:hover {
	color: var(--white);
	border-bottom-color: var(--red);
}

.home2-hero__dot.is-active span,
.home2-hero__dot:hover span {
	opacity: 1;
}

.home2-hero__arrow {
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .28);
	background: transparent;
	color: var(--white);
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	transition: border-color .2s ease, background .2s ease;
}

.home2-hero__arrow:hover {
	border-color: var(--white);
	background: rgba(255, 255, 255, .08);
}

.home2-hero__progress {
	height: 2px;
	background: rgba(255, 255, 255, .12);
}

.home2-hero__progress-bar {
	display: block;
	width: 0;
	height: 100%;
	background: var(--red);
}

.home2-hero__progress-bar.is-running {
	animation: home2-hero-progress 6s linear forwards;
}

@keyframes home2-kenburns {
	from { transform: scale(1.12); }
	to { transform: scale(1); }
}

@keyframes home2-hero-progress {
	from { width: 0; }
	to { width: 100%; }
}

.home2-cases {
	background: var(--white);
}

.home2-cases .justica-section-title {
	max-width: 16ch;
}

.home2-cases__viewport {
	overflow: hidden;
	border: 1px solid var(--rule);
	transition: height .55s ease;
}

.home2-cases__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	gap: 1px;
	background: var(--rule);
	will-change: transform;
	transition: transform .7s cubic-bezier(.22, 1, .36, 1);
}

.home2-cases__row {
	display: grid;
	grid-template-columns: 168px minmax(0, 1fr);
	gap: 16px 20px;
	align-items: center;
	padding: 16px 18px;
	background: var(--white);
}

.home2-cases__media {
	display: block;
	overflow: hidden;
	background: #111;
}

.home2-cases__media img {
	display: block;
	width: 100%;
	height: 160px;
	object-fit: cover;
	transition: transform .6s ease;
}

.home2-cases__media:hover img {
	transform: scale(1.04);
}

.home2-cases__title {
	margin: 6px 0 6px;
	font-family: var(--font-text);
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
	text-transform: uppercase;
}

.home2-cases__title a {
	color: var(--black);
	text-decoration: none;
}

.home2-cases__title a:hover {
	color: var(--red);
}

.home2-cases__text {
	margin: 0;
	max-width: 62ch;
	color: var(--muted);
	font-size: .88rem;
	line-height: 1.5;
}

.home2-cases__action {
	grid-column: 2;
	flex-shrink: 0;
}

.home2-cases__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 16px;
}

.home2-cases__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--rule);
	background: var(--white);
	color: var(--black);
	font-size: .95rem;
	line-height: 1;
	cursor: pointer;
}

.home2-cases__arrow:hover {
	border-color: var(--black);
	background: var(--black);
	color: var(--white);
}

.home2-cases__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.home2-cases__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, .18);
	cursor: pointer;
}

.home2-cases__dot.is-active {
	background: var(--black);
}

.home2-cases__more {
	margin: 20px 0 0;
	text-align: right;
}

.home2-cases__more a {
	color: var(--red);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-decoration: none;
	text-transform: uppercase;
}

.home2-cases__more a:hover {
	color: var(--black);
}

.home2-cases__empty {
	margin: 0;
}

.ecox-home2-landing .home2-destaque__bg {
	background-position: center;
}

.home2-escala {
	padding: 22px 0;
	background: #0a0a0a;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.home2-escala__inner {
	display: grid;
	grid-template-columns: minmax(180px, 22ch) minmax(0, 1fr);
	gap: 10px 40px;
	align-items: center;
}

.home2-escala__title {
	margin: 0;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 800;
	line-height: 1.25;
}

.home2-escala__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.home2-escala__item {
	padding: 0 16px 0 0;
	border-right: 1px solid rgba(255, 255, 255, .1);
}

.home2-escala__item:last-child {
	border-right: 0;
	padding-right: 0;
}

.home2-escala__item + .home2-escala__item {
	padding-left: 16px;
}

.home2-escala__item strong {
	display: block;
	margin: 0 0 4px;
	color: rgba(255, 255, 255, .42);
	font-size: .62rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.home2-escala__item span {
	display: block;
	color: var(--white);
	font-size: .82rem;
	font-weight: 600;
	line-height: 1.3;
}

.home2-escala__dots {
	display: none;
}

.home2-declaracao {
	background: var(--white);
}

.ecox-home2-landing .home2-declaracao__split {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: clamp(24px, 4vw, 56px);
}

.ecox-home2-landing .home2-declaracao__text {
	flex: 0 1 36%;
	min-width: 0;
}

.home2-declaracao__text .justica-section-title {
	max-width: 16ch;
}

.home2-declaracao__lead {
	max-width: 28ch;
	margin: 22px 0 0;
	padding: 4px 0 4px 16px;
	border-left: 3px solid var(--black);
	color: var(--black);
	font-size: clamp(1.14rem, 1.7vw, 1.36rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: -.025em;
}

.home2-declaracao__copy {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(24px, 4vw, 48px);
	width: 100%;
	max-width: none;
	margin: clamp(28px, 4vw, 40px) 0 0;
	padding-top: clamp(24px, 3vw, 36px);
	border-top: 1px solid var(--rule);
}

.ecox-home2-landing .home2-declaracao__video {
	flex: 1 1 64%;
	position: relative;
	width: 64%;
	min-width: 0;
	max-width: none;
	margin: 0;
	overflow: hidden;
	background: #0a0a0a;
	aspect-ratio: 16 / 9;
	max-height: none;
}

body.ecox-landing-page.ecox-home2-landing .ecox-landing-main .home2-declaracao__video iframe,
body.ecox-landing-page.ecox-home2-landing .ecox-landing-main .home2-declaracao__video iframe[src*="youtube"],
body.ecox-landing-page.ecox-home2-landing .ecox-landing-main .home2-declaracao__video iframe[src*="youtu.be"] {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: none;
	aspect-ratio: auto;
	border: 0;
}

.home2-declaracao__point {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 16px 18px;
	align-items: start;
}

.home2-declaracao__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid var(--rule);
	background: var(--white);
	color: var(--red);
}

.home2-declaracao__icon svg {
	display: block;
	width: 22px;
	height: 22px;
}

.home2-declaracao__point strong {
	display: block;
	margin: 0 0 8px;
	color: var(--black);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.home2-declaracao__copy p {
	margin: 0;
	color: var(--mid);
	font-size: .98rem;
	line-height: 1.65;
}

.home2-diferencial {
	background: var(--bg);
}

.home2-diferencial__split {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
	gap: clamp(28px, 4vw, 64px);
	align-items: center;
}

.home2-diferencial__media {
	margin: 0;
	background: transparent;
}

.home2-diferencial__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	background: transparent;
}

.home2-diferencial__copy .justica-section-title {
	max-width: 14ch;
}

.home2-diferencial__carousel {
	margin-top: clamp(28px, 4vw, 48px);
}

.home2-diferencial__slides {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
}

.home2-diferencial__slide {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 220px;
	padding: 28px 24px 32px;
	overflow: hidden;
	background: var(--white);
	cursor: pointer;
	transition: background .35s ease, color .35s ease;
}

.home2-diferencial__slide span {
	display: block;
	margin: 0 0 18px;
	color: rgba(0, 0, 0, .28);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .14em;
}

.home2-diferencial__slide strong {
	display: block;
	margin: 0 0 10px;
	color: var(--black);
	font-family: var(--font-display);
	font-size: clamp(1.2rem, 1.7vw, 1.55rem);
	font-weight: 800;
	letter-spacing: -.03em;
	line-height: 1.1;
}

.home2-diferencial__slide p {
	margin: 0;
	color: var(--mid);
	font-size: .92rem;
	line-height: 1.5;
}

.home2-diferencial__slide::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 2px;
	background: transparent;
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
}

.home2-diferencial__slide.is-active {
	background: #0a0a0a;
}

.home2-diferencial__slide.is-active span {
	color: var(--red);
}

.home2-diferencial__slide.is-active strong {
	color: var(--white);
}

.home2-diferencial__slide.is-active p {
	color: rgba(255, 255, 255, .62);
}

.home2-diferencial__slide.is-active::after {
	background: var(--red);
	animation: home2-pilar-progress 3s linear forwards;
}

.home2-diferencial__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	margin-top: 14px;
}

.home2-diferencial__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid var(--rule);
	background: var(--white);
	color: var(--black);
	font-size: .95rem;
	line-height: 1;
	cursor: pointer;
}

.home2-diferencial__arrow:hover {
	border-color: var(--black);
	background: var(--black);
	color: var(--white);
}

@keyframes home2-pilar-progress {
	from { transform: scaleX(0); }
	to { transform: scaleX(1); }
}

.home2-segmentos {
	background: var(--white);
}

.home2-segmentos__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	grid-auto-rows: minmax(270px, 1fr);
	gap: 14px;
	min-height: 640px;
}

.home2-segmentos__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 270px;
	overflow: hidden;
	background: #111;
	color: inherit;
	text-decoration: none;
}

.home2-segmentos__card.is-featured {
	grid-row: 1 / span 2;
	min-height: 580px;
}

.home2-segmentos__photo {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	transition: transform .8s ease;
}

.home2-segmentos__card:hover .home2-segmentos__photo {
	transform: scale(1.06);
}

.home2-segmentos__photo::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(8, 8, 8, .18) 0%,
		rgba(8, 8, 8, .22) 42%,
		rgba(8, 8, 8, .88) 100%
	);
	content: "";
}

.home2-segmentos__body {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	margin-top: auto;
	padding: clamp(22px, 3vw, 34px);
}

.home2-segmentos__card h3 {
	margin: 0 0 8px;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.03em;
}

.home2-segmentos__body span {
	color: var(--red);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.home2-projetos {
	background: var(--bg);
}

.home2-projetos__grid {
	display: grid;
	grid-template-columns: 1.25fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 14px;
	min-height: 640px;
}

.home2-projetos__card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 280px;
	overflow: hidden;
	background: #111;
	color: inherit;
	text-decoration: none;
}

.home2-projetos__card:first-child {
	grid-row: 1 / span 2;
}

.home2-projetos__photo {
	position: absolute;
	inset: 0;
	display: block;
	background-position: center;
	background-size: cover;
	transition: transform .8s ease;
}

.home2-projetos__card:hover .home2-projetos__photo {
	transform: scale(1.06);
}

.home2-projetos__photo::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(8, 8, 8, .12) 0%,
		rgba(8, 8, 8, .2) 40%,
		rgba(8, 8, 8, .9) 100%
	);
	content: "";
}

.home2-projetos__copy {
	position: relative;
	z-index: 1;
	margin-top: auto;
	padding: clamp(22px, 3vw, 32px);
	background: transparent;
}

.home2-projetos__copy h3 {
	margin: 0 0 8px;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(1.3rem, 2vw, 1.8rem);
	font-weight: 900;
	line-height: 1;
	letter-spacing: -.03em;
}

.home2-projetos__copy p {
	margin: 0 0 16px;
	color: rgba(255, 255, 255, .66);
	font-size: .9rem;
	line-height: 1.55;
}

.home2-projetos__copy span {
	color: var(--red);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.home2-destaque {
	position: relative;
	min-height: min(820px, 90vh);
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #0a0a0a;
}

.home2-destaque__bg,
.home2-destaque__overlay {
	position: absolute;
	inset: 0;
}

.home2-destaque__bg {
	background-position: center;
	background-size: cover;
	transform: scale(1.04);
}

.home2-destaque__content {
	position: relative;
	z-index: 1;
	padding: clamp(40px, 6vw, 64px) 0;
}

.home2-destaque__title {
	max-width: 15ch;
	margin: 0;
	color: var(--white);
	font-family: var(--font-display);
	font-size: clamp(2rem, 4.4vw, 3.4rem);
	font-weight: 900;
	letter-spacing: -.03em;
	line-height: 1.05;
}

.home2-destaque__title span {
	display: block;
}

.home2-destaque__title em {
	color: var(--red);
	font-style: italic;
}

.home2-destaque__lead {
	max-width: 38ch;
	margin: 0 0 12px;
	color: var(--white);
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.45;
}

.home2-destaque__text {
	max-width: 42ch;
	margin: 0 0 28px;
	color: rgba(255, 255, 255, .58);
	font-size: .95rem;
	line-height: 1.6;
}

.home2-metodo {
	background: var(--white);
}

.home2-metodo__title {
	max-width: none;
	white-space: nowrap;
}

.home2-metodo__track {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home2-metodo__track::before {
	position: absolute;
	top: 15px;
	right: 6%;
	left: 6%;
	height: 1px;
	background: var(--rule);
	content: "";
}

.home2-metodo__track li {
	padding: 0 20px 0 0;
}

.home2-metodo__track li:last-child {
	padding-right: 0;
}

.home2-metodo__track li + li {
	padding-left: 20px;
}

.home2-metodo__track span {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	margin: 0 0 20px;
	border: 1px solid var(--rule);
	background: var(--white);
	color: var(--red);
	font-family: var(--font-display);
	font-size: .78rem;
	font-style: italic;
	font-weight: 900;
}

.home2-metodo__track strong {
	display: block;
	margin: 0 0 8px;
	color: var(--black);
	font-size: .72rem;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.home2-metodo__track p {
	margin: 0;
	color: var(--mid);
	font-size: .88rem;
	line-height: 1.5;
}

.home2-metodo__dots {
	display: none;
}

.home2-isca {
	position: relative;
	scroll-margin-top: 88px;
	overflow: hidden;
	background: linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
}

.home2-isca__grid {
	display: grid;
	grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr);
	gap: clamp(32px, 5vw, 72px);
	align-items: start;
}

.ecox-home2-landing .home2-isca__title {
	max-width: 22ch;
	color: var(--white);
}

.home2-isca__title span {
	display: block;
}

.ecox-home2-landing .home2-isca__title em {
	background: none;
	color: var(--red);
	font-style: italic;
}

.ecox-home2-landing .home2-isca__title em.is-light {
	color: var(--white);
}

.home2-isca__lead {
	max-width: 46ch;
	margin: 22px 0 0;
	color: rgba(255, 255, 255, .62);
	font-size: 1.02rem;
	line-height: 1.7;
}

.home2-isca__points {
	display: grid;
	gap: 0;
	margin: 36px 0 0;
	padding: 0;
	list-style: none;
}

.home2-isca__points li {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 4px 14px;
	padding: 4px 0 22px;
}

.home2-isca__points li + li {
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, .14);
}

.home2-isca__points li:last-child {
	padding-bottom: 0;
}

.home2-isca__points span {
	grid-row: 1 / span 2;
	color: var(--red);
	font-family: var(--font-display);
	font-size: .78rem;
	font-style: italic;
	font-weight: 900;
	line-height: 1.4;
}

.home2-isca__points strong {
	color: var(--white);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.home2-isca__points p {
	margin: 0;
	color: rgba(255, 255, 255, .5);
	font-size: .9rem;
	line-height: 1.5;
}

.home2-isca__card {
	position: relative;
	min-width: 0;
}

.home2-isca__mount {
	min-height: 420px;
}

.home2-isca .form-modal-shell--inline {
	max-width: none;
	max-height: none;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

.home2-isca .ecox-wizard-list {
	max-height: none;
}

.home2-isca__fallback {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	padding: 36px 32px;
	background: var(--white);
	border-top: 3px solid var(--red);
}

.home2-isca__fallback p {
	margin: 0;
	color: var(--mid);
	font-size: 1.02rem;
	line-height: 1.6;
}

.home2-isca__mount:has(.form-modal-shell) .home2-isca__fallback {
	display: none;
}

.home2-autoridade {
	padding: clamp(88px, 12vw, 140px) 0;
}

.home2-autoridade .case-pe-autoridade__title {
	max-width: 14ch;
	margin-bottom: clamp(40px, 6vw, 72px);
	font-size: clamp(2rem, 4.4vw, 3.3rem);
}

.home2-autoridade__facts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(28px, 5vw, 64px);
	padding-top: 28px;
	border-top: 1px solid rgba(255, 255, 255, .12);
}

.home2-autoridade__facts span {
	font-size: clamp(2.8rem, 6.4vw, 5.2rem);
}

.home2-clientes {
	background: #f4f4f4;
	padding-bottom: clamp(28px, 4vw, 40px);
}

.home2-clientes .justica-section-title {
	max-width: none;
}

.home2-clientes .justica-section-title span {
	display: block;
}

.home2-clientes__marquee {
	overflow: hidden;
	margin-top: 36px;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.home2-clientes__track {
	display: flex;
	align-items: center;
	gap: 24px;
	width: max-content;
	animation: home2-clientes-scroll 48s linear infinite;
}

.home2-clientes__marquee:hover .home2-clientes__track {
	animation-play-state: paused;
}

.home2-clientes__item {
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	min-width: 0;
	filter: grayscale(1);
	opacity: .72;
	transition: opacity .25s ease;
}

.home2-clientes__item:hover {
	opacity: .92;
}

.home2-clientes__item img {
	height: 68px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.home2-clientes__item span {
	color: var(--mid);
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: var(--tracking-ui);
	text-transform: uppercase;
}

@keyframes home2-clientes-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.home2-faq {
	background: var(--white);
}

.ecox-home2-landing .home2-faq .justica-section-title,
.home2-faq__title {
	max-width: none;
	white-space: nowrap;
}

.home2-faq .justica-faq__question,
.home2-faq .justica-faq__answer,
.home2-faq .landing-aeo__q-text,
.home2-faq .landing-aeo__answer {
	word-spacing: normal;
	white-space: normal;
}

.home2-faq__list,
.home2-faq .landing-aeo__faq {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	width: 100%;
	margin: 0;
	padding: 0;
	gap: 1px;
	background: var(--rule);
	border: 1px solid var(--rule);
}

.home2-faq__item,
.home2-faq .justica-faq__item,
.home2-faq .landing-aeo__item {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0;
	box-sizing: border-box;
	background: var(--white);
}

.home2-faq .justica-faq__question,
.home2-faq .landing-aeo__question {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
}

.home2-faq__num,
.home2-faq .landing-aeo__q-num {
	flex: none;
	min-width: 1.6rem;
	color: var(--red);
	font-family: var(--font-display);
	font-size: .78rem;
	font-style: italic;
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	line-height: 1.4;
}

.home2-faq .landing-aeo__q-text {
	flex: 1 1 auto;
	min-width: 0;
}

.home2-faq .justica-faq__answer,
.home2-faq .landing-aeo__answer {
	box-sizing: border-box;
	width: 100%;
	max-width: none;
}

@media (max-width: 1100px) {
	.home2-hero__dot {
		font-size: .62rem;
	}
}

@media (max-width: 980px) {
	.home2-diferencial__slides {
		grid-template-columns: 1fr 1fr;
	}

	.ecox-home2-landing .home2-declaracao__split {
		flex-direction: column-reverse;
		flex-wrap: wrap;
		gap: 22px;
	}

	.ecox-home2-landing .home2-declaracao__text,
	.ecox-home2-landing .home2-declaracao__video {
		flex: none;
		width: 100%;
	}

	.home2-declaracao__text .justica-section-title,
	.home2-declaracao__lead {
		max-width: none;
	}

	.home2-declaracao__copy,
	.home2-diferencial__split,
	.home2-isca__grid,
	.home2-segmentos__grid,
	.home2-projetos__grid,
	.home2-autoridade__facts {
		grid-template-columns: 1fr;
		grid-template-rows: none;
		min-height: 0;
	}

	.home2-escala__inner {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.home2-escala__grid {
		grid-template-columns: 1fr 1fr;
	}

	.home2-escala__item,
	.home2-escala__item + .home2-escala__item {
		padding: 10px 16px 10px 0;
		border-right: 1px solid rgba(255, 255, 255, .1);
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}

	.home2-escala__item:nth-child(2n) {
		padding-left: 16px;
		padding-right: 0;
		border-right: 0;
	}

	.home2-escala__item:nth-last-child(-n+2) {
		border-bottom: 0;
		padding-bottom: 0;
	}

	.home2-segmentos__card.is-featured,
	.home2-projetos__card:first-child {
		grid-row: auto;
		min-height: 420px;
	}

	.home2-metodo__track {
		grid-template-columns: 1fr 1fr;
	}

	.home2-metodo__track::before {
		display: none;
	}

	.home2-metodo__track li,
	.home2-metodo__track li + li {
		padding: 20px 0;
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .1);
	}

	.home2-metodo__track li,
	.home2-metodo__track li + li {
		border-bottom-color: var(--rule);
	}

	.home2-metodo__track li:last-child {
		border-bottom: 0;
	}

	.home2-diferencial__media img {
		height: auto;
	}

	.home2-destaque__title {
		max-width: none;
	}

	.home2-hero__arrow {
		display: none;
	}

	.home2-cases__list {
		grid-template-columns: 1fr;
	}

	.home2-cases__row {
		grid-template-columns: 180px minmax(0, 1fr);
	}

	.home2-hero__nav {
		justify-content: flex-start;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.home2-hero__nav::-webkit-scrollbar {
		display: none;
	}

	.home2-hero__dot {
		flex: none;
		min-width: 118px;
	}
}

@media (max-width: 640px) {
	.home2-escala__grid {
		display: flex;
		flex-wrap: nowrap;
		gap: 0;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.home2-escala__grid::-webkit-scrollbar {
		display: none;
	}

	.home2-escala__item,
	.home2-escala__item + .home2-escala__item,
	.home2-escala__item:nth-child(2n),
	.home2-escala__item:nth-last-child(-n+2),
	.home2-escala__item:last-child {
		flex: 0 0 100%;
		box-sizing: border-box;
		padding: 4px 4px 8px 0;
		border: 0;
		scroll-snap-align: start;
	}

	.home2-escala__dots {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
		margin-top: 12px;
	}

	.home2-escala__dot {
		width: 7px;
		height: 7px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgba(255, 255, 255, .28);
		cursor: pointer;
	}

	.home2-escala__dot.is-active {
		background: var(--white);
	}

	.ecox-home2-landing .justica-section-title {
		font-size: clamp(1.55rem, 8vw, 2.1rem);
	}

	.ecox-home2-landing .home2-faq .justica-section-title {
		font-size: clamp(1.05rem, 4.2vw, 1.7rem);
		white-space: nowrap;
	}

	.home2-metodo__title {
		white-space: normal;
	}

	.home2-clientes .justica-section-title {
		max-width: 14em;
	}

	.home2-metodo__track {
		display: flex;
		flex-wrap: nowrap;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.home2-metodo__track::-webkit-scrollbar {
		display: none;
	}

	.home2-metodo__track::before {
		display: none;
	}

	.home2-metodo__track li,
	.home2-metodo__track li + li,
	.home2-metodo__track li:last-child {
		flex: 0 0 100%;
		box-sizing: border-box;
		padding: 0 4px 8px 0;
		border: 0;
		scroll-snap-align: start;
	}

	.home2-metodo__dots {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 8px;
		margin-top: 14px;
	}

	.home2-metodo__dot {
		width: 7px;
		height: 7px;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgba(0, 0, 0, .22);
		cursor: pointer;
	}

	.home2-metodo__dot.is-active {
		background: var(--black);
	}

	.home2-hero {
		min-height: 82vh;
	}

	.home2-hero__title {
		max-width: none;
	}

	.home2-cases__row {
		grid-template-columns: 1fr;
		padding: 16px;
	}

	.home2-cases__media img {
		height: 200px;
	}

	.home2-cases__action {
		grid-column: auto;
	}

	.home2-diferencial__slides,
	.home2-metodo__track,
	.home2-projetos__grid {
		grid-template-columns: 1fr;
	}

	.home2-projetos__card,
	.home2-segmentos__card {
		min-height: 340px;
	}

	.home2-destaque {
		min-height: 72vh;
	}

	.home2-autoridade__facts span {
		font-size: clamp(2.2rem, 12vw, 3.2rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.home2-cases__viewport,
	.home2-cases__list {
		transition: none;
	}

	.home2-diferencial__slide,
	.home2-hero__slide,
	.home2-hero__content > *,
	.home2-cases__media img,
	.home2-segmentos__photo,
	.home2-projetos__photo,
	.home2-diferencial__media img {
		transition: none;
		animation: none;
	}

	.home2-hero__slide.is-active .home2-hero__bg,
	.home2-hero__progress-bar.is-running,
	.home2-clientes__track {
		animation: none;
	}

	.home2-hero__bg,
	.home2-destaque__bg {
		transform: none;
	}

	.home2-clientes__track {
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		gap: 8px 12px;
	}

	.home2-clientes__marquee {
		-webkit-mask-image: none;
		mask-image: none;
	}
}
