/*
 * Home — design/Home.dc.html.
 *
 * O corte de mobile é 880px, o do home.dc.js. As oito seções aparecem aqui na
 * mesma ordem do template.
 */

/* ================= 1. hero ================= */

.ec-home-hero {
	position: relative;
	overflow: hidden;
	min-height: 640px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	isolation: isolate;
	padding: 80px 48px;
}

/* A lâmina branca que corta o rodapé da foto na diagonal. */
.ec-hero-blade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 90px;
	z-index: 3;
	background: var(--ec-white);
	clip-path: polygon(0 100%, 100% 40%, 100% 100%);
}

.ec-home-hero-inner {
	position: relative;
	z-index: 5;
	max-width: var(--ec-max);
	margin: 0 auto;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.ec-home-hero-text {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 560px;
}

.ec-home-hero-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: var(--ec-size-hero);
	line-height: 1.08;
	letter-spacing: -.01em;
	color: var(--ec-white);
	margin: 0;
}

.ec-home-hero-lead {
	font-size: 19px;
	line-height: 30px;
	color: rgba(255, 255, 255, .85);
	margin: 0;
}

.ec-home-hero-actions {
	display: flex;
	gap: 14px;
	margin-top: 8px;
	flex-wrap: wrap;
}

.ec-pill-light {
	font-weight: 700;
	font-size: 16px;
	color: var(--ec-navy);
	background: var(--ec-white);
	padding: 16px 30px;
	border-radius: var(--ec-radius-pill);
	text-decoration: none;
	box-shadow: var(--ec-shadow-soft);
	transition: box-shadow .35s ease, transform .35s ease;
}

.ec-pill-light:hover {
	color: var(--ec-navy);
	box-shadow: var(--ec-shadow-lift);
	transform: translateY(-2px);
}

.ec-home-hero-pills {
	display: flex;
	gap: 10px;
	margin-top: 12px;
	flex-wrap: wrap;
}

.ec-industry-pill {
	font-weight: 600;
	font-size: 12px;
	color: var(--ec-navy-950);
	background: var(--ec-pale-blue);
	padding: 6px 14px;
	border-radius: var(--ec-radius-pill);
}

/* ================= 2. por que trocam ================= */

.ec-why {
	background: var(--ec-white);
	padding: 20px 48px 90px;
}

.ec-why-row {
	max-width: var(--ec-max);
	margin: 0 auto;
	display: flex;
	gap: 60px;
	align-items: flex-start; /* necessário para o título fixo (sticky) */
}

.ec-why-side {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 320px;
	flex: none;
	position: sticky;
	top: 96px;
}

.ec-why-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 40px;
	line-height: 1.1;
	color: var(--ec-navy);
	margin: 0;
}

.ec-why-rule {
	width: 52px;
	height: 4px;
	border-radius: 2px;
	background: linear-gradient(90deg, #2f80c9, #6fb3e0);
}

.ec-why-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
	flex: 1;
}

.ec-why-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	border-top: 1px solid var(--ec-hairline);
	padding-top: 24px;
}

.ec-why-item:first-child {
	border-top: none;
	padding-top: 0;
}

.ec-why-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	flex: none;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.ec-tone-blue  { background: linear-gradient(135deg, #6fb3e0, #2f80c9); color: #12233d; box-shadow: 0 10px 22px rgba(47, 128, 201, .35); }
.ec-tone-teal  { background: linear-gradient(135deg, #8be9dc, #2f80c9); color: #0f2a3d; box-shadow: 0 10px 22px rgba(47, 128, 201, .35); }
.ec-tone-amber { background: linear-gradient(135deg, #f7b073, #e0533f); color: #3a1a0c; box-shadow: 0 10px 22px rgba(224, 83, 63, .4); }
.ec-tone-red   { background: linear-gradient(135deg, #ec7c68, #c93f2e); color: #3a0f0c; box-shadow: 0 10px 22px rgba(201, 63, 46, .4); }

.ec-why-text {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.ec-why-text h3 {
	font-family: var(--ec-font-body);
	font-weight: 700;
	font-size: 17px;
	color: var(--ec-navy);
	margin: 0;
}

.ec-why-text p {
	font-size: 14px;
	line-height: 22px;
	color: var(--ec-ink);
	max-width: 480px;
	margin: 0;
}

/* ================= 3. vídeo ================= */

.ec-video-section {
	background: var(--ec-fog);
	padding: 100px 48px;
	position: relative;
	overflow: hidden;
}

.ec-video-glow {
	position: absolute;
	top: -100px;
	right: 10%;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 128, 201, .14), transparent 70%);
	pointer-events: none;
}

.ec-video-row {
	position: relative;
	z-index: 1;
	max-width: var(--ec-max);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 64px;
}

.ec-video-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 22px;
	min-width: 0;
}

.ec-video-head {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.ec-video-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 38px;
	line-height: 1.12;
	color: var(--ec-navy);
	margin: 0;
}

.ec-video-lead {
	font-size: 16px;
	line-height: 26px;
	color: var(--ec-ink);
	max-width: 440px;
	transition-delay: .12s;
	margin: 0;
}

.ec-video-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 8px;
}

.ec-video-item {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--ec-navy);
}

.ec-video-check {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6fb3e0, #2f80c9);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	box-shadow: 0 6px 14px rgba(47, 128, 201, .3);
	color: var(--ec-white);
	font-size: 13px;
}

.ec-video-frame {
	flex: 1;
	position: relative;
	min-width: 0;
}

.ec-video-shadow1,
.ec-video-shadow2 {
	position: absolute;
	border-radius: 24px;
	transform-origin: bottom left;
	z-index: 0;
}

.ec-video-shadow1 {
	inset: 14px -14px -14px 14px;
	background: linear-gradient(135deg, #fbe0d0, #f7b073);
	transform: rotate(3deg);
	box-shadow: 0 8px 20px rgba(224, 83, 63, .14);
}

.ec-video-shadow2 {
	inset: 12px -12px -12px 12px;
	background: linear-gradient(135deg, #f7b073, #e0533f);
	transform: rotate(1.5deg);
	box-shadow: 0 10px 24px rgba(224, 83, 63, .2);
}

@keyframes ecVideoShadow1 {
	0%   { transform: rotate(0deg) scale(.85); opacity: 0; }
	100% { transform: rotate(3deg) scale(1); opacity: 1; }
}

@keyframes ecVideoShadow2 {
	0%   { transform: rotate(0deg) scale(.85); opacity: 0; }
	100% { transform: rotate(1.5deg) scale(1); opacity: 1; }
}

.ec-js .ec-video-shadow1,
.ec-js .ec-video-shadow2 {
	opacity: 0;
}

.ec-js .ec-video-frame.is-visible .ec-video-shadow1 {
	animation: ecVideoShadow1 1.4s cubic-bezier(.2, .8, .2, 1) .5s both;
}

.ec-js .ec-video-frame.is-visible .ec-video-shadow2 {
	animation: ecVideoShadow2 1.4s cubic-bezier(.2, .8, .2, 1) .8s both;
}

.ec-video-player {
	position: relative;
	z-index: 1;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 20px;
	overflow: hidden;
	background: linear-gradient(135deg, #132a44, #12233d);
	box-shadow: 0 30px 60px rgba(18, 35, 61, .3);
}

.ec-video-player iframe,
.ec-video-player video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.ec-video-hatch {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .03) 0px, rgba(255, 255, 255, .03) 2px, transparent 2px, transparent 28px);
}

.ec-video-label {
	position: absolute;
	top: 16px;
	left: 20px;
	font-family: var(--ec-font-mono);
	font-size: 11px;
	color: rgba(255, 255, 255, .5);
	background: rgba(0, 0, 0, .3);
	padding: 4px 10px;
	border-radius: 6px;
}

.ec-video-center {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ec-video-play {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	border: 1px solid rgba(255, 255, 255, .3);
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	transition: transform .35s cubic-bezier(.3, 1.4, .4, 1);
}

.ec-video-play:hover {
	transform: scale(1.12);
}

.ec-video-play::after {
	content: '';
	width: 0;
	height: 0;
	border-top: 14px solid transparent;
	border-bottom: 14px solid transparent;
	border-left: 22px solid var(--ec-white);
	margin-left: 6px;
}

.ec-video-bar {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 16px 20px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	background: linear-gradient(0deg, rgba(0, 0, 0, .55), transparent);
}

.ec-video-track {
	height: 4px;
	border-radius: 2px;
	background: rgba(255, 255, 255, .25);
	position: relative;
}

.ec-video-done {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 28%;
	border-radius: 2px;
	background: var(--ec-blue-600);
}

.ec-video-times {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: rgba(255, 255, 255, .75);
}

.ec-video-notice {
	position: relative;
	z-index: 1;
	margin: 26px 0 0;
	font-size: 12px;
	line-height: 18px;
	color: var(--ec-mute);
	background: var(--ec-white);
	border-left: 3px solid var(--ec-orange);
	padding: 10px 12px;
	border-radius: 4px;
}

/* ================= 4. prévia dos recursos ================= */

.ec-feat-preview {
	background: #0d1c33;
	padding: 100px 48px 110px;
	position: relative;
	overflow: hidden;
}

.ec-feat-preview-hatch {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .025) 0px, rgba(255, 255, 255, .025) 2px, transparent 2px, transparent 34px);
	pointer-events: none;
}

.ec-feat-preview-glow {
	position: absolute;
	top: -160px;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 128, 201, .22), transparent 70%);
	pointer-events: none;
}

.ec-feat-preview-inner {
	position: relative;
	z-index: 1;
	max-width: var(--ec-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.ec-feat-preview-head {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: center;
}

.ec-feat-preview-head-text {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
}

.ec-badge-sky-dark {
	align-self: center;
	font-weight: 800;
	font-size: var(--ec-size-label);
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--ec-blue-400);
	background: rgba(111, 179, 224, .14);
	border: 1px solid rgba(111, 179, 224, .35);
	padding: 6px 16px;
	border-radius: var(--ec-radius-pill);
}

.ec-feat-preview-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 38px;
	color: var(--ec-white);
	margin: 0;
}

.ec-feat-preview-lead {
	font-size: 16px;
	color: rgba(255, 255, 255, .65);
	transition-delay: .1s;
	margin: 0;
}

.ec-cat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.ec-cat-card {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s;
}

.ec-cat-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
}

.ec-cat-glyph {
	position: absolute;
	right: -14px;
	top: -24px;
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 100px;
	line-height: 1;
}

.ec-cat-icon {
	position: relative;
	z-index: 1;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.ec-cat-name {
	position: relative;
	z-index: 1;
	font-family: var(--ec-font-display);
	font-weight: 800;
	font-size: 19px;
	color: var(--ec-white);
	margin: 0;
}

.ec-cat-items {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ec-tool-item {
	font-size: 12.5px;
	font-weight: 600;
	padding: 7px 12px;
	border-radius: var(--ec-radius-pill);
	display: inline-flex;
	align-items: center;
	width: fit-content;
}

.ec-cat-card:nth-child(1) {
	background: linear-gradient(160deg, #16314f, #12233d);
	border: 1px solid rgba(111, 179, 224, .2);
}
.ec-cat-card:nth-child(1) .ec-cat-glyph { color: rgba(111, 179, 224, .08); }
.ec-cat-card:nth-child(1) .ec-cat-icon { background: linear-gradient(135deg, #6fb3e0, #2f80c9); color: #12233d; box-shadow: 0 10px 22px rgba(47, 128, 201, .35); }
.ec-cat-card:nth-child(1) .ec-tool-item { color: #cfe4f5; background: rgba(111, 179, 224, .14); }

.ec-cat-card:nth-child(2) {
	background: linear-gradient(160deg, #123a52, #0f2a3d);
	border: 1px solid rgba(47, 128, 201, .25);
}
.ec-cat-card:nth-child(2) .ec-cat-glyph { color: rgba(47, 128, 201, .1); }
.ec-cat-card:nth-child(2) .ec-cat-icon { background: linear-gradient(135deg, #8be9dc, #2f80c9); color: #0f2a3d; box-shadow: 0 10px 22px rgba(47, 128, 201, .35); }
.ec-cat-card:nth-child(2) .ec-tool-item { color: #cdeee6; background: rgba(139, 233, 220, .14); }

.ec-cat-card:nth-child(3) {
	background: linear-gradient(160deg, #5c2a12, #3a1a0c);
	border: 1px solid rgba(242, 147, 63, .3);
}
.ec-cat-card:nth-child(3) .ec-cat-glyph { color: rgba(242, 147, 63, .14); }
.ec-cat-card:nth-child(3) .ec-cat-icon { background: linear-gradient(135deg, #f7b073, #e0533f); color: #3a1a0c; box-shadow: 0 10px 22px rgba(224, 83, 63, .4); }
.ec-cat-card:nth-child(3) .ec-tool-item { color: #fbdcc9; background: rgba(247, 176, 115, .16); }

.ec-cat-card:nth-child(4) {
	background: linear-gradient(160deg, #5c1a12, #3a0f0c);
	border: 1px solid rgba(224, 83, 63, .3);
}
.ec-cat-card:nth-child(4) .ec-cat-glyph { color: rgba(224, 83, 63, .14); }
.ec-cat-card:nth-child(4) .ec-cat-icon { background: linear-gradient(135deg, #ec7c68, #c93f2e); color: #3a0f0c; box-shadow: 0 10px 22px rgba(201, 63, 46, .4); }
.ec-cat-card:nth-child(4) .ec-tool-item { color: #fbd4cc; background: rgba(236, 124, 104, .16); }

.ec-js .ec-tool-item {
	opacity: 0;
}

.ec-cat-card.is-visible .ec-tool-item {
	animation: ecPillIn .5s cubic-bezier(.2, .7, .2, 1) both;
}

.ec-cat-card.is-visible .ec-tool-item:nth-child(1) { animation-delay: .25s; }
.ec-cat-card.is-visible .ec-tool-item:nth-child(2) { animation-delay: .32s; }
.ec-cat-card.is-visible .ec-tool-item:nth-child(3) { animation-delay: .39s; }
.ec-cat-card.is-visible .ec-tool-item:nth-child(4) { animation-delay: .46s; }

@keyframes ecPillIn {
	from { opacity: 0; transform: translateY(10px); }
	to   { opacity: 1; transform: translateY(0); }
}

.ec-cta-feat {
	align-self: center;
	font-weight: 700;
	font-size: 14px;
	color: var(--ec-navy);
	background: linear-gradient(135deg, #f7b073, #f2933f);
	padding: 12px 24px;
	border-radius: var(--ec-radius-pill);
	text-decoration: none;
	box-shadow: 0 12px 26px rgba(242, 147, 63, .3);
	transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1), box-shadow .35s ease;
}

.ec-cta-feat:hover {
	color: var(--ec-navy);
	box-shadow: 0 16px 32px rgba(242, 147, 63, .5);
	transform: translateY(-2px);
}

/* ================= 5. linha do tempo ================= */

.ec-timeline {
	background: var(--ec-navy);
	padding: 90px 48px 100px;
	position: relative;
	overflow: hidden;
}

.ec-timeline-glow {
	position: absolute;
	top: -120px;
	right: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(47, 128, 201, .16), transparent 70%);
	pointer-events: none;
}

.ec-timeline-inner {
	max-width: var(--ec-max);
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.ec-timeline-head {
	display: flex;
	flex-direction: column;
	gap: 14px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.ec-badge-orange-dark {
	align-self: center;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ec-orange);
	background: rgba(242, 147, 63, .14);
	border: 1px solid rgba(242, 147, 63, .35);
	padding: 7px 16px;
	border-radius: var(--ec-radius-pill);
}

.ec-timeline-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 42px;
	line-height: 1.08;
	color: var(--ec-white);
	margin: 0;
}

.ec-timeline-lead {
	font-size: 16px;
	color: rgba(255, 255, 255, .7);
	transition-delay: .1s;
	margin: 0;
}

.ec-track {
	position: relative;
	max-width: 1040px;
	margin: 0 auto;
	width: 100%;
	z-index: 1;
}

.ec-track-line {
	position: absolute;
	left: 50%;
	top: 6px;
	bottom: 6px;
	width: 4px;
	border-radius: 4px;
	background: linear-gradient(180deg, rgba(47, 128, 201, 0) 0%, #2f80c9 8%, #2f80c9 92%, rgba(47, 128, 201, 0) 100%);
	box-shadow: 0 0 24px rgba(47, 128, 201, .45);
	transform: translateX(-50%);
}

.ec-tl-row {
	display: grid;
	grid-template-columns: 1fr 76px 1fr;
	align-items: center;
	gap: 0;
	padding: 22px 0;
}

.ec-tl-wrap-left {
	display: flex;
	justify-content: flex-end;
	padding-right: 34px;
}

.ec-tl-wrap-right {
	display: flex;
	justify-content: flex-start;
	padding-left: 34px;
}

.ec-tl-mid {
	display: flex;
	justify-content: center;
}

.ec-tl-card {
	max-width: 430px;
	border-radius: 20px;
	padding: 26px 28px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
}

.ec-tl-card-left {
	background: linear-gradient(135deg, #e4eef8, #ffffff);
	border: 1px solid rgba(27, 143, 124, .25);
}

.ec-tl-card-right {
	background: linear-gradient(135deg, #16314f, #12233d);
	border: 1px solid rgba(47, 128, 201, .3);
}

.ec-tl-ghost {
	position: absolute;
	right: 10px;
	bottom: -14px;
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 76px;
	line-height: 1;
	z-index: 0;
	pointer-events: none;
}

.ec-tl-card-left .ec-tl-ghost  { color: rgba(18, 35, 61, .06); }
.ec-tl-card-right .ec-tl-ghost { color: rgba(255, 255, 255, .06); }

.ec-tl-label {
	position: relative;
	z-index: 1;
	font-weight: 800;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
	margin: 0;
}

.ec-tl-card-left .ec-tl-label  { color: var(--ec-blue); }
.ec-tl-card-right .ec-tl-label { color: var(--ec-blue-600); }

.ec-tl-title {
	position: relative;
	z-index: 1;
	font-family: var(--ec-font-display);
	font-weight: 800;
	font-size: 18px;
	padding-right: 90px;
	margin: 0;
}

.ec-tl-card-left .ec-tl-title  { color: var(--ec-navy); }
.ec-tl-card-right .ec-tl-title { color: var(--ec-white); }

.ec-tl-desc {
	position: relative;
	z-index: 1;
	font-size: 13.5px;
	line-height: 20px;
	padding-right: 90px;
	margin: 0;
}

.ec-tl-card-left .ec-tl-desc  { color: var(--ec-ink); }
.ec-tl-card-right .ec-tl-desc { color: rgba(255, 255, 255, .75); }

.ec-tl-num {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6fb3e0, #2f80c9 55%, #1f5f95);
	color: var(--ec-navy-950);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	position: relative;
	z-index: 2;
	box-shadow: 0 0 0 6px rgba(47, 128, 201, .16), 0 14px 28px rgba(0, 0, 0, .35);
	transition: transform .4s cubic-bezier(.2, .7, .2, 1);
}

.ec-tl-num:hover,
.ec-tl-row:has(.ec-tl-card:hover) .ec-tl-num {
	transform: scale(1.1);
}

.ec-timeline-foot {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin-top: 4px;
	position: relative;
	z-index: 1;
}

.ec-timeline-globe {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: linear-gradient(135deg, #6fb3e0, #2f80c9 55%, #1f5f95);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 0 8px rgba(47, 128, 201, .14), 0 16px 32px rgba(0, 0, 0, .35);
	color: var(--ec-navy-950);
	font-size: 26px;
}

.ec-timeline-foot p {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 34px;
	background: linear-gradient(135deg, #ffffff, #6fb3e0);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 0;
}

/* ================= 6. depoimentos ================= */

.ec-quotes {
	background: var(--ec-grad-warm);
	padding: 64px 48px 56px;
	position: relative;
	overflow: hidden;
}

.ec-quotes-hatch {
	position: absolute;
	inset: 0;
	background-image: repeating-linear-gradient(115deg, rgba(255, 255, 255, .06) 0px, rgba(255, 255, 255, .06) 2px, transparent 2px, transparent 34px);
}

.ec-quotes-glow-1 {
	position: absolute;
	top: -160px;
	right: -120px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, .25), transparent 70%);
	pointer-events: none;
}

.ec-quotes-glow-2 {
	position: absolute;
	bottom: -180px;
	left: -100px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(18, 35, 61, .35), transparent 70%);
	pointer-events: none;
}

.ec-quotes-inner {
	max-width: var(--ec-max);
	margin: 0 auto;
}

.ec-quotes-head {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	margin-bottom: 32px;
}

.ec-badge-quote {
	align-self: center;
	font-weight: 800;
	font-size: 11px;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #7a2c14;
	background: rgba(255, 255, 255, .55);
	border: 1px solid rgba(255, 255, 255, .7);
	padding: 6px 16px;
	border-radius: var(--ec-radius-pill);
}

.ec-quotes-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 28px;
	color: var(--ec-white);
	text-shadow: 0 2px 12px rgba(0, 0, 0, .15);
	transition-delay: .1s;
	margin: 0;
}

.ec-car-track {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
	max-width: 820px;
	margin: 0 auto;
	padding: 20px 0;
}

.ec-car-side {
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	z-index: 4;
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform .25s ease;
}

.ec-car-side:hover {
	transform: translateY(-50%) rotate(45deg) scale(1.08);
}

.ec-car-side i {
	transform: rotate(-45deg);
	font-size: 14px;
}

.ec-car-side-prev {
	left: -22px;
	background: rgba(255, 255, 255, .9);
	color: var(--ec-red-700);
	box-shadow: 0 10px 20px rgba(18, 35, 61, .35);
}

.ec-car-side-next {
	right: -22px;
	background: var(--ec-navy-800);
	color: var(--ec-white);
	box-shadow: 0 10px 20px rgba(18, 35, 61, .4);
}

.ec-car-wrap {
	position: relative;
	width: 720px;
	flex: none;
}

.ec-car-vdots {
	position: absolute;
	left: -56px;
	bottom: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	z-index: 4;
}

.ec-car-vdot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: var(--ec-radius-pill);
	background: var(--ec-navy);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .5);
	cursor: pointer;
	transition: height .3s ease;
}

.ec-car-vdot.is-active {
	height: 28px;
}

.ec-car-back1,
.ec-car-back2 {
	position: absolute;
	border-radius: 22px;
	transition: transform .6s cubic-bezier(.22, 1, .36, 1);
}

.ec-car-back1 {
	inset: 20px -14px 4px;
	background: #0d1c33;
	transform: rotate(3deg);
	box-shadow: 0 20px 40px rgba(18, 35, 61, .35);
}

.ec-car-back2 {
	inset: 20px -7px 12px;
	background: var(--ec-navy-800);
	transform: rotate(-2deg);
	box-shadow: 0 20px 40px rgba(18, 35, 61, .3);
}

/* No protótipo as duas cartas de trás mudam de inclinação a cada slide ímpar. */
.ec-car-wrap.is-odd .ec-car-back1 { transform: rotate(-4deg) translateX(6px); }
.ec-car-wrap.is-odd .ec-car-back2 { transform: rotate(5deg) translateX(-6px); }

/*
 * content-box de propósito: o protótipo não muda o box-sizing, então os 230px
 * de altura mínima são só do conteúdo e o padding de 44px soma por fora — o
 * card tem 318px. Com o border-box global do tema ele encolhia para 230.
 */
.ec-car-card {
	box-sizing: content-box;
	position: relative;
	min-height: 230px;
	background: var(--ec-navy);
	border-radius: 22px;
	box-shadow: 0 30px 64px rgba(18, 35, 61, .55), 0 0 0 1px rgba(255, 255, 255, .1) inset;
	padding: 44px 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.ec-car-topbar {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 6px;
	background: linear-gradient(90deg, #f2933f, #e0533f, #f2933f);
}

.ec-car-mark {
	position: absolute;
	left: 26px;
	top: -4px;
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 110px;
	line-height: 1;
	background: linear-gradient(180deg, #f2933f, rgba(242, 147, 63, .12));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ec-car-slide {
	position: absolute;
	inset: 44px 52px;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s ease;
}

.ec-car-slide.is-active {
	opacity: 1;
	pointer-events: auto;
}

.ec-car-text {
	font-family: var(--ec-font-display);
	font-weight: 800;
	font-size: 22px;
	line-height: 1.45;
	color: var(--ec-white);
	max-width: 580px;
	margin: 0;
}

.ec-car-who {
	display: flex;
	align-items: center;
	gap: 14px;
}

.ec-car-initials {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #f7b073, #e0533f);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--ec-font-display);
	font-weight: 800;
	font-size: 16px;
	color: var(--ec-navy);
	flex: none;
}

.ec-car-name {
	display: flex;
	flex-direction: column;
	text-align: left;
	font-weight: 700;
	font-size: 13.5px;
	color: var(--ec-orange);
}

.ec-car-org {
	font-weight: 400;
	font-size: 11.5px;
	color: rgba(255, 255, 255, .55);
}

/* Controles de celular: setas redondas e pontos na horizontal, abaixo do card. */
.ec-car-mobile {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex: none;
}

.ec-car-hdots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.ec-car-arrow {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: none;
	border: none;
	background: var(--ec-white);
	color: var(--ec-navy);
	font-size: 16px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
	transition: transform .2s ease, box-shadow .2s ease;
}

.ec-car-arrow:hover {
	transform: translateY(-2px);
}

.ec-car-arrow-solid {
	background: var(--ec-navy);
	color: var(--ec-white);
	box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
}

.ec-car-hdot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(18, 35, 61, .3);
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .5);
	cursor: pointer;
	transition: background .2s ease, width .2s ease;
}

.ec-car-hdot.is-active {
	width: 26px;
	border-radius: 5px;
	background: var(--ec-navy);
}

/* ================= 7. blog na home ================= */

.ec-home-blog {
	background: var(--ec-white);
	padding: 110px 48px 120px;
	position: relative;
	overflow: hidden;
}

.ec-home-blog-glow {
	position: absolute;
	top: -140px;
	left: -100px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(242, 147, 63, .25), transparent 70%);
	pointer-events: none;
}

/*
 * O protótipo põe, dentro de uma seção com 48px de lado, um bloco de 1280px
 * com padding de max(48px, (100vw - 1280px) / 2 + 48px). A conta dá uma coluna
 * de 1088px em telas largas e 100vw - 192px nas menores — é isso aqui.
 */
.ec-home-blog-head,
.ec-home-blog-body {
	position: relative;
	z-index: 1;
	max-width: 1184px;
	margin: 0 auto;
	padding: 0 48px;
}

.ec-home-blog-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.ec-home-blog-head-text {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 640px;
}

.ec-home-blog-head-top {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ec-eyebrow-orange {
	align-self: flex-start;
	font-weight: 800;
	font-size: var(--ec-size-label);
	letter-spacing: .12em;
	text-transform: uppercase;
	color: #c9481f;
}

.ec-home-blog-title {
	font-family: var(--ec-font-display);
	font-weight: 900;
	font-size: 36px;
	line-height: 1.15;
	color: var(--ec-navy);
	margin: 0;
}

.ec-home-blog-lead {
	font-size: 16px;
	line-height: 26px;
	color: #5c6470;
	transition-delay: .1s;
	margin: 0;
}

.ec-cta-see {
	font-weight: 700;
	font-size: 14px;
	color: var(--ec-navy);
	background: var(--ec-fog);
	padding: 12px 22px;
	border-radius: var(--ec-radius-pill);
	text-decoration: none;
	flex: none;
	box-shadow: 0 0 0 rgba(18, 35, 61, 0);
	transition: opacity .7s cubic-bezier(.2, .7, .2, 1) .15s, transform .7s cubic-bezier(.2, .7, .2, 1) .15s, box-shadow .35s ease;
}

.ec-cta-see:hover {
	color: var(--ec-navy);
	box-shadow: 0 12px 26px rgba(18, 35, 61, .2);
	transform: translateY(-2px);
}

.ec-home-blog-body {
	padding-top: 44px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.ec-home-blog .ec-featured {
	padding: 40px 44px;
}

.ec-home-blog .ec-featured-deco img {
	height: 220px;
}

.ec-home-blog .ec-featured-img-wrap {
	max-width: 360px;
}

.ec-home-blog .ec-featured-text {
	gap: 16px;
}

/*
 * A animação de entrada da foto termina em rotate(0) e fica presa no último
 * quadro: na home a foto do destaque aparece reta, não inclinada como no blog.
 */
.ec-home-blog .ec-featured-img-box {
	transform: none;
}

@keyframes ecImgRevealBox {
	0%   { opacity: 0; transform: translateY(70px); }
	60%  { opacity: 1; }
	100% { opacity: 1; transform: translateY(0); }
}

.ec-js .ec-home-blog .ec-featured-img-box {
	opacity: 0;
}

.ec-js .ec-home-blog .ec-featured.is-visible .ec-featured-img-box {
	animation: ecImgRevealBox .9s cubic-bezier(.16, 1, .3, 1) .45s both;
}

.ec-home-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.ec-card-cell {
	width: 100%;
	height: 100%;
	min-height: 0;
}

/* ================= entradas desta página ================= */

/* A home do ref usa distâncias e tempo próprios, diferentes das outras páginas. */
.ec-reveal,
.ec-reveal-left,
.ec-reveal-scale {
	transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1), filter .7s cubic-bezier(.2, .7, .2, 1);
}

.ec-js .ec-reveal       { transform: translateY(28px); }
.ec-js .ec-reveal-left  { transform: translateX(-36px); }
.ec-js .ec-reveal-scale { transform: scale(.92); }

.ec-reveal.is-visible,
.ec-reveal-left.is-visible,
.ec-reveal-scale.is-visible {
	transform: none;
}

.ec-js .ec-reveal-rotate {
	opacity: 0;
	transform: rotate(-6deg) translateY(20px) scale(.95);
	transform-origin: center bottom;
	transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

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

.ec-reveal-clip {
	transition: clip-path .8s cubic-bezier(.2, .8, .2, 1);
}

.ec-js .ec-reveal-clip {
	clip-path: inset(0 100% 0 0);
}

.ec-js .ec-reveal-clip.is-visible {
	clip-path: inset(0 0 0 0);
}

/* ================= mobile ================= */

@media (max-width: 879px) {
	.ec-home-hero {
		min-height: auto;
		flex-direction: column;
		padding: 56px 20px 48px;
		gap: 40px;
	}

	.ec-home-hero-inner {
		flex-direction: column;
		gap: 40px;
	}

	.ec-home-hero-title {
		font-size: 34px;
	}

	.ec-hero-blade {
		display: none;
	}

	.ec-why {
		padding: 20px 20px 60px;
	}

	.ec-why-row {
		flex-direction: column;
		gap: 32px;
	}

	.ec-why-side {
		position: static;
		max-width: none;
	}

	.ec-video-section {
		padding: 64px 20px;
	}

	.ec-video-row {
		flex-direction: column;
		gap: 40px;
	}

	.ec-video-frame {
		width: 100%;
	}

	.ec-feat-preview,
	.ec-timeline {
		padding: 64px 20px 70px;
	}

	.ec-cat-grid {
		grid-template-columns: 1fr;
	}

	.ec-timeline-title {
		font-size: 30px;
	}

	.ec-tl-row {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 14px;
		padding: 16px 0;
	}

	.ec-tl-mid {
		order: 1;
	}

	.ec-tl-wrap-left,
	.ec-tl-wrap-right {
		justify-content: center;
		width: 100%;
		padding: 0;
		order: 2;
	}

	.ec-tl-wrap:empty {
		display: none;
	}

	.ec-tl-card {
		max-width: 100%;
		padding: 20px;
	}

	.ec-quotes {
		padding: 48px 20px 44px;
	}

	.ec-car-track {
		flex-direction: column;
		gap: 24px;
	}

	.ec-car-wrap {
		width: 100%;
	}

	.ec-car-side,
	.ec-car-vdots {
		display: none;
	}

	.ec-car-mobile {
		display: flex;
	}

	.ec-car-card {
		min-height: 270px;
		padding: 40px 20px;
	}

	.ec-car-slide {
		inset: 32px 20px;
		gap: 14px;
	}

	.ec-car-text {
		font-size: 16.5px;
	}

	.ec-car-mark {
		left: 14px;
		font-size: 70px;
	}

	.ec-home-blog {
		padding: 56px 20px 60px;
	}

	.ec-home-blog-head,
	.ec-home-blog-body {
		padding-left: 0;
		padding-right: 0;
	}

	.ec-home-blog-body {
		padding-top: 32px;
		gap: 22px;
	}

	.ec-home-blog .ec-featured {
		padding: 0 0 20px;
	}

	.ec-home-blog-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}
