/* =========================================================
INÍCIO - RESET / BASE
========================================================= */
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: Inter, Manrope, Arial, Helvetica, sans-serif;
  color: #071018;
  background: #f3f6f9;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}
/* =========================================================
FIM - RESET / BASE
========================================================= */


/* =========================================================
INÍCIO - VARIÁVEIS E FUNDO GERAL
========================================================= */
.ecx-page {
  --ecx-orange: #ff5a00;
  --ecx-orange-dark: #e64e00;
  --ecx-black: #05080d;
  --ecx-dark: #071018;
  --ecx-text: #080c14;
  --ecx-muted: #43505c;
  --ecx-blue: #7fcaff;
  --ecx-blue-soft: rgba(127, 202, 255, .20);
  --ecx-container: 1320px;
  --ecx-side: 44px;

  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 79% 20%, rgba(132, 207, 255, .38) 0, rgba(132, 207, 255, .17) 20%, rgba(132, 207, 255, 0) 44%),
    radial-gradient(circle at 2% 38%, rgba(255, 90, 0, .07) 0, rgba(255, 90, 0, 0) 22%),
    linear-gradient(180deg, #f9fbfd 0%, #f2f5f8 100%);
}

.ecx-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255, 90, 0, .30) 1px, transparent 1.7px),
    radial-gradient(circle, rgba(22, 147, 232, .22) 1px, transparent 1.7px);
  background-size: 16px 16px, 24px 24px;
  background-position: 30px 280px, right 48px top 245px;
  opacity: .65;
  mask-image:
    radial-gradient(circle at 2% 37%, black 0 10%, transparent 16%),
    radial-gradient(circle at 97% 59%, black 0 16%, transparent 26%);
}

.ecx-container {
  width: min(var(--ecx-container), calc(100% - var(--ecx-side) * 2));
  margin-inline: auto;
}
/* =========================================================
FIM - VARIÁVEIS E FUNDO GERAL
========================================================= */


/* =========================================================
INÍCIO - HEADER
========================================================= */
.ecx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 26px 0 12px;
  background: linear-gradient(180deg, rgba(249, 251, 253, .94) 0%, rgba(249, 251, 253, .72) 78%, rgba(249, 251, 253, 0) 100%);
  backdrop-filter: blur(18px);
}

.ecx-header__inner {
  display: grid;
  grid-template-columns: 220px 1fr 245px;
  align-items: center;
  gap: 24px;
}

.ecx-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.045em;
  color: var(--ecx-text);
  white-space: nowrap;
}

.ecx-brand__icon {
  color: var(--ecx-orange);
  display: inline-flex;
  flex: 0 0 auto;
}

.ecx-brand__text {
  font-size: 27px;
  line-height: 1;
}

.ecx-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 40px);
}

.ecx-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 14px 0;
  color: #111720;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  transition: color .25s ease;
}

.ecx-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--ecx-orange);
  transition: width .25s ease;
}

.ecx-nav a:hover,
.ecx-nav a.is-active {
  color: var(--ecx-orange);
}

.ecx-nav a:hover::after,
.ecx-nav a.is-active::after {
  width: 100%;
}

.ecx-nav small {
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-1px);
}

.ecx-header__cta {
  justify-self: end;
  width: 245px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ecx-orange), var(--ecx-orange-dark));
  box-shadow: 0 20px 36px rgba(255, 90, 0, .24);
  font-size: 15px;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease;
}

.ecx-header__cta span {
  font-size: 27px;
  line-height: .6;
}

.ecx-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(255, 90, 0, .32);
}

.ecx-menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  cursor: pointer;
}

.ecx-menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: #071018;
  transition: transform .25s ease, opacity .25s ease;
}

.ecx-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ecx-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.ecx-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
/* =========================================================
FIM - HEADER
========================================================= */


/* =========================================================
INÍCIO - HERO
========================================================= */
.ecx-main {
  position: relative;
  z-index: 2;
}

.ecx-hero {
  position: relative;
  z-index: 3;
}

.ecx-hero__inner {
  position: relative;
  min-height: 665px;
  display: grid;
  grid-template-columns: 48% 52%;
  align-items: center;
  padding-top: 54px;
}

.ecx-hero__copy {
  position: relative;
  z-index: 20;
  max-width: 625px;
  padding-bottom: 54px;
  animation: ecxFadeUp .85s cubic-bezier(.2, .7, .2, 1) both;
}

.ecx-hero__copy::before {
  content: "";
  position: absolute;
  left: -54px;
  top: 142px;
  width: 52px;
  height: 174px;
  opacity: .78;
  background-image: radial-gradient(circle, var(--ecx-orange) 1.5px, transparent 1.8px);
  background-size: 14px 14px;
}

.ecx-eyebrow {
  margin: 0 0 22px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .06em;
}

.ecx-hero h1 {
  margin: 0;
  color: #070b12;
  font-size: clamp(58px, 4.9vw, 78px);
  line-height: .98;
  letter-spacing: -.067em;
  font-weight: 950;
}

.ecx-hero h1 span {
  color: var(--ecx-orange);
}

.ecx-hero__text {
  max-width: 560px;
  margin: 30px 0 0;
  color: #131a23;
  font-size: 16.5px;
  line-height: 1.74;
  font-weight: 500;
}

.ecx-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 40px;
}

.ecx-btn {
  min-height: 59px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
}

.ecx-btn span {
  font-size: 29px;
  line-height: .5;
}

.ecx-btn--primary {
  color: #fff;
  min-width: 232px;
  background: linear-gradient(135deg, var(--ecx-orange), var(--ecx-orange-dark));
  box-shadow: 0 18px 34px rgba(255, 90, 0, .22);
}

.ecx-btn--secondary {
  color: #111720;
  min-width: 230px;
  border: 2px solid rgba(7, 13, 20, .84);
  background: rgba(255, 255, 255, .54);
  backdrop-filter: blur(10px);
}

.ecx-btn:hover {
  transform: translateY(-2px);
}

.ecx-btn--primary:hover {
  box-shadow: 0 22px 42px rgba(255, 90, 0, .30);
}

.ecx-btn--secondary:hover {
  color: var(--ecx-orange);
  border-color: var(--ecx-orange);
  background: rgba(255, 255, 255, .82);
}

.ecx-hero__visual {
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 0;
  width: 62%;
  height: 690px;
  pointer-events: none;
  isolation: isolate;
}

.ecx-tech-grid {
  position: absolute;
  inset: 24px -80px 0 0;
  z-index: 0;
  opacity: .62;
  background:
    linear-gradient(rgba(76, 169, 233, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 169, 233, .08) 1px, transparent 1px),
    radial-gradient(circle at 55% 38%, rgba(104, 200, 255, .32) 0, rgba(104, 200, 255, .14) 22%, transparent 48%);
  background-size: 82px 82px, 82px 82px, 100% 100%;
  mask-image: radial-gradient(circle at 55% 43%, black 0 53%, transparent 76%);
}

.ecx-hud {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  opacity: .62;
  filter: drop-shadow(0 0 24px rgba(112, 203, 255, .22));
}

.ecx-hud--large {
  left: 56px;
  top: 112px;
  width: 410px;
  height: 410px;
  background:
    radial-gradient(circle, rgba(255,255,255,.88) 0 2px, transparent 3px),
    radial-gradient(circle, transparent 0 30%, rgba(127, 202, 255, .34) 30.6% 31.3%, transparent 31.9% 43%, rgba(127, 202, 255, .23) 43.5% 44.6%, transparent 45.2% 56%, rgba(127, 202, 255, .18) 56.6% 57.3%, transparent 58%),
    conic-gradient(from -20deg, transparent 0 16deg, rgba(127, 202, 255, .42) 16deg 28deg, transparent 28deg 72deg, rgba(127, 202, 255, .28) 72deg 84deg, transparent 84deg 140deg, rgba(127, 202, 255, .34) 140deg 152deg, transparent 152deg 240deg, rgba(127, 202, 255, .26) 240deg 252deg, transparent 252deg 360deg);
  animation: ecxSpin 34s linear infinite;
}

.ecx-hud--small {
  right: 20px;
  top: 100px;
  width: 360px;
  height: 360px;
  opacity: .26;
  background:
    radial-gradient(circle, transparent 0 45%, rgba(127, 202, 255, .24) 46% 47%, transparent 48%),
    conic-gradient(from 15deg, transparent 0 20deg, rgba(127, 202, 255, .34) 20deg 28deg, transparent 28deg 94deg, rgba(127, 202, 255, .22) 94deg 104deg, transparent 104deg 360deg);
  animation: ecxSpinReverse 38s linear infinite;
}

.ecx-light-line {
  position: absolute;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 202, 255, .70), transparent);
  opacity: .48;
}

.ecx-light-line--one {
  left: 10px;
  right: -55px;
  top: 294px;
}

.ecx-light-line--two {
  left: 210px;
  right: -65px;
  top: 454px;
}

.ecx-person {
  position: absolute;
  z-index: 5;
  right: 250px;
  bottom: 0;
  width: 445px;
  max-height: 670px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 34px rgba(3, 12, 22, .22));
}

.ecx-glass-card {
  position: absolute;
  z-index: 10;
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(190, 232, 255, .72);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(11, 25, 38, .76), rgba(102, 151, 188, .38)),
    rgba(10, 24, 38, .36);
  box-shadow: 0 0 26px rgba(115, 202, 255, .23), inset 0 0 18px rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
  animation: ecxFloat 5.8s ease-in-out infinite;
}

.ecx-glass-card__label {
  display: block;
  color: rgba(248, 252, 255, .96);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
  text-transform: uppercase;
}

.ecx-glass-card--performance {
  top: 124px;
  right: 160px;
  width: 175px;
  min-height: 234px;
  padding: 29px 24px 26px;
}

.ecx-glass-card--performance .ecx-glass-card__label {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(221, 243, 255, .35);
}

.ecx-glass-card--performance strong {
  display: block;
  margin: 25px 0 12px;
  color: rgba(238, 249, 255, .96);
  font-size: 53px;
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.08em;
}

.ecx-glass-card__sub {
  display: block;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.ecx-glass-card--decision {
  top: 228px;
  right: 8px;
  width: 151px;
  min-height: 185px;
  padding: 26px 21px 20px;
  animation-delay: -.9s;
}

.ecx-bars {
  height: 74px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 22px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(221, 243, 255, .35);
}

.ecx-bars i {
  flex: 1 1 auto;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, rgba(237, 249, 255, .95), rgba(108, 194, 255, .56));
}

.ecx-glass-card--result {
  right: 114px;
  bottom: 70px;
  width: 270px;
  min-height: 166px;
  padding: 25px 24px 16px;
  animation-delay: -1.7s;
}

.ecx-line-chart {
  width: 100%;
  height: 86px;
  margin-top: 10px;
  overflow: visible;
}
/* =========================================================
FIM - HERO
========================================================= */


/* =========================================================
INÍCIO - BLOCO MERCADO MUDOU
========================================================= */
.ecx-market {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  align-items: center;
  gap: 36px;
  min-height: 218px;
  margin-top: -14px;
  margin-bottom: 58px;
  padding: 38px 44px 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 98% 40%, rgba(0, 142, 255, .18) 0, transparent 26%),
    radial-gradient(circle at 1% 0%, rgba(255, 90, 0, .07) 0, transparent 24%),
    linear-gradient(135deg, #05080c 0%, #0a121a 52%, #04070a 100%);
  box-shadow: 0 28px 50px rgba(1, 8, 16, .24);
}

.ecx-market::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -10px;
  width: 250px;
  height: 250px;
  opacity: .72;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(0, 159, 255, .72) 1.5px, transparent 2px),
    linear-gradient(45deg, transparent 49%, rgba(0, 159, 255, .28) 50%, transparent 51%);
  background-size: 28px 28px, 38px 38px;
  mask-image: radial-gradient(circle, black 0 56%, transparent 72%);
}

.ecx-market__copy {
  position: relative;
  z-index: 2;
}

.ecx-market__eyebrow {
  margin: 0 0 18px;
  color: var(--ecx-orange);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .06em;
}

.ecx-market h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 3vw, 45px);
  line-height: 1.16;
  letter-spacing: -.05em;
  font-weight: 950;
}

.ecx-market h2 span {
  color: var(--ecx-orange);
}

.ecx-market__items {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}

.ecx-market__item {
  min-width: 0;
  min-height: 154px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 19px;
  padding: 10px 14px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.ecx-market__icon {
  width: 47px;
  height: 47px;
  color: var(--ecx-orange);
}

.ecx-market__icon svg {
  width: 100%;
  height: 100%;
}

.ecx-market__item p {
  max-width: 126px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.31;
  font-weight: 850;
}
/* =========================================================
FIM - BLOCO MERCADO MUDOU
========================================================= */


/* =========================================================
INÍCIO - WHATSAPP FLUTUANTE
========================================================= */
.ecx-whatsapp {
  position: fixed;
  z-index: 200;
  right: 34px;
  bottom: 30px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: #38c962;
  box-shadow: 0 16px 30px rgba(41, 170, 81, .36);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ecx-whatsapp svg {
  width: 41px;
  height: 41px;
}

.ecx-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px rgba(41, 170, 81, .48);
}
/* =========================================================
FIM - WHATSAPP FLUTUANTE
========================================================= */


/* =========================================================
INÍCIO - ANIMAÇÕES
========================================================= */
@keyframes ecxFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ecxFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -9px, 0);
  }
}

@keyframes ecxSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ecxSpinReverse {
  to {
    transform: rotate(-360deg);
  }
}
/* =========================================================
FIM - ANIMAÇÕES
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO TABLET
========================================================= */
@media (max-width: 1180px) {
  .ecx-page {
    --ecx-side: 24px;
  }

  .ecx-header__inner {
    grid-template-columns: auto auto auto;
  }

  .ecx-menu-toggle {
    display: block;
  }

  .ecx-nav {
    position: absolute;
    top: 84px;
    left: 24px;
    right: 24px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    justify-content: initial;
    gap: 8px 24px;
    padding: 18px 20px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 18px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 20px 60px rgba(2, 8, 16, .12);
    backdrop-filter: blur(18px);
  }

  .ecx-nav.is-open {
    display: grid;
  }

  .ecx-header__cta {
    width: auto;
    min-height: 50px;
    padding: 0 20px;
  }

  .ecx-hero__inner {
    min-height: auto;
    display: block;
    padding-top: 48px;
  }

  .ecx-hero__copy {
    max-width: 760px;
    padding-bottom: 20px;
  }

  .ecx-hero h1 {
    font-size: clamp(54px, 8vw, 76px);
  }

  .ecx-hero__visual {
    position: relative;
    width: 100%;
    height: 610px;
    top: auto;
    right: auto;
    margin-top: -22px;
  }

  .ecx-person {
    right: 50%;
    transform: translateX(48%);
    width: min(430px, 54vw);
  }

  .ecx-hud--large {
    left: 50%;
    top: 92px;
    transform: translateX(-50%);
    width: 390px;
    height: 390px;
  }

  .ecx-hud--small {
    right: 8%;
  }

  .ecx-glass-card--performance {
    right: 20%;
  }

  .ecx-glass-card--decision {
    right: 4%;
  }

  .ecx-glass-card--result {
    right: 13%;
  }

  .ecx-market {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ecx-market__items {
    grid-template-columns: repeat(5, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .ecx-market__item {
    min-width: 130px;
  }
}
/* =========================================================
FIM - RESPONSIVO TABLET
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO MOBILE
========================================================= */
@media (max-width: 767px) {
  .ecx-page {
    --ecx-side: 16px;
  }

  .ecx-header {
    padding: 14px 0 8px;
  }

  .ecx-header__inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .ecx-brand__text {
    font-size: 22px;
  }

  .ecx-brand__icon svg {
    width: 29px;
    height: 29px;
  }

  .ecx-header__cta {
    display: none;
  }

  .ecx-nav {
    top: 68px;
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr;
  }

  .ecx-hero__inner {
    padding-top: 34px;
  }

  .ecx-hero__copy {
    padding-bottom: 0;
  }

  .ecx-hero__copy::before {
    display: none;
  }

  .ecx-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
    letter-spacing: .045em;
  }

  .ecx-hero h1 {
    font-size: clamp(39px, 12.5vw, 54px);
    line-height: 1.03;
  }

  .ecx-hero__text {
    margin-top: 23px;
    font-size: 15.5px;
    line-height: 1.62;
  }

  .ecx-hero__actions {
    gap: 12px;
    margin-top: 28px;
  }

  .ecx-btn {
    width: 100%;
    min-height: 56px;
    justify-content: space-between;
    padding: 0 22px;
  }

  .ecx-hero__visual {
    height: 560px;
    margin-top: 2px;
  }

  .ecx-tech-grid {
    inset: 15px -38px 0;
    background-size: 58px 58px, 58px 58px, 100% 100%;
  }

  .ecx-hud--large {
    top: 75px;
    width: 315px;
    height: 315px;
  }

  .ecx-hud--small {
    display: none;
  }

  .ecx-light-line--one {
    top: 250px;
  }

  .ecx-light-line--two {
    top: 390px;
  }

  .ecx-person {
    right: 50%;
    width: min(340px, 88vw);
    max-height: 540px;
    transform: translateX(50%);
  }

  .ecx-glass-card {
    border-radius: 11px;
  }

  .ecx-glass-card__label {
    font-size: 10px;
  }

  .ecx-glass-card--performance {
    top: 28px;
    right: auto;
    left: 0;
    width: 122px;
    min-height: 152px;
    padding: 16px 14px;
  }

  .ecx-glass-card--performance strong {
    margin: 15px 0 8px;
    font-size: 34px;
  }

  .ecx-glass-card__sub {
    font-size: 10px;
  }

  .ecx-glass-card--decision {
    top: 108px;
    right: 0;
    width: 116px;
    min-height: 138px;
    padding: 16px 13px;
  }

  .ecx-bars {
    height: 54px;
    gap: 5px;
    margin-top: 14px;
  }

  .ecx-glass-card--result {
    right: 0;
    bottom: 48px;
    width: 180px;
    min-height: 118px;
    padding: 14px 13px 8px;
  }

  .ecx-line-chart {
    height: 60px;
    margin-top: 6px;
  }

  .ecx-market {
    min-height: auto;
    margin-top: 0;
    margin-bottom: 38px;
    padding: 30px 22px 28px;
    border-radius: 16px;
  }

  .ecx-market__eyebrow {
    font-size: 12px;
  }

  .ecx-market h2 {
    font-size: 34px;
  }

  .ecx-market__items {
    grid-template-columns: 1fr 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .ecx-market__item {
    min-width: 0;
    min-height: 142px;
    padding: 18px 12px;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .ecx-market__item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,.16);
  }

  .ecx-market__icon {
    width: 40px;
    height: 40px;
  }

  .ecx-market__item p {
    font-size: 13px;
  }

  .ecx-whatsapp {
    right: 17px;
    bottom: 17px;
    width: 58px;
    height: 58px;
  }

  .ecx-whatsapp svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 420px) {
  .ecx-hero__visual {
    height: 520px;
  }

  .ecx-person {
    width: min(320px, 92vw);
  }

  .ecx-glass-card--performance {
    width: 112px;
  }

  .ecx-glass-card--decision {
    width: 108px;
  }

  .ecx-glass-card--result {
    width: 168px;
  }
}
/* =========================================================
FIM - RESPONSIVO MOBILE
========================================================= */


/* =========================================================
INÍCIO - AJUSTES V2 | FONTE + FUNDO + CARDS HERO
========================================================= */
body {
  font-family: "Manrope", Inter, Arial, Helvetica, sans-serif;
}

.ecx-brand__text,
.ecx-nav a,
.ecx-header__cta,
.ecx-eyebrow,
.ecx-hero h1,
.ecx-btn,
.ecx-glass-card__label,
.ecx-glass-card__sub,
.ecx-market__eyebrow,
.ecx-market h2,
.ecx-market__item p {
  font-family: "Sora", "Manrope", Inter, Arial, sans-serif;
}

.ecx-hero__visual::before {
  content: "";
  position: absolute;
  inset: 34px -10px 40px 120px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 54% 34%, rgba(157, 221, 255, .38) 0, rgba(157, 221, 255, .16) 16%, rgba(157, 221, 255, 0) 42%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(164, 221, 255, .14) 100%);
  opacity: .95;
}

.ecx-hero__visual::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 88px;
  width: 292px;
  height: 360px;
  z-index: 1;
  pointer-events: none;
  opacity: .34;
  background:
    linear-gradient(rgba(113, 198, 255, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 198, 255, .18) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0 36%, rgba(133, 209, 255, .22) 36% 37%, transparent 37% 70%, rgba(133, 209, 255, .22) 70% 71%, transparent 71%),
    linear-gradient(90deg, transparent 0 42%, rgba(133, 209, 255, .22) 42% 43%, transparent 43% 77%, rgba(133, 209, 255, .22) 77% 78%, transparent 78%);
  background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%;
  border-radius: 18px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 14%, #000 100%);
}

.ecx-tech-grid {
  inset: 18px -76px -6px 10px;
  opacity: .82;
  background:
    linear-gradient(rgba(76, 169, 233, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 169, 233, .075) 1px, transparent 1px),
    radial-gradient(circle at 57% 32%, rgba(144, 217, 255, .34) 0, rgba(144, 217, 255, .18) 18%, rgba(144, 217, 255, 0) 48%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(163, 223, 255, .14) 56%, rgba(255,255,255,0) 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  mask-image: radial-gradient(circle at 56% 42%, black 0 60%, transparent 82%);
}

.ecx-tech-grid::before {
  content: "";
  position: absolute;
  left: 122px;
  top: 96px;
  width: 402px;
  height: 402px;
  border-radius: 50%;
  opacity: .44;
  background:
    radial-gradient(circle, transparent 0 26%, rgba(135, 210, 255, .35) 26.4% 27.2%, transparent 27.7% 40%, rgba(135, 210, 255, .22) 40.5% 41.2%, transparent 41.7% 53%, rgba(135, 210, 255, .18) 53.5% 54.1%, transparent 54.6%),
    repeating-conic-gradient(from -10deg, rgba(124, 204, 255, .38) 0 9deg, transparent 9deg 27deg);
  filter: drop-shadow(0 0 22px rgba(115, 202, 255, .18));
}

.ecx-tech-grid::after {
  content: "";
  position: absolute;
  right: 34px;
  bottom: 112px;
  width: 236px;
  height: 148px;
  border-radius: 12px;
  border: 1px solid rgba(180, 230, 255, .22);
  background:
    linear-gradient(rgba(162, 224, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(162, 224, 255, .12) 1px, transparent 1px);
  background-size: 28px 28px, 28px 28px;
  opacity: .22;
}

.ecx-hud--large {
  left: 134px;
  top: 120px;
  width: 376px;
  height: 376px;
  opacity: .26;
  filter: drop-shadow(0 0 18px rgba(112, 203, 255, .16));
}

.ecx-hud--small {
  right: 36px;
  top: 124px;
  width: 284px;
  height: 284px;
  opacity: .14;
}

.ecx-light-line--one {
  left: 108px;
  right: -24px;
  top: 300px;
  opacity: .34;
}

.ecx-light-line--two {
  left: 224px;
  right: -50px;
  top: 456px;
  opacity: .24;
}

.ecx-person {
  right: 264px;
  width: 428px;
}

.ecx-glass-card--performance {
  top: 138px;
  right: 194px;
  display: flex;
  flex-direction: column;
}

.ecx-glass-card--performance strong {
  width: 100%;
  text-align: center;
}

.ecx-glass-card--decision {
  top: 242px;
  right: 2px;
}

.ecx-glass-card--result {
  right: 122px;
  bottom: 76px;
}

@media (max-width: 1180px) {
  .ecx-hero__visual::before {
    inset: 42px 0 38px 0;
  }

  .ecx-hero__visual::after {
    right: 8%;
  }

  .ecx-tech-grid::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .ecx-hud--large {
    left: 50%;
    transform: translateX(-50%);
  }

  .ecx-person {
    right: 50%;
    transform: translateX(48%);
  }

  .ecx-glass-card--performance {
    right: 18%;
  }

  .ecx-glass-card--decision {
    right: 4%;
  }

  .ecx-glass-card--result {
    right: 12%;
  }
}

@media (max-width: 767px) {
  .ecx-hero__visual::after {
    display: none;
  }

  .ecx-tech-grid::before {
    left: 50%;
    top: 92px;
    width: 290px;
    height: 290px;
    transform: translateX(-50%);
  }

  .ecx-hud--large {
    width: 302px;
    height: 302px;
    top: 94px;
  }

  .ecx-person {
    width: min(320px, 84vw);
  }

  .ecx-glass-card--performance {
    right: auto;
    left: 0;
  }

  .ecx-glass-card--decision {
    right: 0;
  }

  .ecx-glass-card--result {
    right: 6px;
  }
}
/* =========================================================
FIM - AJUSTES V2 | FONTE + FUNDO + CARDS HERO
========================================================= */


/* =========================================================
INÍCIO - AJUSTES V3 | FUNDO MAIS FIEL + CARDS TRANSLÚCIDOS
========================================================= */
.ecx-page {
  background:
    radial-gradient(circle at 77% 22%, rgba(144, 209, 244, .18) 0, rgba(144, 209, 244, .08) 16%, rgba(144, 209, 244, 0) 34%),
    radial-gradient(circle at 2% 38%, rgba(255, 90, 0, .05) 0, rgba(255, 90, 0, 0) 18%),
    linear-gradient(180deg, #f8fafc 0%, #f1f4f7 100%);
}

.ecx-page::before {
  opacity: .48;
}

.ecx-hero__inner {
  min-height: 650px;
}

.ecx-hero__visual {
  top: 16px;
  height: 650px;
}

.ecx-hero__visual::before {
  inset: 72px 12px 56px 120px;
  background:
    radial-gradient(circle at 54% 34%, rgba(154, 220, 255, .20) 0, rgba(154, 220, 255, .10) 13%, rgba(154, 220, 255, 0) 34%),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(174, 223, 248, .05) 100%);
  opacity: .8;
}

.ecx-hero__visual::after {
  right: 16px;
  top: 120px;
  width: 248px;
  height: 314px;
  opacity: .18;
  background:
    linear-gradient(rgba(111, 193, 241, .14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 193, 241, .14) 1px, transparent 1px),
    linear-gradient(180deg, transparent 0 30%, rgba(148, 214, 248, .16) 30% 31%, transparent 31% 63%, rgba(148, 214, 248, .16) 63% 64%, transparent 64%),
    linear-gradient(90deg, transparent 0 42%, rgba(148, 214, 248, .16) 42% 43%, transparent 43% 78%, rgba(148, 214, 248, .16) 78% 79%, transparent 79%);
  background-size: 56px 56px, 56px 56px, 100% 100%, 100% 100%;
  border-radius: 18px;
  border: 1px solid rgba(173, 226, 249, .12);
}

.ecx-tech-grid {
  inset: 34px -72px 4px 28px;
  opacity: .62;
  background:
    linear-gradient(rgba(83, 176, 231, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 176, 231, .06) 1px, transparent 1px),
    radial-gradient(circle at 58% 34%, rgba(135, 212, 248, .16) 0, rgba(135, 212, 248, .06) 18%, rgba(135, 212, 248, 0) 46%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(162, 218, 245, .06) 58%, rgba(255,255,255,0) 100%);
  background-size: 72px 72px, 72px 72px, 100% 100%, 100% 100%;
  mask-image: radial-gradient(circle at 56% 44%, black 0 58%, transparent 80%);
}

.ecx-tech-grid::before {
  left: 104px;
  top: 110px;
  width: 340px;
  height: 340px;
  opacity: .28;
  background:
    radial-gradient(circle, transparent 0 27%, rgba(144, 214, 248, .24) 27.5% 28.2%, transparent 28.7% 40%, rgba(144, 214, 248, .18) 40.5% 41.1%, transparent 41.6% 52%, rgba(144, 214, 248, .14) 52.5% 53.1%, transparent 53.6%),
    repeating-conic-gradient(from -12deg, rgba(129, 205, 244, .18) 0 8deg, transparent 8deg 28deg);
  filter: none;
}

.ecx-tech-grid::after {
  right: 42px;
  bottom: 116px;
  width: 214px;
  height: 136px;
  opacity: .13;
  border: 1px solid rgba(173, 226, 249, .16);
}

.ecx-hud--large {
  left: 118px;
  top: 128px;
  width: 334px;
  height: 334px;
  opacity: .18;
  filter: none;
}

.ecx-hud--small {
  right: 34px;
  top: 136px;
  width: 248px;
  height: 248px;
  opacity: .08;
}

.ecx-light-line--one,
.ecx-light-line--two {
  opacity: .16;
}

.ecx-person {
  right: 252px;
  width: 420px;
}

.ecx-glass-card {
  border: 1px solid rgba(202, 235, 255, .48);
  background:
    linear-gradient(145deg, rgba(22, 37, 51, .48), rgba(118, 166, 202, .18)),
    rgba(18, 31, 43, .16);
  box-shadow: 0 8px 26px rgba(34, 74, 106, .12), inset 0 0 18px rgba(255, 255, 255, .06);
  backdrop-filter: blur(20px);
}

.ecx-glass-card--performance {
  right: 176px;
}

.ecx-glass-card--performance strong {
  margin: 25px 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ecx-glass-card--decision {
  right: 14px;
}

.ecx-glass-card--result {
  right: 112px;
}

@media (max-width: 1180px) {
  .ecx-hero__visual {
    height: 600px;
  }

  .ecx-hero__visual::before {
    inset: 56px 0 38px 0;
  }

  .ecx-tech-grid::before,
  .ecx-hud--large {
    left: 50%;
    transform: translateX(-50%);
  }

  .ecx-tech-grid::before {
    top: 102px;
  }
}

@media (max-width: 767px) {
  .ecx-hero__visual::before {
    inset: 64px 0 60px 0;
  }

  .ecx-tech-grid {
    inset: 20px -10px 0 -10px;
  }

  .ecx-tech-grid::before {
    width: 270px;
    height: 270px;
  }

  .ecx-hud--large {
    width: 278px;
    height: 278px;
  }
}
/* =========================================================
FIM - AJUSTES V3 | FUNDO MAIS FIEL + CARDS TRANSLÚCIDOS
========================================================= */


/* =========================================================
INÍCIO - AJUSTES V4 | TIPOGRAFIA + COMPOSIÇÃO HERO
========================================================= */
body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
}

.ecx-brand__text,
.ecx-nav a,
.ecx-header__cta,
.ecx-eyebrow,
.ecx-hero h1,
.ecx-btn,
.ecx-glass-card__label,
.ecx-glass-card__sub,
.ecx-market__eyebrow,
.ecx-market h2,
.ecx-market__item p {
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-brand__text {
  font-weight: 800;
  letter-spacing: -.035em;
}

.ecx-nav a,
.ecx-header__cta,
.ecx-btn,
.ecx-market__item p {
  font-weight: 700;
}

.ecx-eyebrow,
.ecx-market__eyebrow {
  font-weight: 800;
}

.ecx-hero__inner {
  min-height: 675px;
  padding-top: 48px;
}

.ecx-hero__copy {
  max-width: 610px;
  padding-bottom: 44px;
}

.ecx-hero h1 {
  font-size: clamp(56px, 4.7vw, 74px);
  line-height: .99;
  letter-spacing: -.065em;
  font-weight: 800;
}

.ecx-hero__text {
  max-width: 540px;
}

.ecx-hero__visual {
  top: 8px;
  height: 690px;
}

.ecx-tech-grid::before {
  left: 88px;
  top: 106px;
  width: 332px;
  height: 332px;
  opacity: .24;
}

.ecx-hud--large {
  left: 102px;
  top: 122px;
  width: 324px;
  height: 324px;
  opacity: .14;
}

.ecx-hud--small {
  right: 18px;
  top: 152px;
  width: 232px;
  height: 232px;
  opacity: .06;
}

.ecx-person {
  right: 286px;
  bottom: -30px;
  width: 462px;
  max-height: 700px;
  filter: drop-shadow(0 20px 30px rgba(3, 12, 22, .16));
}

.ecx-glass-card {
  border-radius: 14px;
  border: 1px solid rgba(204, 234, 252, .42);
  background:
    linear-gradient(145deg, rgba(26, 39, 51, .42), rgba(140, 188, 222, .14)),
    rgba(22, 36, 49, .12);
  box-shadow: 0 10px 30px rgba(34, 74, 106, .10), inset 0 0 14px rgba(255, 255, 255, .04);
  backdrop-filter: blur(22px);
}

.ecx-glass-card__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.ecx-glass-card__sub {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.01em;
}

.ecx-glass-card--performance {
  top: 126px;
  right: 176px;
  width: 170px;
  min-height: 222px;
  padding: 28px 22px 24px;
}

.ecx-glass-card--performance strong {
  margin: 24px 0 10px;
  font-size: 52px;
  line-height: .92;
  font-weight: 800;
  letter-spacing: -.07em;
}

.ecx-glass-card--decision {
  top: 216px;
  right: -8px;
  width: 140px;
  min-height: 174px;
  padding: 24px 18px 18px;
}

.ecx-bars {
  height: 70px;
  gap: 6px;
  margin-top: 20px;
}

.ecx-glass-card--result {
  right: 112px;
  bottom: 76px;
  width: 252px;
  min-height: 150px;
  padding: 22px 22px 14px;
}

.ecx-line-chart {
  height: 78px;
}

.ecx-market {
  margin-top: -2px;
}

.ecx-market h2 {
  font-weight: 800;
  letter-spacing: -.055em;
}

@media (max-width: 1180px) {
  .ecx-hero__inner {
    min-height: auto;
  }

  .ecx-hero__visual {
    height: 630px;
  }

  .ecx-tech-grid::before,
  .ecx-hud--large {
    left: 50%;
    transform: translateX(-50%);
  }

  .ecx-person {
    right: 50%;
    transform: translateX(46%);
    width: min(440px, 56vw);
    bottom: -18px;
  }

  .ecx-glass-card--performance {
    right: 16%;
  }

  .ecx-glass-card--decision {
    right: 3%;
  }

  .ecx-glass-card--result {
    right: 11%;
  }
}

@media (max-width: 767px) {
  .ecx-hero h1 {
    font-size: clamp(42px, 12vw, 56px);
  }

  .ecx-hero__visual {
    height: 560px;
  }

  .ecx-person {
    bottom: -10px;
    width: min(330px, 86vw);
    transform: translateX(50%);
  }

  .ecx-glass-card--performance {
    right: auto;
    left: 0;
    top: 28px;
  }

  .ecx-glass-card--decision {
    top: 110px;
    right: 0;
  }

  .ecx-glass-card--result {
    right: 4px;
    bottom: 44px;
  }
}
/* =========================================================
FIM - AJUSTES V4 | TIPOGRAFIA + COMPOSIÇÃO HERO
========================================================= */


/* =========================================================
INÍCIO - DORES DAS EMPRESAS
========================================================= */
.ecx-pains {
  position: relative;
  z-index: 5;
  margin-top: 12px;
  margin-bottom: 62px;
  padding: 34px 30px 32px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #efefef 0%, #ececec 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.ecx-pains__bg-tech {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ecx-pains__bg-tech::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -24px;
  width: 250px;
  height: 320px;
  opacity: .34;
  background:
    radial-gradient(circle, rgba(103, 181, 230, .58) 1.2px, transparent 1.8px),
    linear-gradient(45deg, transparent 49%, rgba(103, 181, 230, .24) 50%, transparent 51%);
  background-size: 22px 22px, 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.95), rgba(0,0,0,.55));
}

.ecx-pains__bg-tech::after {
  content: "";
  position: absolute;
  right: 78px;
  top: 52px;
  width: 168px;
  height: 168px;
  opacity: .16;
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 44%, rgba(116, 194, 240, .36) 44.5% 45.5%, transparent 46% 58%, rgba(116, 194, 240, .22) 58.5% 59.4%, transparent 60%),
    repeating-conic-gradient(from 22deg, rgba(116, 194, 240, .20) 0 10deg, transparent 10deg 28deg);
}

.ecx-pains__header {
  position: relative;
  z-index: 2;
  padding: 0 4px;
}

.ecx-pains__eyebrow {
  margin: 0 0 12px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-pains h2 {
  margin: 0;
  color: #101318;
  font-size: clamp(28px, 2.35vw, 33px);
  line-height: 1.18;
  letter-spacing: -.045em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-pains__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ecx-pains__card {
  min-height: 186px;
  padding: 24px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  border-radius: 12px;
  background: rgba(255,255,255,.84);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.03);
}

.ecx-pains__icon {
  width: 52px;
  height: 52px;
  color: #2a2f35;
}

.ecx-pains__icon svg {
  width: 100%;
  height: 100%;
}

.ecx-pains__card p {
  margin: 20px 0 0;
  color: #14181d;
  font-size: 14px;
  line-height: 1.42;
  font-weight: 600;
  font-family: "Inter", Arial, sans-serif;
}
/* =========================================================
FIM - DORES DAS EMPRESAS
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO DORES DAS EMPRESAS
========================================================= */
@media (max-width: 1180px) {
  .ecx-pains {
    padding: 30px 22px 26px;
  }

  .ecx-pains__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ecx-pains {
    margin-bottom: 42px;
    padding: 24px 16px 18px;
    border-radius: 16px;
  }

  .ecx-pains__bg-tech::before {
    width: 170px;
    right: -48px;
    top: 10px;
    opacity: .22;
  }

  .ecx-pains__bg-tech::after {
    width: 120px;
    height: 120px;
    right: 26px;
    top: 62px;
    opacity: .12;
  }

  .ecx-pains h2 {
    font-size: 26px;
  }

  .ecx-pains__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
  }

  .ecx-pains__card {
    min-height: 162px;
    padding: 20px 12px 14px;
  }

  .ecx-pains__icon {
    width: 44px;
    height: 44px;
  }

  .ecx-pains__card p {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.36;
  }
}
/* =========================================================
FIM - RESPONSIVO DORES DAS EMPRESAS
========================================================= */


/* =========================================================
INÍCIO - O QUE FAZEMOS
========================================================= */
.ecx-what {
  position: relative;
  z-index: 4;
  margin-top: 6px;
  margin-bottom: 34px;
  padding: 4px 0 0;
}

.ecx-what__content {
  display: grid;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.ecx-what__copy {
  padding-left: 2px;
}

.ecx-what__eyebrow {
  margin: 0 0 10px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-what h2 {
  margin: 0;
  color: #101318;
  font-size: clamp(32px, 2.75vw, 47px);
  line-height: 1.12;
  letter-spacing: -.055em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-what h2 span {
  color: #de7a34;
}

.ecx-what__text {
  max-width: 345px;
  margin: 20px 0 0;
  color: #222931;
  font-size: 15px;
  line-height: 1.72;
  font-weight: 500;
}

.ecx-what__visual {
  position: relative;
}

.ecx-what__visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(8, 17, 28, .10);
}
/* =========================================================
FIM - O QUE FAZEMOS
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO O QUE FAZEMOS
========================================================= */
@media (max-width: 1180px) {
  .ecx-what__content {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ecx-what__text {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .ecx-what {
    margin-bottom: 24px;
  }

  .ecx-what__content {
    gap: 18px;
  }

  .ecx-what h2 {
    font-size: 30px;
  }

  .ecx-what__text {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.66;
  }

  .ecx-what__visual img {
    border-radius: 10px;
  }
}
/* =========================================================
FIM - RESPONSIVO O QUE FAZEMOS
========================================================= */


/* =========================================================
INÍCIO - SOLUÇÕES / PILARES
========================================================= */
.ecx-pillars {
  position: relative;
  z-index: 4;
  margin-top: 12px;
  margin-bottom: 42px;
}

.ecx-pillars__eyebrow {
  margin: 0 0 16px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ecx-pillar-card {
  min-height: 160px;
  padding: 26px 22px 22px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 26px;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 50%, rgba(0, 132, 255, .12) 0, transparent 26%),
    linear-gradient(135deg, #071018 0%, #08111a 58%, #05090d 100%);
  box-shadow: 0 10px 22px rgba(7, 15, 24, .14);
}

.ecx-pillar-card__icon {
  width: 54px;
  height: 54px;
  color: #fff;
}

.ecx-pillar-card__icon svg {
  width: 100%;
  height: 100%;
}

.ecx-pillar-card__content h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.26;
  letter-spacing: -.03em;
  font-weight: 600;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-pillar-card__content p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
}

.ecx-pillar-card__arrow {
  align-self: center;
  justify-self: end;
  color: var(--ecx-orange);
  font-size: 44px;
  line-height: 1;
  transform: translateY(4px);
}
/* =========================================================
FIM - SOLUÇÕES / PILARES
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO SOLUÇÕES / PILARES
========================================================= */
@media (max-width: 1180px) {
  .ecx-pillars__grid {
    grid-template-columns: 1fr;
  }

  .ecx-pillar-card {
    min-height: 138px;
  }
}

@media (max-width: 767px) {
  .ecx-pillars {
    margin-bottom: 30px;
  }

  .ecx-pillars__eyebrow {
    margin-bottom: 12px;
  }

  .ecx-pillar-card {
    padding: 20px 18px 18px;
    grid-template-columns: 46px minmax(0, 1fr) 22px;
    gap: 14px;
    border-radius: 12px;
  }

  .ecx-pillar-card__icon {
    width: 46px;
    height: 46px;
  }

  .ecx-pillar-card__content h3 {
    font-size: 17px;
  }

  .ecx-pillar-card__content p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.5;
  }

  .ecx-pillar-card__arrow {
    font-size: 34px;
  }
}
/* =========================================================
FIM - RESPONSIVO SOLUÇÕES / PILARES
========================================================= */


/* =========================================================
INÍCIO - MÉTODO
========================================================= */
.ecx-method {
  position: relative;
  z-index: 4;
  margin-top: 6px;
  margin-bottom: 48px;
}

.ecx-method__header {
  margin-bottom: 14px;
}

.ecx-method__eyebrow {
  margin: 0 0 8px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-method__header h2 {
  margin: 0;
  color: #11161b;
  font-size: clamp(31px, 2.45vw, 43px);
  line-height: 1.12;
  letter-spacing: -.05em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-method__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 0;
  padding-top: 10px;
}

.ecx-method__timeline::after {
  content: "";
  position: absolute;
  right: 0;
  top: 44px;
  width: 32px;
  height: 2px;
  background: #d7e8f4;
}

.ecx-method__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 2px;
  background: #d7e8f4;
}

.ecx-method__line::before,
.ecx-method__line::after {
  content: "";
  position: absolute;
  top: 0;
  height: 2px;
  background: #71b9e9;
}

.ecx-method__line::before {
  left: 0;
  width: 32px;
}

.ecx-method__line::after {
  left: 64px;
  right: 64px;
}

.ecx-method__line-dot {
  position: absolute;
  top: 38px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #69b8ea;
  background: #f6f8fa;
  box-shadow: 0 0 0 3px rgba(246,248,250,.9);
}

.ecx-method__line-dot--1 { left: 22.7%; }
.ecx-method__line-dot--2 { left: 45.6%; }
.ecx-method__line-dot--3 { left: 68.4%; }
.ecx-method__line-dot--4 { left: 91.2%; }

.ecx-step:last-child::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -6px;
  width: 36px;
  height: 2px;
  background: #71b9e9;
}

.ecx-step {
  position: relative;
  z-index: 1;
  text-align: left;
}

.ecx-step__top {
  height: 88px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.ecx-step__icon {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #040a10, #09111a 72%, #04080c 100%);
  box-shadow: 0 0 0 4px #f5f7f9, 0 2px 8px rgba(8, 16, 26, .10), 0 0 0 1px rgba(72, 148, 198, .22);
}

.ecx-step__icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(115, 190, 236, .45);
}

.ecx-step__icon svg {
  width: 32px;
  height: 32px;
}

.ecx-step__number {
  margin-top: 4px;
  color: #1b2127;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-step h3 {
  margin: 8px 0 10px;
  color: #10161c;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-step p {
  max-width: 170px;
  margin: 0;
  color: #262d35;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 500;
}
/* =========================================================
FIM - MÉTODO
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO MÉTODO
========================================================= */
@media (max-width: 1180px) {
  .ecx-method__timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 4px;
  }

  .ecx-method__line,
  .ecx-method__line-dot,
  .ecx-method__timeline::after,
  .ecx-step:last-child::after {
    display: none;
  }

  .ecx-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 14px;
    align-items: start;
  }

  .ecx-step__top {
    grid-row: 1 / span 3;
    height: 60px;
  }

  .ecx-step__icon {
    width: 52px;
    height: 52px;
  }

  .ecx-step__icon svg {
    width: 26px;
    height: 26px;
  }

  .ecx-step__number,
  .ecx-step h3,
  .ecx-step p {
    max-width: none;
  }

  .ecx-step h3 {
    margin-top: 6px;
  }
}

@media (max-width: 767px) {
  .ecx-method {
    margin-bottom: 34px;
  }

  .ecx-method__header h2 {
    font-size: 28px;
  }

  .ecx-step {
    grid-template-columns: 54px 1fr;
    column-gap: 12px;
  }

  .ecx-step__icon {
    width: 48px;
    height: 48px;
  }

  .ecx-step__icon::before {
    inset: -4px;
  }

  .ecx-step__icon svg {
    width: 23px;
    height: 23px;
  }

  .ecx-step p {
    font-size: 13px;
    line-height: 1.5;
  }
}
/* =========================================================
FIM - RESPONSIVO MÉTODO
========================================================= */


/* =========================================================
INÍCIO - HOTFIX MÉTODO V4
========================================================= */
.ecx-method__timeline {
  column-gap: 14px !important;
  padding: 10px 18px 0 !important;
}

.ecx-method__timeline::after,
.ecx-step:last-child::after,
.ecx-method__line::before,
.ecx-method__line::after {
  display: none !important;
}

.ecx-method__line {
  left: 18px !important;
  right: 18px !important;
  top: 44px !important;
  height: 2px !important;
  background: #71b9e9 !important;
}

.ecx-method__line-dot {
  top: 37px !important;
  width: 15px !important;
  height: 15px !important;
  border: 2px solid #69b8ea !important;
  background: #f6f8fa !important;
}

.ecx-method__line-dot--1 { left: calc(20% - 2px) !important; }
.ecx-method__line-dot--2 { left: calc(40% - 4px) !important; }
.ecx-method__line-dot--3 { left: calc(60% - 6px) !important; }
.ecx-method__line-dot--4 { left: calc(80% - 8px) !important; }

.ecx-step__top {
  justify-content: center !important;
}

.ecx-step__number,
.ecx-step h3,
.ecx-step p {
  max-width: 170px;
}

@media (max-width: 1180px) {
  .ecx-method__timeline {
    padding: 4px 0 0 !important;
  }
}
/* =========================================================
FIM - HOTFIX MÉTODO V4
========================================================= */


/* =========================================================
INÍCIO - HOTFIX MÉTODO V5 | ALINHAMENTO DOS TEXTOS
========================================================= */
.ecx-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ecx-step__number,
.ecx-step h3,
.ecx-step p {
  width: 170px;
  max-width: 170px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: left;
}

.ecx-step h3 {
  min-height: 36px;
}

@media (max-width: 1180px) {
  .ecx-step {
    display: grid;
    align-items: start;
  }

  .ecx-step__number,
  .ecx-step h3,
  .ecx-step p {
    width: auto;
    max-width: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .ecx-step h3 {
    min-height: 0;
  }
}
/* =========================================================
FIM - HOTFIX MÉTODO V5 | ALINHAMENTO DOS TEXTOS
========================================================= */


/* =========================================================
INÍCIO - HOTFIX MÉTODO V6 | ESPAÇAMENTO TÍTULO E TEXTO
========================================================= */
.ecx-step__number {
  margin-top: 2px !important;
  margin-bottom: 6px !important;
}

.ecx-step h3 {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
  min-height: auto !important;
}

.ecx-step p {
  margin-top: 0 !important;
}
/* =========================================================
FIM - HOTFIX MÉTODO V6 | ESPAÇAMENTO TÍTULO E TEXTO
========================================================= */


/* =========================================================
INÍCIO - RESULTADOS
========================================================= */
.ecx-results {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  margin-bottom: 44px;
  padding: 18px 18px 18px;
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  border-radius: 18px;
  background: linear-gradient(180deg, #efefef 0%, #ececec 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.ecx-results__header {
  padding: 10px 10px 10px 10px;
}

.ecx-results__eyebrow {
  margin: 0 0 12px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-results__header h2 {
  margin: 0;
  color: #11161b;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.22;
  letter-spacing: -.045em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-results__panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 100% 50%, rgba(0, 132, 255, .12) 0, transparent 24%),
    linear-gradient(135deg, #071018 0%, #08111a 58%, #05090d 100%);
  box-shadow: 0 10px 22px rgba(7, 15, 24, .14);
}

.ecx-results__item {
  min-height: 138px;
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.14);
}

.ecx-results__item:last-child {
  border-right: 0;
}

.ecx-results__item h3 {
  margin: 0;
  color: var(--ecx-orange);
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: .95;
  letter-spacing: -.06em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
  white-space: nowrap;
}

.ecx-results__item h3 span {
  font-size: .56em;
  letter-spacing: -.04em;
}

.ecx-results__item p {
  margin: 14px 0 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}
/* =========================================================
FIM - RESULTADOS
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO RESULTADOS
========================================================= */
@media (max-width: 1180px) {
  .ecx-results {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px;
  }

  .ecx-results__header {
    padding: 4px 8px;
  }

  .ecx-results__panel {
    grid-template-columns: repeat(5, minmax(160px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 767px) {
  .ecx-results {
    margin-bottom: 32px;
    padding: 16px 14px;
    border-radius: 16px;
  }

  .ecx-results__eyebrow {
    margin-bottom: 10px;
  }

  .ecx-results__header h2 {
    font-size: 27px;
  }

  .ecx-results__item {
    min-height: 126px;
    padding: 18px 14px 16px;
  }

  .ecx-results__item h3 {
    font-size: 32px;
  }

  .ecx-results__item p {
    margin-top: 12px;
    font-size: 13px;
  }
}
/* =========================================================
FIM - RESPONSIVO RESULTADOS
========================================================= */


/* =========================================================
INÍCIO - HOTFIX RESULTADOS V2 | ALTURA E ALINHAMENTO
========================================================= */
.ecx-results {
  grid-template-columns: 330px minmax(0, 1fr) !important;
  align-items: center !important;
}

.ecx-results__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ecx-results__header h2 {
  font-size: clamp(26px, 2.05vw, 36px) !important;
  line-height: 1.18 !important;
  max-width: 260px;
}

.ecx-results__panel {
  align-items: stretch;
}

.ecx-results__item {
  min-height: 116px !important;
  justify-content: center !important;
  padding: 16px 16px 14px !important;
}

.ecx-results__item h3 {
  margin-bottom: 10px !important;
}

.ecx-results__item p {
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

@media (max-width: 1180px) {
  .ecx-results {
    grid-template-columns: 1fr !important;
  }

  .ecx-results__header h2 {
    max-width: 520px;
  }
}

@media (max-width: 767px) {
  .ecx-results__header h2 {
    max-width: 240px;
    font-size: 27px !important;
  }

  .ecx-results__item {
    min-height: 112px !important;
  }
}
/* =========================================================
FIM - HOTFIX RESULTADOS V2 | ALTURA E ALINHAMENTO
========================================================= */


/* =========================================================
INÍCIO - SOBRE
========================================================= */
.ecx-about {
  position: relative;
  z-index: 4;
  margin-top: 6px;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 334px minmax(360px, 1fr) minmax(360px, 520px);
  gap: 38px;
  align-items: center;
}

.ecx-about__photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.9) 0, rgba(255,255,255,.2) 18%, transparent 44%),
    linear-gradient(180deg, #dbdde1 0%, #cfd2d7 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.ecx-about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.ecx-about__content {
  max-width: 560px;
}

.ecx-about__eyebrow {
  margin: 0 0 14px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-about__lead,
.ecx-about__text {
  margin: 0;
  color: #20262d;
  font-size: 17px;
  line-height: 1.58;
  font-weight: 500;
}

.ecx-about__text {
  margin-top: 28px;
}

.ecx-about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 44px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 9px;
  border: 2px solid rgba(24, 28, 34, .38);
  color: #20262d;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
  text-decoration: none;
}

.ecx-about__btn span {
  font-size: 28px;
  line-height: 1;
  transform: translateY(-1px);
}

.ecx-about__logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.ecx-about__logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 0 18px;
  position: relative;
}

.ecx-about__logo-item + .ecx-about__logo-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(216, 158, 106, .55);
}

.ecx-about__logo-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ecx-about__logo-item--coke img { max-width: 168px; }
.ecx-about__logo-item--danone img { max-width: 150px; }
.ecx-about__logo-item--boticario img { max-width: 185px; }
/* =========================================================
FIM - SOBRE
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO SOBRE
========================================================= */
@media (max-width: 1180px) {
  .ecx-about {
    grid-template-columns: 280px 1fr;
    gap: 26px;
  }

  .ecx-about__logos {
    grid-column: 1 / -1;
  }

  .ecx-about__content {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .ecx-about {
    margin-bottom: 36px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ecx-about__photo-wrap {
    max-width: 320px;
  }

  .ecx-about__lead,
  .ecx-about__text {
    font-size: 15px;
    line-height: 1.56;
  }

  .ecx-about__text {
    margin-top: 18px;
  }

  .ecx-about__btn {
    margin-top: 18px;
    min-height: 42px;
    font-size: 15px;
  }

  .ecx-about__logos {
    grid-template-columns: 1fr;
  }

  .ecx-about__logo-item {
    min-height: 86px;
  }

  .ecx-about__logo-item + .ecx-about__logo-item::before {
    left: 18px;
    right: 18px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}
/* =========================================================
FIM - RESPONSIVO SOBRE
========================================================= */


/* =========================================================
INÍCIO - HOTFIX SOBRE V3 | LOGOS MAIS MENOS COLADAS
========================================================= */
.ecx-about {
  grid-template-columns: 334px minmax(360px, 1fr) minmax(420px, 600px) !important;
}

.ecx-about__logos {
  column-gap: 18px;
}

.ecx-about__logo-item {
  min-height: 134px !important;
  padding: 0 26px !important;
}

.ecx-about__logo-item + .ecx-about__logo-item::before {
  left: -9px !important;
}

.ecx-about__logo-item--coke img { max-width: 152px !important; }
.ecx-about__logo-item--danone img { max-width: 132px !important; }
.ecx-about__logo-item--boticario img { max-width: 150px !important; }

@media (max-width: 1180px) {
  .ecx-about {
    grid-template-columns: 280px 1fr !important;
  }

  .ecx-about__logos {
    column-gap: 0;
  }

  .ecx-about__logo-item {
    padding: 0 18px !important;
  }

  .ecx-about__logo-item + .ecx-about__logo-item::before {
    left: 0 !important;
  }
}

@media (max-width: 767px) {
  .ecx-about__logo-item {
    min-height: 86px !important;
    padding: 0 12px !important;
  }
}
/* =========================================================
FIM - HOTFIX SOBRE V3 | LOGOS MAIS MENOS COLADAS
========================================================= */


/* =========================================================
INÍCIO - CONTEÚDOS
========================================================= */
.ecx-content {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.ecx-content__intro {
  padding-top: 4px;
}

.ecx-content__eyebrow {
  margin: 0 0 12px;
  color: var(--ecx-orange);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .06em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-content__intro h2 {
  margin: 0;
  color: #11161b;
  font-size: clamp(30px, 2.35vw, 42px);
  line-height: 1.18;
  letter-spacing: -.05em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-content__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.ecx-article-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, #071018 0%, #08111a 58%, #05090d 100%);
  box-shadow: 0 8px 18px rgba(7, 15, 24, .12);
}

.ecx-article-card__thumb {
  position: relative;
  height: 118px;
  overflow: hidden;
  background-color: #08111a;
}

.ecx-article-card__thumb::before,
.ecx-article-card__thumb::after {
  content: "";
  position: absolute;
}

.ecx-article-card__thumb::before {
  inset: 0;
  background:
    radial-gradient(circle at 65% 40%, rgba(77, 181, 244, .45) 0, rgba(77, 181, 244, .16) 12%, transparent 26%),
    linear-gradient(180deg, rgba(2, 8, 14, .08), rgba(2, 8, 14, .58)),
    radial-gradient(circle at 86% 22%, rgba(255,255,255,.10) 0 3px, transparent 4px),
    linear-gradient(135deg, rgba(13,31,45,.95) 0%, rgba(7,17,26,.92) 100%);
}

.ecx-article-card__thumb::after {
  width: 110px;
  height: 110px;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  border: 1px solid rgba(122, 204, 248, .28);
  box-shadow: 0 0 0 12px rgba(122, 204, 248, .06), 0 0 0 26px rgba(122, 204, 248, .04);
  opacity: .6;
}

.ecx-article-card__thumb--2::before,
.ecx-article-card__thumb--2::after {
  filter: grayscale(100%);
}

.ecx-article-card__thumb--3::before {
  background:
    linear-gradient(180deg, rgba(2, 8, 14, .08), rgba(2, 8, 14, .58)),
    radial-gradient(circle at 70% 38%, rgba(77, 181, 244, .36) 0, rgba(77, 181, 244, .10) 14%, transparent 26%),
    linear-gradient(135deg, rgba(12,29,45,.95) 0%, rgba(7,17,26,.92) 100%);
}

.ecx-article-card__thumb--4::before {
  background:
    linear-gradient(180deg, rgba(2, 8, 14, .08), rgba(2, 8, 14, .58)),
    radial-gradient(circle at 68% 44%, rgba(77, 181, 244, .22) 0, rgba(77, 181, 244, .08) 14%, transparent 28%),
    linear-gradient(135deg, rgba(10,27,40,.95) 0%, rgba(9,23,36,.92) 100%);
}

.ecx-article-card__thumb--4::after,
.ecx-article-card__thumb--5::after {
  width: 86px;
  height: 56px;
  right: 20px;
  bottom: 14px;
  top: auto;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95) 0 100%);
  opacity: .9;
  clip-path: polygon(0 100%, 0 88%, 16% 72%, 32% 76%, 48% 46%, 64% 60%, 80% 28%, 100% 40%, 100% 100%);
}

.ecx-article-card__thumb--5::before {
  background:
    linear-gradient(180deg, rgba(2, 8, 14, .08), rgba(2, 8, 14, .58)),
    radial-gradient(circle at 68% 44%, rgba(255, 129, 51, .22) 0, rgba(255, 129, 51, .08) 14%, transparent 28%),
    linear-gradient(135deg, rgba(38,16,8,.94) 0%, rgba(18,10,7,.92) 100%);
}

.ecx-article-card__thumb--6::before {
  background:
    radial-gradient(circle at 65% 40%, rgba(77, 181, 244, .34) 0, rgba(77, 181, 244, .16) 12%, transparent 24%),
    linear-gradient(180deg, rgba(2, 8, 14, .08), rgba(2, 8, 14, .58)),
    linear-gradient(135deg, rgba(10,24,38,.95) 0%, rgba(7,17,26,.92) 100%);
}

.ecx-article-card__body {
  padding: 14px 14px 16px;
}

.ecx-article-card__tag {
  margin: 0 0 10px;
  color: var(--ecx-orange);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: .03em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-article-card__body h3 {
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 500;
  min-height: 58px;
}

.ecx-article-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--ecx-orange);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-article-card__body a span {
  font-size: 18px;
}
/* =========================================================
FIM - CONTEÚDOS
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO CONTEÚDOS
========================================================= */
@media (max-width: 1180px) {
  .ecx-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ecx-content__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .ecx-content {
    margin-bottom: 36px;
    gap: 16px;
  }

  .ecx-content__intro h2 {
    font-size: 28px;
  }

  .ecx-content__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ecx-article-card__thumb {
    height: 132px;
  }

  .ecx-article-card__body h3 {
    min-height: auto;
  }
}
/* =========================================================
FIM - RESPONSIVO CONTEÚDOS
========================================================= */


/* =========================================================
INÍCIO - HOTFIX CONTEÚDOS V2 | CARDS MAIS QUADRADOS E ALINHADOS
========================================================= */
.ecx-content {
  grid-template-columns: 335px minmax(0, 1fr) !important;
  gap: 24px !important;
}

.ecx-content__grid {
  gap: 14px !important;
}

.ecx-article-card {
  display: flex;
  flex-direction: column;
  min-height: 292px;
  border-radius: 14px !important;
}

.ecx-article-card__thumb {
  height: 116px !important;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.ecx-article-card__thumb::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 18, .14), rgba(5, 12, 18, .52)),
    linear-gradient(135deg, rgba(9, 26, 38, .98) 0%, rgba(6, 16, 24, .96) 100%) !important;
}

.ecx-article-card__thumb::after {
  left: 18px;
  right: 18px;
  top: 18px;
  bottom: 18px;
  width: auto !important;
  height: auto !important;
  border-radius: 10px !important;
  border: 1px solid rgba(116, 197, 241, .14) !important;
  box-shadow: none !important;
  opacity: 1 !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    radial-gradient(circle at 78% 28%, rgba(84, 185, 245, .30) 0, rgba(84, 185, 245, .10) 14%, transparent 34%),
    linear-gradient(135deg, rgba(8, 28, 42, .96) 0%, rgba(7, 18, 27, .96) 100%) !important;
  clip-path: none !important;
}

.ecx-article-card__thumb--2::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, .16) 0, rgba(255,255,255,.06) 14%, transparent 34%),
    linear-gradient(135deg, rgba(24, 24, 24, .96) 0%, rgba(12, 12, 12, .96) 100%) !important;
}

.ecx-article-card__thumb--5::after {
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    radial-gradient(circle at 70% 25%, rgba(255, 129, 51, .30) 0, rgba(255,129,51,.12) 14%, transparent 34%),
    linear-gradient(135deg, rgba(37, 14, 8, .96) 0%, rgba(20, 10, 8, .96) 100%) !important;
}

.ecx-article-card__thumb--1::before,
.ecx-article-card__thumb--2::before,
.ecx-article-card__thumb--3::before,
.ecx-article-card__thumb--4::before,
.ecx-article-card__thumb--5::before,
.ecx-article-card__thumb--6::before {
  background: linear-gradient(180deg, rgba(5, 12, 18, .14), rgba(5, 12, 18, .52)), linear-gradient(135deg, rgba(9, 26, 38, .98) 0%, rgba(6, 16, 24, .96) 100%) !important;
}

.ecx-article-card__thumb--2::before {
  background: linear-gradient(180deg, rgba(5, 12, 18, .14), rgba(5, 12, 18, .52)), linear-gradient(135deg, rgba(26, 26, 26, .98) 0%, rgba(10, 10, 10, .96) 100%) !important;
}

.ecx-article-card__thumb--5::before {
  background: linear-gradient(180deg, rgba(5, 12, 18, .14), rgba(5, 12, 18, .52)), linear-gradient(135deg, rgba(36, 15, 8, .98) 0%, rgba(16, 9, 7, .96) 100%) !important;
}

.ecx-article-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 14px 14px 16px !important;
}

.ecx-article-card__tag {
  min-height: 34px;
  margin: 0 0 10px !important;
  display: flex;
  align-items: flex-start;
  font-size: 10px !important;
  line-height: 1.15 !important;
}

.ecx-article-card__body h3 {
  min-height: 84px !important;
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

.ecx-article-card__body a {
  margin-top: auto !important;
  padding-top: 12px;
}

@media (max-width: 1180px) {
  .ecx-content {
    grid-template-columns: 1fr !important;
  }

  .ecx-content__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .ecx-content__grid {
    grid-template-columns: 1fr !important;
  }

  .ecx-article-card {
    min-height: 276px;
  }

  .ecx-article-card__body h3,
  .ecx-article-card__tag {
    min-height: auto !important;
  }
}
/* =========================================================
FIM - HOTFIX CONTEÚDOS V2 | CARDS MAIS QUADRADOS E ALINHADOS
========================================================= */


/* =========================================================
INÍCIO - HOTFIX CONTEÚDOS V3 | MENOS LATERAL ESQUERDA
========================================================= */
.ecx-content {
  grid-template-columns: 270px minmax(0, 1fr) !important;
  gap: 18px !important;
}

.ecx-content__intro h2 {
  font-size: clamp(28px, 2.05vw, 38px) !important;
  line-height: 1.16 !important;
  max-width: 250px;
}

.ecx-content__grid {
  gap: 12px !important;
}

.ecx-article-card {
  min-height: 284px !important;
}

@media (max-width: 1180px) {
  .ecx-content {
    grid-template-columns: 1fr !important;
  }

  .ecx-content__intro h2 {
    max-width: none;
  }
}
/* =========================================================
FIM - HOTFIX CONTEÚDOS V3 | MENOS LATERAL ESQUERDA
========================================================= */


/* =========================================================
INÍCIO - CTA FINAL
========================================================= */
.ecx-cta-banner {
  position: relative;
  z-index: 4;
  margin-top: 8px;
  margin-bottom: 52px;
  min-height: 178px;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 260px minmax(340px, 1fr) 226px 210px 132px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(circle at 16% 42%, rgba(64, 173, 246, .13) 0, transparent 16%),
    radial-gradient(circle at 91% 22%, rgba(87, 188, 248, .14) 0, transparent 12%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.18)),
    linear-gradient(135deg, #04080d 0%, #09131d 46%, #060a0f 100%);
  box-shadow: 0 10px 24px rgba(6, 14, 22, .16);
}

.ecx-cta-banner__bg,
.ecx-cta-banner__bg::before,
.ecx-cta-banner__bg::after,
.ecx-cta-banner__robot,
.ecx-cta-banner__human,
.ecx-cta-banner__cube {
  position: absolute;
}

.ecx-cta-banner__bg {
  inset: 0;
  pointer-events: none;
}

.ecx-cta-banner__bg::before {
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  width: 34%;
  background:
    linear-gradient(90deg, rgba(0, 126, 204, .12), transparent),
    repeating-linear-gradient(90deg, rgba(91, 184, 245, .16) 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, rgba(91, 184, 245, .10) 0 1px, transparent 1px 22px);
  opacity: .42;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.95), rgba(0,0,0,.28), transparent);
}

.ecx-cta-banner__bg::after {
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 22%;
  background:
    linear-gradient(270deg, rgba(0, 126, 204, .16), transparent),
    repeating-linear-gradient(90deg, rgba(91, 184, 245, .14) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(0deg, rgba(91, 184, 245, .08) 0 1px, transparent 1px 24px);
  opacity: .46;
  mask-image: linear-gradient(270deg, rgba(0,0,0,.95), rgba(0,0,0,.35), transparent);
}

.ecx-cta-banner__tech {
  position: absolute;
  display: block;
}

.ecx-cta-banner__tech--left {
  left: 44px;
  top: 34px;
  width: 180px;
  height: 84px;
  background:
    radial-gradient(circle at 12% 50%, rgba(82, 187, 245, .85) 0 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(82, 187, 245, .22) 0 2px, transparent 2px 18px);
  opacity: .54;
}

.ecx-cta-banner__tech--right {
  right: 38px;
  top: 26px;
  width: 96px;
  height: 96px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 50%, rgba(72, 179, 247, .36), transparent 48%),
    repeating-linear-gradient(90deg, rgba(82, 187, 245, .16) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(82, 187, 245, .10) 0 1px, transparent 1px 18px);
  opacity: .4;
}

.ecx-cta-banner__robot {
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 252px;
  z-index: 1;
}

.ecx-cta-banner__robot::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 26px;
  width: 178px;
  height: 74px;
  border-radius: 50px 26px 28px 36px;
  transform: rotate(8deg);
  background:
    linear-gradient(145deg, #c6cdd4 0%, #8d9aa6 24%, #5d6770 46%, #d8dde2 72%, #717e89 100%);
  box-shadow: 0 4px 10px rgba(0,0,0,.24);
  clip-path: polygon(0 44%, 14% 18%, 44% 9%, 70% 14%, 90% 2%, 100% 32%, 83% 48%, 72% 45%, 60% 56%, 45% 64%, 32% 74%, 12% 82%, 0 76%);
}

.ecx-cta-banner__robot::after {
  content: "";
  position: absolute;
  left: 150px;
  top: 14px;
  width: 82px;
  height: 34px;
  border-radius: 30px;
  transform: rotate(-8deg);
  background: linear-gradient(145deg, #dce2e7 0%, #8f9ca7 44%, #6c7983 100%);
  clip-path: polygon(0 56%, 24% 26%, 70% 12%, 100% 38%, 84% 70%, 36% 88%, 0 78%);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

.ecx-cta-banner__robot-glow {
  position: absolute;
  left: 120px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #65c8ff;
  box-shadow: 0 0 0 4px rgba(101,200,255,.16), 0 0 18px rgba(101,200,255,.65);
}

.ecx-cta-banner__content,
.ecx-cta-banner__actions {
  position: relative;
  z-index: 2;
}

.ecx-cta-banner__content {
  grid-column: 2 / 3;
}

.ecx-cta-banner__content h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 2.35vw, 44px);
  line-height: 1.04;
  letter-spacing: -.05em;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-cta-banner__content h2 span {
  color: var(--ecx-orange);
}

.ecx-cta-banner__content p {
  max-width: 560px;
  margin: 12px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.ecx-cta-banner__actions {
  grid-column: 3 / 4;
  justify-self: start;
}

.ecx-cta-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ff7a12 0%, #f16400 100%);
  color: #fff;
  box-shadow: 0 10px 18px rgba(255, 110, 18, .18);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  font-family: "Archivo", "Inter", Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.ecx-cta-banner__button span {
  font-size: 20px;
}

.ecx-cta-banner__human {
  right: 118px;
  top: 8px;
  width: 245px;
  height: 152px;
  z-index: 1;
}

.ecx-cta-banner__human::before {
  content: "";
  position: absolute;
  right: 0;
  top: 28px;
  width: 214px;
  height: 56px;
  border-radius: 40px 16px 14px 26px;
  transform: rotate(-12deg);
  background:
    linear-gradient(145deg, #3d211a 0%, #9a5d46 18%, #cc9170 38%, #6f4331 72%, #2e1812 100%);
  clip-path: polygon(0 58%, 12% 38%, 30% 24%, 48% 18%, 70% 20%, 100% 0, 88% 36%, 80% 46%, 68% 50%, 45% 58%, 20% 72%, 0 78%);
  box-shadow: 0 4px 10px rgba(0,0,0,.2);
}

.ecx-cta-banner__human::after {
  content: "";
  position: absolute;
  right: 146px;
  top: 62px;
  width: 30px;
  height: 18px;
  border-radius: 14px;
  background: linear-gradient(145deg, #d9a281 0%, #6c4333 100%);
  transform: rotate(-10deg);
}

.ecx-cta-banner__human-glow {
  position: absolute;
  right: 188px;
  top: 44px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ff7a12;
  box-shadow: 0 0 0 4px rgba(255, 122, 18, .14), 0 0 16px rgba(255,122,18,.6);
}

.ecx-cta-banner__cube {
  right: 30px;
  top: 16px;
  width: 90px;
  height: 90px;
  z-index: 1;
  transform: rotate(10deg);
}

.ecx-cta-banner__cube::before,
.ecx-cta-banner__cube::after,
.ecx-cta-banner__cube-inner {
  content: "";
  position: absolute;
  background: linear-gradient(145deg, rgba(79,181,245,.72), rgba(25,85,124,.88));
  border: 1px solid rgba(151,224,255,.48);
  box-shadow: inset 0 0 18px rgba(255,255,255,.18), 0 0 18px rgba(65, 181, 255, .25);
}

.ecx-cta-banner__cube::before {
  inset: 22px 18px 18px 22px;
  transform: skewY(-30deg);
}

.ecx-cta-banner__cube::after {
  inset: 10px 30px 44px 10px;
  transform: skewX(-30deg);
}

.ecx-cta-banner__cube-inner {
  inset: 24px 10px 28px 38px;
}
/* =========================================================
FIM - CTA FINAL
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO CTA FINAL
========================================================= */
@media (max-width: 1180px) {
  .ecx-cta-banner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 22px 24px;
    gap: 16px;
    border-radius: 16px;
  }

  .ecx-cta-banner__robot,
  .ecx-cta-banner__human,
  .ecx-cta-banner__cube {
    display: none;
  }

  .ecx-cta-banner__content,
  .ecx-cta-banner__actions {
    grid-column: auto;
  }

  .ecx-cta-banner__actions {
    justify-self: start;
  }

  .ecx-cta-banner__content p {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .ecx-cta-banner {
    margin-bottom: 40px;
    padding: 22px 16px 18px;
    gap: 14px;
    border-radius: 14px;
  }

  .ecx-cta-banner__bg::before {
    width: 48%;
    opacity: .26;
  }

  .ecx-cta-banner__bg::after {
    width: 34%;
    opacity: .24;
  }

  .ecx-cta-banner__content h2 {
    font-size: 30px;
    line-height: 1.06;
  }

  .ecx-cta-banner__content p {
    font-size: 14px;
    line-height: 1.45;
  }

  .ecx-cta-banner__button {
    width: 100%;
    min-height: 46px;
    font-size: 15px;
  }
}
/* =========================================================
FIM - RESPONSIVO CTA FINAL
========================================================= */


/* =========================================================
INÍCIO - HOTFIX CTA FINAL V2 | FULL WIDTH + VISUAL MELHOR
========================================================= */
.ecx-cta-banner {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 10px !important;
  margin-bottom: 56px !important;
  min-height: 136px !important;
  padding: 16px 42px !important;
  grid-template-columns: 280px minmax(340px, 1fr) 230px 250px 110px !important;
  gap: 14px !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    radial-gradient(circle at 18% 50%, rgba(62, 179, 246, .08) 0, transparent 17%),
    radial-gradient(circle at 87% 20%, rgba(62, 179, 246, .10) 0, transparent 10%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0) 18%),
    linear-gradient(90deg, #060b10 0%, #07111a 28%, #05090d 56%, #07121a 78%, #05090d 100%) !important;
}

.ecx-cta-banner::before,
.ecx-cta-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(102, 194, 245, .08);
}

.ecx-cta-banner::before { left: 34px; }
.ecx-cta-banner::after { right: 34px; }

.ecx-cta-banner__bg::before {
  width: 26% !important;
  opacity: .34 !important;
}

.ecx-cta-banner__bg::after {
  width: 17% !important;
  opacity: .38 !important;
}

.ecx-cta-banner__tech--left {
  left: 18px !important;
  top: 20px !important;
  width: 250px !important;
  height: 96px !important;
  opacity: .42 !important;
}

.ecx-cta-banner__tech--right {
  right: 12px !important;
  top: 18px !important;
  width: 110px !important;
  height: 110px !important;
  opacity: .34 !important;
}

.ecx-cta-banner__robot,
.ecx-cta-banner__human,
.ecx-cta-banner__cube {
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.ecx-cta-banner__robot {
  left: 12px !important;
  width: 280px !important;
  height: 118px !important;
  background: url('../assets/cta/robot-hand.svg') left center / contain no-repeat !important;
}

.ecx-cta-banner__robot::before,
.ecx-cta-banner__robot::after,
.ecx-cta-banner__human::before,
.ecx-cta-banner__human::after,
.ecx-cta-banner__cube::before,
.ecx-cta-banner__cube::after,
.ecx-cta-banner__cube-inner {
  display: none !important;
}

.ecx-cta-banner__robot-glow,
.ecx-cta-banner__human-glow {
  display: none !important;
}

.ecx-cta-banner__content h2 {
  font-size: clamp(26px, 2.35vw, 34px) !important;
  line-height: 1.01 !important;
  letter-spacing: -.055em !important;
}

.ecx-cta-banner__content p {
  max-width: 480px !important;
  margin-top: 10px !important;
  font-size: 14px !important;
  line-height: 1.34 !important;
}

.ecx-cta-banner__actions {
  justify-self: center !important;
}

.ecx-cta-banner__button {
  min-height: 42px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
  border-radius: 6px !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.05), 0 8px 16px rgba(255,122,18,.18) !important;
}

.ecx-cta-banner__human {
  right: 106px !important;
  width: 238px !important;
  height: 116px !important;
  background: url('../assets/cta/human-hand.svg') right center / contain no-repeat !important;
}

.ecx-cta-banner__cube {
  right: 20px !important;
  width: 94px !important;
  height: 94px !important;
  background: url('../assets/cta/cube.svg') center / contain no-repeat !important;
}

@media (max-width: 1180px) {
  .ecx-cta-banner {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    min-height: auto !important;
    padding: 22px 22px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .ecx-cta-banner::before,
  .ecx-cta-banner::after {
    display: none;
  }

  .ecx-cta-banner__robot {
    display: block !important;
    left: 8px !important;
    top: 24px !important;
    transform: none !important;
    width: 170px !important;
    height: 74px !important;
    opacity: .28;
  }

  .ecx-cta-banner__human,
  .ecx-cta-banner__cube {
    display: block !important;
    transform: none !important;
    opacity: .28;
  }

  .ecx-cta-banner__human {
    right: 20px !important;
    top: 16px !important;
    width: 150px !important;
    height: 72px !important;
  }

  .ecx-cta-banner__cube {
    right: 18px !important;
    top: auto !important;
    bottom: 14px !important;
    width: 60px !important;
    height: 60px !important;
  }

  .ecx-cta-banner__content,
  .ecx-cta-banner__actions {
    grid-column: auto;
    position: relative;
    z-index: 2;
  }

  .ecx-cta-banner__content {
    padding-top: 24px;
  }

  .ecx-cta-banner__content p {
    max-width: 540px !important;
  }

  .ecx-cta-banner__actions {
    justify-self: start !important;
  }
}

@media (max-width: 767px) {
  .ecx-cta-banner {
    margin-bottom: 40px !important;
    padding: 18px 16px 16px !important;
    gap: 12px !important;
  }

  .ecx-cta-banner__robot {
    width: 128px !important;
    height: 56px !important;
    left: 0 !important;
    top: 10px !important;
    opacity: .20;
  }

  .ecx-cta-banner__human {
    width: 122px !important;
    height: 60px !important;
    right: 4px !important;
    top: 10px !important;
    opacity: .22;
  }

  .ecx-cta-banner__cube {
    width: 48px !important;
    height: 48px !important;
    right: 8px !important;
    bottom: 10px !important;
    opacity: .24;
  }

  .ecx-cta-banner__content {
    padding-top: 18px !important;
  }

  .ecx-cta-banner__content h2 {
    font-size: 24px !important;
    line-height: 1.06 !important;
    max-width: 290px;
  }

  .ecx-cta-banner__content p {
    max-width: 310px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
  }

  .ecx-cta-banner__button {
    width: auto !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
  }
}
/* =========================================================
FIM - HOTFIX CTA FINAL V2 | FULL WIDTH + VISUAL MELHOR
========================================================= */


/* =========================================================
INÍCIO - HOTFIX CTA FINAL V3 | USANDO IMAGEM DE FUNDO DA CLIENTE
========================================================= */
.ecx-cta-banner {
  min-height: 140px !important;
  padding: 18px 36px !important;
  grid-template-columns: 1fr auto !important;
  gap: 24px !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.24) 35%, rgba(0,0,0,.18) 62%, rgba(0,0,0,.34) 100%),
    url('../assets/cta/cta-bg.png') center center / cover no-repeat !important;
}

.ecx-cta-banner::before,
.ecx-cta-banner::after,
.ecx-cta-banner__bg,
.ecx-cta-banner__robot,
.ecx-cta-banner__human,
.ecx-cta-banner__cube {
  display: none !important;
}

.ecx-cta-banner__content {
  grid-column: 1 / 2 !important;
  max-width: 540px;
}

.ecx-cta-banner__content h2 {
  font-size: clamp(27px, 2.15vw, 35px) !important;
  line-height: 1.02 !important;
  text-shadow: 0 3px 10px rgba(0,0,0,.35);
}

.ecx-cta-banner__content p {
  max-width: 510px !important;
  margin-top: 10px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  color: rgba(255,255,255,.94) !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.28);
}

.ecx-cta-banner__actions {
  grid-column: 2 / 3 !important;
  justify-self: center !important;
  align-self: center !important;
}

.ecx-cta-banner__button {
  min-height: 44px !important;
  padding: 0 22px !important;
  border-radius: 6px !important;
}

@media (max-width: 1180px) {
  .ecx-cta-banner {
    min-height: 180px !important;
    padding: 24px 22px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    background:
      linear-gradient(90deg, rgba(0,0,0,.56) 0%, rgba(0,0,0,.34) 42%, rgba(0,0,0,.32) 100%),
      url('../assets/cta/cta-bg.png') 58% center / cover no-repeat !important;
  }

  .ecx-cta-banner__content,
  .ecx-cta-banner__actions {
    grid-column: auto !important;
  }

  .ecx-cta-banner__content {
    max-width: 520px;
    padding-top: 0 !important;
  }

  .ecx-cta-banner__actions {
    justify-self: start !important;
  }
}

@media (max-width: 767px) {
  .ecx-cta-banner {
    min-height: 240px !important;
    padding: 18px 16px !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.40) 40%, rgba(0,0,0,.48) 100%),
      url('../assets/cta/cta-bg.png') 62% center / cover no-repeat !important;
  }

  .ecx-cta-banner__content {
    max-width: 290px;
  }

  .ecx-cta-banner__content h2 {
    font-size: 24px !important;
    line-height: 1.05 !important;
    max-width: 270px !important;
  }

  .ecx-cta-banner__content p {
    max-width: 250px !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
  }

  .ecx-cta-banner__button {
    width: auto !important;
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
}
/* =========================================================
FIM - HOTFIX CTA FINAL V3 | USANDO IMAGEM DE FUNDO DA CLIENTE
========================================================= */


/* =========================================================
INÍCIO - HOTFIX CTA FINAL V4 | FUNDO CORRETO E TEXTO CENTRAL
========================================================= */
.ecx-cta-banner {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  margin-top: 10px !important;
  margin-bottom: 56px !important;
  min-height: 152px !important;
  padding: 0 56px !important;
  display: grid !important;
  grid-template-columns: 300px minmax(540px, 1fr) 300px !important;
  align-items: center !important;
  gap: 24px !important;
  overflow: hidden !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background:
    linear-gradient(90deg, rgba(2,7,12,.22) 0%, rgba(2,7,12,.10) 20%, rgba(2,7,12,.16) 50%, rgba(2,7,12,.22) 100%),
    url('../assets/cta/cta-bg.png') center center / cover no-repeat !important;
}

.ecx-cta-banner::before,
.ecx-cta-banner::after,
.ecx-cta-banner__bg,
.ecx-cta-banner__robot,
.ecx-cta-banner__human,
.ecx-cta-banner__cube {
  display: none !important;
}

.ecx-cta-banner__content,
.ecx-cta-banner__actions {
  position: relative;
  z-index: 2;
}

.ecx-cta-banner__content {
  grid-column: 2 / 3 !important;
  justify-self: center !important;
  align-self: center !important;
  width: 100%;
  max-width: 620px !important;
  text-align: left !important;
}

.ecx-cta-banner__content h2 {
  margin: 0 !important;
  max-width: 620px !important;
  color: #fff !important;
  font-size: clamp(28px, 2.45vw, 42px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.055em !important;
  text-shadow: 0 4px 14px rgba(0,0,0,.42);
}

.ecx-cta-banner__content h2 span {
  color: var(--ecx-orange) !important;
}

.ecx-cta-banner__content p {
  max-width: 520px !important;
  margin: 10px 0 0 !important;
  color: rgba(255,255,255,.94) !important;
  font-size: 14px !important;
  line-height: 1.38 !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 8px rgba(0,0,0,.34);
}

.ecx-cta-banner__actions {
  grid-column: 3 / 4 !important;
  justify-self: center !important;
  align-self: center !important;
}

.ecx-cta-banner__button {
  min-height: 46px !important;
  padding: 0 24px !important;
  border-radius: 6px !important;
  box-shadow: 0 12px 20px rgba(255, 122, 18, .18) !important;
  font-size: 15px !important;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .ecx-cta-banner {
    min-height: 200px !important;
    padding: 22px 24px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    background:
      linear-gradient(180deg, rgba(2,7,12,.30) 0%, rgba(2,7,12,.18) 38%, rgba(2,7,12,.32) 100%),
      url('../assets/cta/cta-bg.png') center center / cover no-repeat !important;
  }

  .ecx-cta-banner__content,
  .ecx-cta-banner__actions {
    grid-column: auto !important;
    justify-self: start !important;
  }

  .ecx-cta-banner__content {
    max-width: 620px !important;
  }

  .ecx-cta-banner__content h2 {
    max-width: 520px !important;
  }
}

@media (max-width: 767px) {
  .ecx-cta-banner {
    min-height: 260px !important;
    padding: 18px 16px !important;
    gap: 12px !important;
    background:
      linear-gradient(180deg, rgba(2,7,12,.46) 0%, rgba(2,7,12,.26) 38%, rgba(2,7,12,.44) 100%),
      url('../assets/cta/cta-bg.png') 56% center / cover no-repeat !important;
  }

  .ecx-cta-banner__content {
    max-width: 290px !important;
  }

  .ecx-cta-banner__content h2 {
    max-width: 290px !important;
    font-size: 24px !important;
    line-height: 1.06 !important;
  }

  .ecx-cta-banner__content p {
    max-width: 250px !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
  }

  .ecx-cta-banner__button {
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 14px !important;
  }
}
/* =========================================================
FIM - HOTFIX CTA FINAL V4 | FUNDO CORRETO E TEXTO CENTRAL
========================================================= */


/* =========================================================
INÍCIO - FOOTER
========================================================= */
.ecx-footer {
  position: relative;
  z-index: 4;
  margin-top: -38px;
  padding: 15px 0 18px;
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 90, 0, .04), transparent 24%),
    linear-gradient(180deg, rgba(246, 248, 250, .96) 0%, rgba(242, 245, 248, .96) 100%);
  border-top: 1px solid rgba(8, 16, 24, .08);
}

.ecx-footer__inner {
  min-height: 46px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: clamp(26px, 5vw, 98px);
  align-items: center;
  justify-content: center;
}

.ecx-footer__brand,
.ecx-footer__contact {
  display: inline-flex;
  align-items: center;
  color: #1d242b;
  text-decoration: none;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
}

.ecx-footer__brand {
  gap: 9px;
  font-family: "Archivo", "Inter", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.035em;
}

.ecx-footer__brand-icon {
  display: inline-flex;
  color: var(--ecx-orange);
}

.ecx-footer__contact {
  gap: 12px;
  color: #333a42;
}

.ecx-footer__icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  color: #2f373f;
}

.ecx-footer__icon svg {
  width: 22px;
  height: 22px;
}

.ecx-footer__contact:hover,
.ecx-footer__brand:hover {
  color: var(--ecx-orange);
}
/* =========================================================
FIM - FOOTER
========================================================= */


/* =========================================================
INÍCIO - RESPONSIVO FOOTER
========================================================= */
@media (max-width: 1180px) {
  .ecx-footer {
    margin-top: -24px;
  }

  .ecx-footer__inner {
    grid-template-columns: repeat(2, auto);
    gap: 18px 40px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .ecx-footer {
    margin-top: -18px;
    padding: 20px 0 22px;
  }

  .ecx-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 14px;
    text-align: center;
  }

  .ecx-footer__brand {
    font-size: 18px;
  }

  .ecx-footer__contact {
    font-size: 14px;
  }
}
/* =========================================================
FIM - RESPONSIVO FOOTER
========================================================= */


/* =========================================================
INÍCIO - HOTFIX FOOTER V2 | ALINHADO À LARGURA DO CONTEÚDO
========================================================= */
.ecx-footer__inner {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.ecx-footer__brand,
.ecx-footer__contact {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .ecx-footer__inner {
    display: grid !important;
    width: 100% !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 24px !important;
    justify-content: unset !important;
    justify-items: start !important;
  }

  .ecx-footer__contact:last-child {
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .ecx-footer__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .ecx-footer__contact:last-child {
    justify-self: center;
  }
}
/* =========================================================
FIM - HOTFIX FOOTER V2 | ALINHADO À LARGURA DO CONTEÚDO
========================================================= */


/* =========================================================
INÍCIO - HOTFIX FOOTER V3 | RODAPÉ NA MESMA LARGURA DAS SESSÕES
========================================================= */
.ecx-footer {
  width: min(var(--ecx-container), calc(100% - var(--ecx-side) * 2)) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: -38px !important;
  margin-bottom: 0 !important;
  padding: 15px 0 18px !important;
  background: transparent !important;
  border-top: 0 !important;
}

.ecx-footer__inner {
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

@media (max-width: 1180px) {
  .ecx-footer {
    margin-top: -24px !important;
  }

  .ecx-footer__inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px 24px !important;
    justify-items: start !important;
  }

  .ecx-footer__contact:last-child {
    justify-self: end;
  }
}

@media (max-width: 767px) {
  .ecx-footer {
    width: min(var(--ecx-container), calc(100% - 24px * 2)) !important;
    margin-top: -18px !important;
    padding: 20px 0 22px !important;
  }

  .ecx-footer__inner {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    gap: 14px !important;
  }

  .ecx-footer__contact:last-child {
    justify-self: center !important;
  }
}
/* =========================================================
FIM - HOTFIX FOOTER V3 | RODAPÉ NA MESMA LARGURA DAS SESSÕES
========================================================= */


/* =========================================================
INÍCIO - HOTFIX MOBILE GERAL V1 | REVISÃO COMPLETA MOBILE
========================================================= */
@media (max-width: 767px) {
  html, body {
    overflow-x: hidden;
  }

  .ecx-page {
    --ecx-side: 18px !important;
  }

  .ecx-container {
    width: calc(100% - 36px) !important;
  }

  .ecx-main {
    overflow: hidden;
  }

  .ecx-header {
    padding: 12px 0 8px !important;
  }

  .ecx-header__inner {
    grid-template-columns: 1fr auto !important;
    gap: 10px !important;
  }

  .ecx-brand {
    gap: 8px !important;
  }

  .ecx-brand__text {
    font-size: 18px !important;
    letter-spacing: -.03em !important;
  }

  .ecx-brand__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .ecx-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .ecx-nav {
    top: 60px !important;
    left: 18px !important;
    right: 18px !important;
    padding: 14px !important;
    border-radius: 14px !important;
  }

  .ecx-hero {
    overflow: hidden;
  }

  .ecx-hero__inner {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding-top: 22px !important;
  }

  .ecx-hero__copy {
    max-width: none !important;
  }

  .ecx-eyebrow {
    margin-bottom: 12px !important;
    font-size: 10px !important;
  }

  .ecx-hero h1 {
    font-size: clamp(27px, 10.8vw, 41px) !important;
    line-height: .98 !important;
    letter-spacing: -.05em !important;
  }

  .ecx-hero__text {
    margin-top: 16px !important;
    font-size: 13.5px !important;
    line-height: 1.58 !important;
    max-width: 92% !important;
  }

  .ecx-hero__actions {
    margin-top: 20px !important;
    gap: 10px !important;
  }

  .ecx-btn {
    min-height: 46px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
    border-radius: 10px !important;
  }

  .ecx-hero__visual {
    height: 380px !important;
    margin-top: 6px !important;
    overflow: hidden !important;
  }

  .ecx-hero__visual::before {
    inset: 30px -10px 16px 20px !important;
    opacity: .7 !important;
  }

  .ecx-tech-grid {
    inset: 12px -30px 0 -10px !important;
    opacity: .72 !important;
    background-size: 44px 44px, 44px 44px, 100% 100%, 100% 100% !important;
  }

  .ecx-tech-grid::before {
    top: 58px !important;
    width: 220px !important;
    height: 220px !important;
  }

  .ecx-hud--large {
    top: 60px !important;
    width: 228px !important;
    height: 228px !important;
    opacity: .18 !important;
  }

  .ecx-light-line--one {
    top: 182px !important;
    left: 0 !important;
    right: -8px !important;
  }

  .ecx-light-line--two {
    top: 290px !important;
    left: 58px !important;
    right: -10px !important;
    opacity: .18 !important;
  }

  .ecx-person {
    right: 50% !important;
    bottom: 0 !important;
    width: min(210px, 60vw) !important;
    max-height: 340px !important;
    transform: translateX(50%) !important;
  }

  .ecx-glass-card {
    backdrop-filter: blur(12px) !important;
    border-radius: 10px !important;
    box-shadow: 0 0 18px rgba(115, 202, 255, .18), inset 0 0 10px rgba(255,255,255,.06) !important;
  }

  .ecx-glass-card__label {
    font-size: 9px !important;
    line-height: 1.25 !important;
  }

  .ecx-glass-card--performance {
    top: 24px !important;
    left: 0 !important;
    width: 106px !important;
    min-height: 122px !important;
    padding: 12px 10px !important;
  }

  .ecx-glass-card--performance .ecx-glass-card__label {
    padding-bottom: 10px !important;
  }

  .ecx-glass-card--performance strong {
    margin: 10px 0 6px !important;
    font-size: 28px !important;
  }

  .ecx-glass-card__sub {
    font-size: 9px !important;
  }

  .ecx-glass-card--decision {
    top: 86px !important;
    right: 0 !important;
    width: 102px !important;
    min-height: 118px !important;
    padding: 12px 10px !important;
  }

  .ecx-bars {
    height: 44px !important;
    gap: 4px !important;
    margin-top: 10px !important;
  }

  .ecx-glass-card--result {
    left: 50% !important;
    right: auto !important;
    bottom: 20px !important;
    transform: translateX(-50%) !important;
    width: min(170px, 52vw) !important;
    min-height: 100px !important;
    padding: 10px 10px 6px !important;
  }

  .ecx-line-chart {
    height: 46px !important;
    margin-top: 6px !important;
  }

  .ecx-market {
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    padding: 18px 16px 18px !important;
    gap: 18px !important;
    border-radius: 14px !important;
  }

  .ecx-market h2 {
    font-size: 24px !important;
    line-height: 1.04 !important;
  }

  .ecx-market__items {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
  }

  .ecx-market__item {
    min-height: 112px !important;
    padding: 14px 8px !important;
  }

  .ecx-market__item p {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .ecx-market__item:last-child {
    grid-column: 1 / -1;
  }

  .ecx-pains {
    padding: 16px 14px 16px !important;
    margin-bottom: 28px !important;
    border-radius: 14px !important;
  }

  .ecx-pains__header h2,
  .ecx-what__copy h2,
  .ecx-method__header h2,
  .ecx-results__header h2,
  .ecx-content__intro h2 {
    font-size: 23px !important;
    line-height: 1.08 !important;
    letter-spacing: -.04em !important;
  }

  .ecx-pains__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 16px !important;
  }

  .ecx-pains__card {
    min-height: 126px !important;
    padding: 16px 10px 14px !important;
  }

  .ecx-pains__icon {
    width: 38px !important;
    height: 38px !important;
    margin-bottom: 10px !important;
  }

  .ecx-pains__card p {
    font-size: 11px !important;
    line-height: 1.35 !important;
  }

  .ecx-what {
    margin-bottom: 26px !important;
  }

  .ecx-what__content {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ecx-what__copy h2 {
    font-size: 23px !important;
  }

  .ecx-what__text {
    font-size: 13px !important;
    line-height: 1.58 !important;
  }

  .ecx-what__visual img {
    border-radius: 12px !important;
  }

  .ecx-pillars {
    margin-bottom: 28px !important;
  }

  .ecx-pillars__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .ecx-pillar-card {
    min-height: 112px !important;
    padding: 14px 16px !important;
    grid-template-columns: 38px 1fr 20px !important;
    gap: 12px !important;
  }

  .ecx-pillar-card__icon {
    width: 36px !important;
    height: 36px !important;
  }

  .ecx-pillar-card__content h3 {
    font-size: 14px !important;
    line-height: 1.25 !important;
  }

  .ecx-pillar-card__content p {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .ecx-method {
    margin-bottom: 26px !important;
  }

  .ecx-method__timeline {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding-top: 0 !important;
  }

  .ecx-method__line,
  .ecx-method__line-dot,
  .ecx-method__timeline::after,
  .ecx-step::after,
  .ecx-step:last-child::after {
    display: none !important;
  }

  .ecx-step {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 50px 1fr !important;
    column-gap: 12px !important;
    align-items: start !important;
    padding: 12px 12px 12px 10px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.58) !important;
    box-shadow: inset 0 0 0 1px rgba(10, 24, 38, .05) !important;
  }

  .ecx-step__top {
    grid-row: 1 / span 3 !important;
    height: auto !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
  }

  .ecx-step__icon {
    width: 42px !important;
    height: 42px !important;
  }

  .ecx-step__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .ecx-step__number {
    align-self: end !important;
    margin: 0 0 2px !important;
    font-size: 11px !important;
  }

  .ecx-step h3 {
    margin: 0 0 6px !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
  }

  .ecx-step p {
    margin: 0 !important;
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .ecx-results {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding: 14px !important;
    margin-bottom: 28px !important;
  }

  .ecx-results__header {
    padding: 4px !important;
  }

  .ecx-results__panel {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ecx-results__item {
    min-height: 88px !important;
    padding: 12px 8px !important;
    justify-content: center !important;
  }

  .ecx-results__item:last-child {
    grid-column: 1 / -1 !important;
  }

  .ecx-results__item h3 {
    font-size: 21px !important;
    line-height: .95 !important;
  }

  .ecx-results__item p {
    margin-top: 6px !important;
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .ecx-about {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-bottom: 30px !important;
  }

  .ecx-about__photo-wrap {
    max-width: 160px !important;
    margin: 0 auto !important;
  }

  .ecx-about__content {
    max-width: none !important;
  }

  .ecx-about__eyebrow {
    text-align: left !important;
  }

  .ecx-about__lead,
  .ecx-about__text {
    font-size: 13px !important;
    line-height: 1.56 !important;
    margin-top: 0 !important;
  }

  .ecx-about__btn {
    min-height: 42px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }

  .ecx-about__logos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0 !important;
    align-items: center !important;
  }

  .ecx-about__logo-item {
    min-height: 66px !important;
    padding: 0 8px !important;
  }

  .ecx-about__logo-item + .ecx-about__logo-item::before {
    top: 10px !important;
    bottom: 10px !important;
    left: 0 !important;
    width: 1px !important;
    height: auto !important;
  }

  .ecx-about__logo-item--coke img { max-width: 84px !important; }
  .ecx-about__logo-item--danone img { max-width: 82px !important; }
  .ecx-about__logo-item--boticario img { max-width: 72px !important; }

  .ecx-content {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    margin-bottom: 28px !important;
  }

  .ecx-content__intro {
    max-width: 220px !important;
  }

  .ecx-content__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .ecx-article-card {
    min-height: 236px !important;
  }

  .ecx-article-card__thumb {
    height: 96px !important;
  }

  .ecx-article-card__body {
    padding: 12px 12px 14px !important;
  }

  .ecx-article-card__tag {
    font-size: 9px !important;
    min-height: 24px !important;
  }

  .ecx-article-card__body h3 {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .ecx-article-card__body a {
    font-size: 13px !important;
  }

  .ecx-cta-banner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    min-height: 0 !important;
    padding: 22px 16px 18px !important;
    margin-bottom: 26px !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,.28)),
      url('../assets/cta/cta-bg.png') center/cover no-repeat !important;
    border-radius: 0 !important;
  }

  .ecx-cta-banner__bg,
  .ecx-cta-banner__robot,
  .ecx-cta-banner__human,
  .ecx-cta-banner__cube {
    display: none !important;
  }

  .ecx-cta-banner__content,
  .ecx-cta-banner__actions {
    position: relative !important;
    z-index: 2 !important;
  }

  .ecx-cta-banner__content {
    max-width: 250px !important;
  }

  .ecx-cta-banner__content h2 {
    font-size: 20px !important;
    line-height: 1.02 !important;
    letter-spacing: -.04em !important;
  }

  .ecx-cta-banner__content p {
    margin-top: 10px !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    max-width: 180px !important;
  }

  .ecx-cta-banner__button {
    min-height: 40px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
  }

  .ecx-footer {
    width: calc(100% - 36px) !important;
    margin-top: -12px !important;
    padding: 12px 0 18px !important;
  }

  .ecx-footer__inner {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    gap: 10px !important;
    min-height: 0 !important;
  }

  .ecx-footer__brand,
  .ecx-footer__contact {
    font-size: 11px !important;
    line-height: 1.3 !important;
  }

  .ecx-footer__icon {
    width: 16px !important;
    height: 16px !important;
  }

  .ecx-whatsapp {
    right: 12px !important;
    bottom: 12px !important;
    width: 46px !important;
    height: 46px !important;
  }

  .ecx-whatsapp svg {
    width: 28px !important;
    height: 28px !important;
  }
}

@media (max-width: 420px) {
  .ecx-pains__grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .ecx-results__panel {
    grid-template-columns: 1fr 1fr !important;
  }

  .ecx-about__logos {
    grid-template-columns: 1fr !important;
  }

  .ecx-about__logo-item + .ecx-about__logo-item::before {
    top: 0 !important;
    bottom: auto !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    height: 1px !important;
  }
}
/* =========================================================
FIM - HOTFIX MOBILE GERAL V1 | REVISÃO COMPLETA MOBILE
========================================================= */


/* =========================================================
INÍCIO - HOTFIX MENU MOBILE V2 | MENU MAIS OPACO E LIMPO
========================================================= */
@media (max-width: 767px) {
  .ecx-header {
    position: sticky;
    top: 0;
    z-index: 140;
    background: rgba(246, 248, 250, .98);
    backdrop-filter: blur(12px);
  }

  .ecx-nav {
    z-index: 160 !important;
    background: #ffffff !important;
    border: 1px solid rgba(12, 24, 38, .08) !important;
    box-shadow: 0 18px 40px rgba(8, 18, 28, .16) !important;
    backdrop-filter: none !important;
    opacity: 1 !important;
  }

  .ecx-nav.is-open {
    display: grid !important;
  }

  .ecx-nav a {
    padding: 10px 0 !important;
    font-size: 13px !important;
  }

  .ecx-nav a::after {
    bottom: 2px !important;
    height: 2px !important;
  }

  .ecx-menu-toggle {
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(8, 18, 28, .08);
  }
}
/* =========================================================
FIM - HOTFIX MENU MOBILE V2 | MENU MAIS OPACO E LIMPO
========================================================= */


/* =========================================================
INÍCIO - HOTFIX CTA MOBILE V5 | FAIXA FULL WIDTH ANTES DO FOOTER
========================================================= */
@media (max-width: 767px) {
  .ecx-cta-banner {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 22px 18px 18px !important;
    background:
      linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.30)),
      url('../assets/cta/cta-bg.png') center center / cover no-repeat !important;
  }

  .ecx-cta-banner__content {
    width: min(100%, calc(var(--ecx-container) - 36px)) !important;
    max-width: 290px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .ecx-cta-banner__actions {
    width: min(100%, calc(var(--ecx-container) - 36px)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* =========================================================
FIM - HOTFIX CTA MOBILE V5 | FAIXA FULL WIDTH ANTES DO FOOTER
========================================================= */


/* =========================================================
INÍCIO - HOTFIX LOGO V4 | USAR ARQUIVO DE IMAGEM
========================================================= */
.ecx-brand__logo,
.ecx-footer__logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.ecx-brand__logo {
  height: 34px;
  max-width: 190px;
}

.ecx-footer__logo {
  height: 30px;
  max-width: 165px;
}

@media (max-width: 767px) {
  .ecx-brand__logo {
    height: 24px !important;
    max-width: 138px !important;
  }

  .ecx-footer__logo {
    height: 24px !important;
    max-width: 138px !important;
  }
}
/* =========================================================
FIM - HOTFIX LOGO V4 | USAR ARQUIVO DE IMAGEM
========================================================= */


/* =========================================================
INÍCIO - AJUSTES CLIENTE V1 | HERO SEM FOTO + TEXTOS +2PX
========================================================= */
/* Aumentos leves de leitura — títulos principais preservados */
.ecx-nav a { font-size: 15px !important; }
.ecx-header__cta { font-size: 16px !important; }
.ecx-eyebrow,
.ecx-market__eyebrow,
.ecx-pains__eyebrow,
.ecx-what__eyebrow,
.ecx-pillars__eyebrow,
.ecx-method__eyebrow,
.ecx-results__eyebrow,
.ecx-about__eyebrow,
.ecx-content__eyebrow {
  font-size: 15px !important;
  letter-spacing: .065em !important;
}

.ecx-hero__text,
.ecx-what__text,
.ecx-about__lead,
.ecx-about__text {
  font-size: 17px !important;
}

.ecx-btn,
.ecx-about__btn,
.ecx-cta-banner__button,
.ecx-footer__contact {
  font-size: 16px !important;
}

.ecx-market__item p,
.ecx-pains__card p,
.ecx-pillar-card__content p,
.ecx-step p,
.ecx-results__item p,
.ecx-article-card__body h3,
.ecx-article-card__body a {
  font-size: calc(1em + 2px) !important;
}

.ecx-pillar-card__content h3,
.ecx-step h3,
.ecx-article-card__tag {
  font-size: calc(1em + 2px) !important;
}

/* Header/logo um pouco maior */
.ecx-brand__logo {
  height: 42px !important;
  max-width: 230px !important;
}

/* Hero: remove pessoa e cria grid limpo dos cards */
.ecx-hero__inner {
  grid-template-columns: minmax(0, 48%) minmax(480px, 52%) !important;
  min-height: 650px !important;
  align-items: center !important;
}

.ecx-hero__copy {
  max-width: 660px !important;
}

.ecx-hero__visual {
  position: relative !important;
  top: auto !important;
  height: auto !important;
  min-height: 500px !important;
  width: min(100%, 620px) !important;
  justify-self: end !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  grid-template-rows: 220px 190px !important;
  gap: 22px !important;
  align-content: center !important;
  align-items: stretch !important;
  padding: 42px 22px 42px 34px !important;
}

.ecx-hero__visual::before {
  content: "" !important;
  position: absolute !important;
  inset: 10px -18px 10px 0 !important;
  z-index: 0 !important;
  border-radius: 24px !important;
  pointer-events: none !important;
  opacity: .92 !important;
  background:
    radial-gradient(circle at 36% 42%, rgba(103, 194, 255, .34) 0, rgba(103, 194, 255, .13) 22%, transparent 46%),
    linear-gradient(rgba(76, 169, 233, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 169, 233, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0), rgba(142, 211, 255, .10) 45%, rgba(255,255,255,0));
  background-size: 100% 100%, 54px 54px, 54px 54px, 100% 100%;
  mask-image: radial-gradient(circle at 48% 48%, #000 0 62%, transparent 82%);
}

.ecx-hero__visual::after {
  display: none !important;
}

.ecx-tech-grid,
.ecx-hud,
.ecx-light-line,
.ecx-person {
  display: none !important;
}

.ecx-glass-card {
  position: relative !important;
  z-index: 2 !important;
  inset: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  border-radius: 16px !important;
  border: 1px solid rgba(190, 232, 255, .62) !important;
  background:
    linear-gradient(145deg, rgba(16, 33, 48, .92), rgba(69, 97, 116, .74)),
    rgba(8, 18, 28, .90) !important;
  box-shadow: 0 0 22px rgba(104, 194, 250, .15), inset 0 0 18px rgba(255,255,255,.06) !important;
  backdrop-filter: blur(14px) !important;
  animation: none !important;
}

.ecx-glass-card__label {
  font-size: 15px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}

.ecx-glass-card__sub {
  font-size: 15px !important;
  font-weight: 800 !important;
}

.ecx-glass-card--performance {
  grid-column: 1 !important;
  grid-row: 1 !important;
  padding: 28px 26px 24px !important;
  justify-content: center !important;
}

.ecx-glass-card--decision {
  grid-column: 2 !important;
  grid-row: 1 !important;
  padding: 28px 26px 24px !important;
  justify-content: center !important;
}

.ecx-glass-card--result {
  grid-column: 1 / 3 !important;
  grid-row: 2 !important;
  padding: 28px 30px 20px !important;
  justify-content: center !important;
}

.ecx-glass-card--performance .ecx-glass-card__label {
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(221, 243, 255, .30) !important;
}

.ecx-glass-card--performance strong {
  width: 100% !important;
  margin: 24px 0 12px !important;
  text-align: center !important;
  font-size: clamp(52px, 4vw, 68px) !important;
  line-height: .9 !important;
}

.ecx-bars {
  height: 78px !important;
  margin-top: 26px !important;
  gap: 8px !important;
}

.ecx-line-chart {
  height: 86px !important;
  margin-top: 14px !important;
}

@media (max-width: 1180px) {
  .ecx-hero__inner {
    grid-template-columns: 1fr !important;
  }

  .ecx-hero__visual {
    width: min(100%, 640px) !important;
    justify-self: center !important;
    min-height: auto !important;
  }
}

@media (max-width: 767px) {
  .ecx-brand__logo {
    height: 30px !important;
    max-width: 170px !important;
  }

  .ecx-nav a { font-size: 14px !important; }
  .ecx-eyebrow,
  .ecx-market__eyebrow,
  .ecx-pains__eyebrow,
  .ecx-what__eyebrow,
  .ecx-pillars__eyebrow,
  .ecx-method__eyebrow,
  .ecx-results__eyebrow,
  .ecx-about__eyebrow,
  .ecx-content__eyebrow {
    font-size: 12px !important;
  }

  .ecx-hero__text,
  .ecx-what__text,
  .ecx-about__lead,
  .ecx-about__text {
    font-size: 15px !important;
  }

  .ecx-btn,
  .ecx-about__btn,
  .ecx-cta-banner__button,
  .ecx-footer__contact {
    font-size: 14px !important;
  }

  .ecx-hero__visual {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 12px !important;
    padding: 18px 0 8px !important;
    margin-top: 16px !important;
  }

  .ecx-hero__visual::before {
    inset: 0 -12px !important;
    opacity: .55 !important;
  }

  .ecx-glass-card--performance,
  .ecx-glass-card--decision,
  .ecx-glass-card--result {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    padding: 18px 16px !important;
  }

  .ecx-glass-card__label,
  .ecx-glass-card__sub {
    font-size: 12px !important;
  }

  .ecx-glass-card--performance strong {
    font-size: 42px !important;
    margin: 14px 0 8px !important;
  }

  .ecx-bars {
    height: 54px !important;
    margin-top: 14px !important;
  }

  .ecx-line-chart {
    height: 58px !important;
  }
}
/* =========================================================
FIM - AJUSTES CLIENTE V1 | HERO SEM FOTO + TEXTOS +2PX
========================================================= */


/* =========================================================
INÍCIO - AJUSTES CLIENTE V2 | MENU + HERO TECH BG
========================================================= */
.ecx-nav a {
  font-size: 17px !important;
}

.ecx-hero__visual {
  position: relative !important;
  overflow: hidden !important;
  background:
    linear-gradient(180deg, rgba(244, 249, 252, .25), rgba(228, 241, 250, .22)),
    radial-gradient(circle at 62% 28%, rgba(130, 205, 255, .20), transparent 32%),
    radial-gradient(circle at 72% 68%, rgba(111, 182, 230, .16), transparent 34%) !important;
}

.ecx-hero__visual::before {
  content: "";
  position: absolute;
  inset: 18px 16px 14px 16px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 58% 30%, rgba(144, 216, 255, .16), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0) 54%);
  opacity: 1 !important;
  pointer-events: none;
}

.ecx-hero__visual::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 54px;
  width: 200px;
  height: 260px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(163, 218, 255, .11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(163, 218, 255, .11) 1px, transparent 1px),
    linear-gradient(180deg, rgba(160, 214, 255, .10), rgba(160, 214, 255, .02));
  background-size: 20px 20px, 20px 20px, 100% 100%;
  opacity: .40;
  pointer-events: none;
}

.ecx-tech-grid {
  position: absolute !important;
  inset: 0 !important;
  opacity: 1 !important;
  background:
    linear-gradient(rgba(124, 181, 219, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 181, 219, .18) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
  background-size: 44px 44px, 44px 44px, 100% 100%;
  background-position: center;
}

.ecx-tech-grid::before {
  content: "";
  position: absolute;
  left: 82px;
  top: 88px;
  width: 246px;
  height: 246px;
  border-radius: 50%;
  border: 1px solid rgba(138, 211, 255, .24);
  box-shadow:
    0 0 0 18px rgba(138, 211, 255, .08),
    0 0 0 42px rgba(138, 211, 255, .05),
    0 0 0 68px rgba(138, 211, 255, .03);
  opacity: .95;
}

.ecx-tech-grid::after {
  content: "";
  position: absolute;
  left: 148px;
  top: 154px;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 200, 255, .30) 0, rgba(111, 200, 255, .12) 28%, rgba(111, 200, 255, 0) 68%);
  box-shadow: 0 0 28px rgba(111, 200, 255, .24);
}

.ecx-hud--large,
.ecx-hud--small,
.ecx-light-line {
  opacity: 1 !important;
}

.ecx-hud--large {
  top: 96px !important;
  left: 120px !important;
  width: 172px !important;
  height: 172px !important;
  border-color: rgba(141, 216, 255, .26) !important;
}

.ecx-hud--small {
  right: 92px !important;
  bottom: 92px !important;
  width: 120px !important;
  height: 120px !important;
  border-color: rgba(141, 216, 255, .18) !important;
  opacity: .38 !important;
}

.ecx-light-line--one {
  top: 184px !important;
  left: 110px !important;
  right: 98px !important;
  opacity: .22 !important;
}

.ecx-light-line--two {
  top: 378px !important;
  left: 164px !important;
  right: 82px !important;
  opacity: .16 !important;
}

@media (max-width: 991px) {
  .ecx-nav a {
    font-size: 16px !important;
  }

  .ecx-tech-grid::before {
    left: 42px;
    top: 76px;
    width: 200px;
    height: 200px;
  }

  .ecx-tech-grid::after {
    left: 92px;
    top: 126px;
    width: 94px;
    height: 94px;
  }

  .ecx-hud--large {
    left: 72px !important;
    top: 84px !important;
    width: 146px !important;
    height: 146px !important;
  }

  .ecx-hud--small {
    right: 42px !important;
    bottom: 70px !important;
    width: 96px !important;
    height: 96px !important;
  }
}

@media (max-width: 767px) {
  .ecx-nav a {
    font-size: 16px !important;
  }

  .ecx-hero__visual {
    background:
      linear-gradient(180deg, rgba(244, 249, 252, .16), rgba(228, 241, 250, .16)),
      radial-gradient(circle at 56% 22%, rgba(130, 205, 255, .20), transparent 28%),
      radial-gradient(circle at 70% 78%, rgba(111, 182, 230, .14), transparent 28%) !important;
  }

  .ecx-hero__visual::before {
    inset: 0 !important;
    border-radius: 16px !important;
  }

  .ecx-hero__visual::after {
    right: 12px;
    top: 10px;
    width: 110px;
    height: 150px;
    opacity: .22;
  }

  .ecx-tech-grid {
    background-size: 26px 26px, 26px 26px, 100% 100% !important;
  }

  .ecx-tech-grid::before {
    left: 50%;
    top: 16px;
    width: 140px;
    height: 140px;
    transform: translateX(-50%);
    box-shadow:
      0 0 0 12px rgba(138, 211, 255, .08),
      0 0 0 26px rgba(138, 211, 255, .05),
      0 0 0 40px rgba(138, 211, 255, .03);
  }

  .ecx-tech-grid::after {
    left: 50%;
    top: 52px;
    width: 72px;
    height: 72px;
    transform: translateX(-50%);
  }

  .ecx-hud--large,
  .ecx-hud--small,
  .ecx-light-line {
    display: none !important;
  }
}
/* =========================================================
FIM - AJUSTES CLIENTE V2 | MENU + HERO TECH BG
========================================================= */


/* =========================================================
INÍCIO - AJUSTES CLIENTE V4 | HERO COM IMAGENS DE FUNDO
========================================================= */
.ecx-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248,250,252,.02), rgba(248,250,252,.02)),
    url('../assets/hero/desktop-hero.png') center top / cover no-repeat !important;
}

.ecx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(248,250,252,.06) 0%, rgba(248,250,252,.03) 44%, rgba(248,250,252,0) 100%);
  z-index: 0;
}

.ecx-hero__inner {
  position: relative;
  z-index: 2;
}

.ecx-hero__visual {
  background: transparent !important;
  overflow: visible !important;
}

.ecx-hero__visual::before,
.ecx-hero__visual::after,
.ecx-tech-grid,
.ecx-tech-grid::before,
.ecx-tech-grid::after,
.ecx-hud,
.ecx-hud--large,
.ecx-hud--small,
.ecx-light-line {
  display: none !important;
}

.ecx-glass-card {
  background:
    linear-gradient(145deg, rgba(9, 25, 38, .94), rgba(49, 78, 96, .88)) !important;
  border-color: rgba(174, 224, 250, .42) !important;
  box-shadow: 0 16px 32px rgba(6, 20, 32, .18), inset 0 0 18px rgba(255,255,255,.05) !important;
}

@media (max-width: 767px) {
  .ecx-hero {
    background:
      linear-gradient(180deg, rgba(248,250,252,.04), rgba(248,250,252,.02)),
      url('../assets/hero/mobile-hero.png') center top / cover no-repeat !important;
  }

  .ecx-hero::before {
    background: linear-gradient(180deg, rgba(248,250,252,.08) 0%, rgba(248,250,252,.03) 48%, rgba(248,250,252,0) 100%);
  }
}
/* =========================================================
FIM - AJUSTES CLIENTE V4 | HERO COM IMAGENS DE FUNDO
========================================================= */


/* =========================================================
INÍCIO - AJUSTES CLIENTE V5 | TRANSIÇÕES SUAVES HEADER / HERO / SEÇÕES
========================================================= */

/* Suaviza a passagem do topo/header para o fundo do hero */
.ecx-header {
  background:
    linear-gradient(180deg,
      rgba(247, 250, 252, .98) 0%,
      rgba(247, 250, 252, .94) 58%,
      rgba(247, 250, 252, .72) 82%,
      rgba(247, 250, 252, 0) 100%) !important;
  padding-bottom: 28px !important;
  margin-bottom: -24px !important;
  box-shadow: none !important;
}

/* O hero passa a entrar levemente por baixo do header, sem linha reta seca */
.ecx-hero {
  margin-top: -10px !important;
  padding-top: 20px !important;
  padding-bottom: 68px !important;
}

/* Overlay superior e inferior para o hero não "cortar" seco */
.ecx-hero::before {
  background:
    linear-gradient(180deg,
      rgba(247, 250, 252, .72) 0%,
      rgba(247, 250, 252, .18) 18%,
      rgba(247, 250, 252, 0) 38%),
    linear-gradient(90deg,
      rgba(248,250,252,.08) 0%,
      rgba(248,250,252,.03) 44%,
      rgba(248,250,252,0) 100%) !important;
}

.ecx-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 190px;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(244, 249, 252, 0) 0%,
      rgba(244, 249, 252, .46) 46%,
      rgba(244, 249, 252, .96) 100%);
}

/* Garante que texto e cards fiquem acima dos overlays */
.ecx-hero__inner {
  position: relative !important;
  z-index: 3 !important;
}

/* A sessão escura sobe um pouco para "entrar" no hero, evitando corte seco */
.ecx-market {
  margin-top: -92px !important;
  position: relative !important;
  z-index: 12 !important;
  box-shadow:
    0 30px 70px rgba(1, 8, 16, .22),
    0 -22px 44px rgba(244, 249, 252, .70) !important;
}

/* Respiro entre mercado e dores para manter continuidade suave */
.ecx-pains {
  margin-top: 10px !important;
}

@media (max-width: 1180px) {
  .ecx-header {
    padding-bottom: 22px !important;
    margin-bottom: -18px !important;
  }

  .ecx-hero {
    padding-top: 16px !important;
    padding-bottom: 58px !important;
  }

  .ecx-market {
    margin-top: -72px !important;
  }
}

@media (max-width: 767px) {
  .ecx-header {
    background: rgba(247, 250, 252, .97) !important;
    padding-bottom: 8px !important;
    margin-bottom: 0 !important;
  }

  .ecx-hero {
    margin-top: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 36px !important;
  }

  .ecx-hero::before {
    background:
      linear-gradient(180deg,
        rgba(247, 250, 252, .52) 0%,
        rgba(247, 250, 252, 0) 34%) !important;
  }

  .ecx-hero::after {
    height: 110px;
    background:
      linear-gradient(180deg,
        rgba(244, 249, 252, 0) 0%,
        rgba(244, 249, 252, .72) 58%,
        rgba(244, 249, 252, .98) 100%);
  }

  .ecx-market {
    margin-top: -44px !important;
    box-shadow:
      0 22px 42px rgba(1, 8, 16, .20),
      0 -16px 30px rgba(244, 249, 252, .68) !important;
  }

  .ecx-pains {
    margin-top: 0 !important;
  }
}
/* =========================================================
FIM - AJUSTES CLIENTE V5 | TRANSIÇÕES SUAVES HEADER / HERO / SEÇÕES
========================================================= */


/* =========================================================
INÍCIO - HOTFIX HERO MOBILE | CARD RESULTADO SUSTENTÁVEL
========================================================= */
@media (max-width: 767px) {
  .ecx-hero__visual {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 18px 18px 20px !important;
    overflow: visible !important;
  }

  .ecx-glass-card--performance,
  .ecx-glass-card--decision,
  .ecx-glass-card--result {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    min-height: auto !important;
    grid-column: 1 / -1 !important;
  }

  .ecx-glass-card--result {
    padding: 16px 16px 12px !important;
  }

  .ecx-line-chart {
    width: 100% !important;
    height: 72px !important;
    margin-top: 10px !important;
  }
}
/* =========================================================
FIM - HOTFIX HERO MOBILE | CARD RESULTADO SUSTENTÁVEL
========================================================= */


/* =========================================================
INÍCIO - AJUSTE MENU CLIENTES
========================================================= */
.ecx-nav {
  gap: clamp(16px, 1.55vw, 30px) !important;
}

.ecx-nav a {
  white-space: nowrap;
}
/* =========================================================
FIM - AJUSTE MENU CLIENTES
========================================================= */


/* =========================================================
INÍCIO - SEÇÃO CLIENTES
========================================================= */
.ecx-clients {
  position: relative;
  z-index: 4;
  margin-top: 6px;
  margin-bottom: 48px;
}

.ecx-clients__panel {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 28px;
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,102,0,.12), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(25,145,255,.16), transparent 26%),
    linear-gradient(90deg, #04090f 0%, #03101d 56%, #04101a 100%);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 44px rgba(6, 12, 20, .18);
}

.ecx-clients__panel::before {
  content: "";
  position: absolute;
  right: -24px;
  top: 16px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,159,255,.35) 1px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: .30;
  transform: rotate(14deg);
  pointer-events: none;
}

.ecx-clients__intro {
  position: relative;
  z-index: 1;
  padding: 8px 4px 8px 2px;
}

.ecx-clients__eyebrow {
  margin: 0 0 12px;
  color: var(--ecx-orange);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .07em;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-clients__intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 2.55vw, 44px);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 800;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-clients__intro p {
  max-width: 285px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
}

.ecx-clients__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ecx-client-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.ecx-client-card--dark {
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.ecx-client-card__logo {
  position: relative;
  z-index: 1;
  min-height: 220px;
  margin: 16px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(8, 18, 28, .05);
}

.ecx-client-card__logo--light {
  background: #f3f5f7;
}

.ecx-client-card__logo--blue {
  background: #0b4b90;
}

.ecx-client-card__logo img {
  display: block;
  width: auto;
  max-width: 88%;
  max-height: 82%;
  height: auto;
  object-fit: contain;
}

.ecx-client-card__content {
  position: relative;
  z-index: 1;
  padding: 18px 20px 22px;
}

.ecx-client-card__content h3 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -.04em;
  font-weight: 800;
  font-family: "Archivo", "Inter", Arial, sans-serif;
}

.ecx-client-card__content p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .ecx-clients__panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ecx-clients__intro p {
    max-width: 560px;
  }
}

@media (max-width: 767px) {
  .ecx-clients {
    width: calc(100% - 36px) !important;
    margin-top: 4px;
    margin-bottom: 32px;
  }

  .ecx-clients__panel {
    padding: 16px 14px;
    border-radius: 16px;
    gap: 14px;
  }

  .ecx-clients__eyebrow {
    font-size: 12px !important;
    margin-bottom: 8px;
  }

  .ecx-clients__intro h2 {
    font-size: 24px !important;
    line-height: 1.08;
  }

  .ecx-clients__intro p {
    max-width: none;
    margin-top: 10px;
    font-size: 13px !important;
    line-height: 1.5;
  }

  .ecx-clients__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ecx-client-card {
    border-radius: 14px;
  }

  .ecx-client-card__logo {
    min-height: 142px;
    margin: 12px 12px 0;
    border-radius: 12px;
  }

  .ecx-client-card__logo img {
    max-width: 84%;
    max-height: 78%;
  }

  .ecx-client-card__content {
    padding: 14px 14px 16px;
  }

  .ecx-client-card__content h3 {
    font-size: 18px;
  }

  .ecx-client-card__content p {
    font-size: 12px;
    line-height: 1.45;
  }
}
/* =========================================================
FIM - SEÇÃO CLIENTES
========================================================= */


/* =========================================================
INÍCIO - AJUSTES FINAIS CLIENTES + FOOTER SOCIAL
========================================================= */
.ecx-client-card__logo {
  min-height: 226px !important;
  height: 226px !important;
}

.ecx-client-card__logo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
}

.ecx-client-card__content h3 {
  font-size: 22px !important;
}

.ecx-footer__inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.ecx-footer__brand,
.ecx-footer__contact {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
  line-height: 1.2 !important;
  white-space: nowrap !important;
}

.ecx-footer__icon {
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
}

.ecx-footer__icon svg {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
}

@media (max-width: 1180px) {
  .ecx-footer__inner {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px 22px !important;
    justify-items: start !important;
  }

  .ecx-footer__contact:last-child {
    justify-self: start !important;
  }
}

@media (max-width: 767px) {
  .ecx-client-card__logo {
    min-height: 142px !important;
    height: 142px !important;
  }

  .ecx-client-card__content h3 {
    font-size: 17px !important;
  }

  .ecx-footer__inner {
    grid-template-columns: 1fr !important;
    justify-items: start !important;
    text-align: left !important;
    gap: 10px !important;
  }

  .ecx-footer__brand,
  .ecx-footer__contact {
    justify-content: flex-start !important;
    align-items: center !important;
  }
}
/* =========================================================
FIM - AJUSTES FINAIS CLIENTES + FOOTER SOCIAL
========================================================= */
