/* =========================================================
   VOX — Design System
   ========================================================= */
:root{
  --vx-black:#000000;
  --vx-white:#ffffff;
  --vx-gray-50:#F7F7F7;
  --vx-gray-100:#EFEFEF;
  --vx-gray-300:#D9D9D9;
  --vx-gray-400:#aaaaaa;
  --vx-gray-500:#9A9A9A;
  --vx-gray-700:#4A4A4A;
  --vx-gray-900:#111111;
  --vx-accent:#023BE6;
  --vx-accent-dark:#011C6B;

  --vx-radius-card:24px;
  --vx-radius-btn:999px;
  --vx-radius-input:18px;
  --vx-radius-badge:999px;

  --vx-font: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;

  --vx-ease: cubic-bezier(.16,.84,.44,1);
  --vx-header-h: 84px;
}

*{ box-sizing:border-box; }

html{ scroll-behavior:auto; }

body{
  font-family:var(--vx-font);
  color:var(--vx-black);
  background:var(--vx-white);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

a{ text-decoration:none; color:inherit; }
ul{ list-style:none; margin:0; padding:0; }
img{ max-width:100%; display:block; }

::selection{ background:var(--vx-black); color:#fff; }

/* ---------- Typography ---------- */
.vx-h2{
  font-size:clamp(2rem, 3.4vw, 3rem);
  font-weight:700;
  letter-spacing:-0.02em;
  line-height:1.1;
  margin-bottom:16px;
}

.vx-lead{
  font-size:1.125rem;
  color:var(--vx-gray-700);
  max-width:640px;
  line-height:1.6;
}
.vx-lead--cta{
  max-width:600px;
  margin-left:auto;
  margin-right:auto;
}

.vx-section__head{ margin-bottom:36px; max-width:760px; }

.vx-section__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:48px; height:48px;
  border-radius:14px;
  background:var(--vx-black);
  margin-bottom:16px;
  animation:vx-icon-float 3s ease-in-out infinite;
  transition:transform .35s var(--vx-ease), box-shadow .35s var(--vx-ease), background .3s;
}
.vx-section__icon .vx-icon{ width:24px; height:24px; color:#fff; stroke-width:2; }
.vx-section__icon:hover{
  transform:translateY(-4px) scale(1.08);
  box-shadow:0 12px 32px -10px rgba(0,0,0,.35);
}
.vx-section__icon--eco{ margin-top:4px; }
.vx-section__icon--light{ background:#fff; }
.vx-section__icon--light .vx-icon{ color:#000; }

@keyframes vx-icon-float{
  0%,100%{ transform:translateY(0); }
  50%{ transform:translateY(-4px); }
}

/* ---------- Layout helpers ---------- */
.vx-section{ padding:76px 0; position:relative; }
.vx-section--alt{ background:var(--vx-gray-50); }
.vx-section--dark{ background:#000; color:#fff; }
.vx-section--dark .vx-lead{ color:rgba(255,255,255,.68); }
.vx-section--dark .vx-h2{ color:#fff; }

/* =========================================================
   HEADER
   ========================================================= */
.vx-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  height:var(--vx-header-h);
  display:flex;
  align-items:center;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,.1);
  transition:box-shadow .35s var(--vx-ease), height .3s var(--vx-ease);
}
.vx-header.is-scrolled{
  height:72px;
  box-shadow:0 20px 40px -20px rgba(0,0,0,.5);
}
.vx-header__inner{
  display:flex; align-items:center; justify-content:space-between;
  width:100%;
}
.vx-logo__img{
  height:28px;
  width:auto;
  display:block;
}

.vx-nav{ gap:2.4rem; }
.vx-nav a{
  font-size:.92rem;
  font-weight:500;
  color:rgba(255,255,255,.66);
  position:relative;
  padding:6px 0;
  transition:color .25s;
}
.vx-nav a::after{
  content:"";
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background:currentColor;
  transition:width .3s var(--vx-ease);
}
.vx-nav a:hover{ color:#fff; }
.vx-nav a:hover::after{ width:100%; }

.vx-lang{ display:flex; align-items:center; gap:10px; margin-left:24px; padding-left:24px; border-left:1px solid rgba(255,255,255,.15); }
.vx-lang__link{ display:flex; opacity:.5; transition:opacity .25s; }
.vx-lang__link:hover{ opacity:.8; }
.vx-lang__link.is-active{ opacity:1; }
.vx-lang__link svg{ display:block; border-radius:2px; }
.vx-lang--mobile{ margin-top:12px; padding-top:12px; border-left:none; border-top:1px solid rgba(255,255,255,.15); justify-content:center; }

.vx-header__actions{ display:flex; align-items:center; gap:1rem; }
.vx-header .vx-btn--primary{ background:#fff; color:#000; }
.vx-header .vx-btn--primary:hover{ background:var(--vx-gray-700); color:#fff; }

.vx-burger{
  width:40px; height:40px;
  border:none; background:transparent;
  display:flex; flex-direction:column; justify-content:center; gap:5px;
  cursor:pointer;
}
.vx-burger span{
  display:block; height:2px; width:22px; background:#fff;
}

.vx-mobile-menu{
  position:fixed; top:var(--vx-header-h); left:0; right:0;
  background:rgba(0,0,0,.96);
  backdrop-filter:blur(20px);
  display:flex; flex-direction:column;
  padding:1.5rem 1.5rem 2rem;
  gap:1rem;
  transform:translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition:all .3s var(--vx-ease);
  z-index:999;
}
.vx-mobile-menu.is-open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.vx-mobile-menu a{ color:#fff; font-size:1.05rem; padding:.4rem 0; }

/* =========================================================
   BUTTONS
   ========================================================= */
.vx-btn{
  border-radius:var(--vx-radius-btn);
  padding:.85rem 1.7rem;
  font-weight:600;
  font-size:.92rem;
  border:1px solid transparent;
  transition:transform .35s var(--vx-ease), box-shadow .35s var(--vx-ease), background .3s, color .3s;
  display:inline-flex; align-items:center; gap:.5rem;
  white-space:nowrap;
}
.vx-btn--primary{
  background:var(--vx-black);
  color:#fff;
}
.vx-btn--primary:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px -8px rgba(0,0,0,.35);
  background:var(--vx-gray-700);
  color:#fff;
}
.vx-btn--ghost{
  background:rgba(0,0,0,.04);
  color:var(--vx-black);
  border-color:rgba(0,0,0,.1);
}
.vx-btn--ghost:hover{
  background:rgba(0,0,0,.08);
  transform:translateY(-2px);
}

/* =========================================================
   HERO
   ========================================================= */
.vx-hero{
  position:relative;
  min-height:95vh;
  display:flex;
  align-items:center;
  padding-top:calc(var(--vx-header-h) + 40px);
  padding-bottom:80px;
  background:#fff;
  background-image:url('../img/bg-site.png');
  background-size:contain;
  background-position:right center;
  background-repeat:no-repeat;
}
@media(max-width:991px){
  .vx-hero{ background-size:50%; background-position:right bottom; }
}
@media(max-width:575px){
  .vx-hero{ background-image:none; }
}

.vx-hero__grid{
  display:grid;
  grid-template-columns:1fr 0.95fr;
  gap:40px;
  align-items:center;
  position:relative;
  z-index:1;
}

.vx-hero__title{
  font-size:clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight:800;
  letter-spacing:-0.03em;
  line-height:1.14;
  margin-bottom:1.25rem;
  color:var(--vx-black);
}
.vx-highlight{ color:var(--vx-black); border-bottom:3px solid var(--vx-black); }

.vx-hero__text{
  font-size:1.05rem;
  color:var(--vx-gray-700);
  max-width:480px;
  line-height:1.7;
  margin-bottom:2.2rem;
}

.vx-hero__actions{ display:flex; gap:1rem; flex-wrap:wrap; }

/* ---- Network placeholder ---- */
.vx-hero__network{ position:relative; z-index:1; }

/* ---- Trust bar ---- */
.vx-trustbar{
  padding:60px 0 48px;
  background:var(--vx-gray-900);
  position:relative;
  z-index:1;
}
.vx-trustbar__label{
  text-align:center;
  font-size:.8rem;
  color:var(--vx-gray-400);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:28px;
}
.vx-marquee{
  overflow:hidden;
  mask-image:linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.vx-marquee__track{
  display:flex;
  gap:56px;
  width:max-content;
  animation:vx-marquee 32s linear infinite;
}
.vx-marquee__track span{
  font-weight:600;
  font-size:.95rem;
  white-space:nowrap;
}
.vx-marquee__track--trust span{
  font-size:1.05rem;
  font-weight:500;
  color:var(--vx-gray-100);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.vx-marquee__track--trust span:hover{ color:#fff; }
.vx-marquee__track--trust .vx-icon{
  width:16px; height:16px;
  color:var(--vx-gray-400);
  stroke-width:2;
}
@keyframes vx-marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* =========================================================
   ICON SYSTEM (custom, não é Bootstrap Icons)
   ========================================================= */
.vx-icon{
  width:26px; height:26px;
  color:#2b2b2b;
  fill:none;
  stroke:currentColor;
  stroke-width:1.6;
  stroke-linecap:round;
  stroke-linejoin:round;
  display:block;
}
.vx-icon--sm{ width:20px; height:20px; stroke-width:1.8; }
.vx-icon--lg{ width:34px; height:34px; stroke-width:1.4; }

/* =========================================================
   SOBRE — FACTS (lista leve, sem card em caixa)
   ========================================================= */
.vx-facts{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:0;
  border-top:1px solid var(--vx-gray-100);
  border-left:1px solid var(--vx-gray-100);
}

.vx-sobre{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}
.vx-sobre__img{
  border-radius:24px;
  overflow:hidden;
  position:sticky;
  top:100px;
}
.vx-sobre__img img{
  width:85%;
  height:auto;
  display:block;
}
@media(max-width:991px){
  .vx-sobre{ grid-template-columns:1fr; gap:24px; }
  .vx-sobre__img{ min-height:auto; position:static; height:200px; border-radius:16px; }
  .vx-sobre__img img{ width:100%; height:100%; object-fit:cover; }
}
.vx-fact{
  padding:32px 28px;
  border-right:1px solid var(--vx-gray-100);
  border-bottom:1px solid var(--vx-gray-100);
}
.vx-fact .vx-icon{ margin-bottom:18px; }
.vx-fact h3{ font-size:1.05rem; font-weight:700; margin-bottom:8px; letter-spacing:-0.01em; }
.vx-fact p{ color:var(--vx-gray-700); font-size:.92rem; line-height:1.55; margin:0; }

/* =========================================================
   DIFERENCIAIS — ACCORDION
   ========================================================= */
.vx-accordion{ border-top:1px solid var(--vx-gray-300); max-width:820px; margin:0 auto; }
.vx-accordion__item{ border-bottom:1px solid var(--vx-gray-300); }
.vx-accordion__trigger{
  width:100%;
  display:grid;
  grid-template-columns:36px 32px 1fr 24px;
  align-items:center;
  gap:16px;
  padding:22px 4px;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
}
.vx-accordion__num{
  font-size:.8rem;
  font-weight:700;
  color:var(--vx-gray-500);
  font-variant-numeric:tabular-nums;
}
.vx-accordion__title{ font-size:1.1rem; font-weight:700; letter-spacing:-0.01em; color:var(--vx-black); }
.vx-accordion__plus{
  position:relative;
  width:16px; height:16px;
  justify-self:end;
}
.vx-accordion__plus::before, .vx-accordion__plus::after{
  content:"";
  position:absolute;
  background:var(--vx-black);
  transition:transform .3s var(--vx-ease);
}
.vx-accordion__plus::before{ top:50%; left:0; width:16px; height:2px; transform:translateY(-50%); }
.vx-accordion__plus::after{ left:50%; top:0; width:2px; height:16px; transform:translateX(-50%); }
.vx-accordion__item.is-open .vx-accordion__plus::after{ transform:translateX(-50%) rotate(90deg); opacity:0; }

.vx-accordion__panel{
  display:grid;
  grid-template-rows:0fr;
  overflow:hidden;
  transition:grid-template-rows .35s var(--vx-ease);
}
.vx-accordion__panel > p{
  overflow:hidden;
  min-height:0;
  color:var(--vx-gray-700);
  font-size:.95rem;
  line-height:1.6;
  margin:0;
  padding:0 4px 0 84px;
}
.vx-accordion__item.is-open .vx-accordion__panel{ grid-template-rows:1fr; padding-bottom:22px; }

@media (max-width: 575.98px){
  .vx-accordion__trigger{ grid-template-columns:28px 24px 1fr 20px; gap:10px; }
  .vx-accordion__panel > p{ padding-left:52px; }
}

/* =========================================================
   ECOSSISTEMA — REFINED
   ========================================================= */
.vx-eco__label{
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--vx-gray-500);
  margin-bottom:10px;
}
.vx-eco__title-accent{
  display:block;
  font-size:clamp(2.6rem, 4.2vw, 3.8rem);
  font-weight:800;
  letter-spacing:-0.03em;
  color:var(--vx-black);
}
.vx-eco__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-top:48px;
  position:relative;
}
.vx-eco__card{
  background:#fff;
  border:1px solid var(--vx-gray-300);
  border-radius:var(--vx-radius-card);
  padding:32px 28px;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .4s var(--vx-ease), box-shadow .4s var(--vx-ease);
  z-index:1;
}
.vx-eco__card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px -28px rgba(0,0,0,.2);
}
.vx-eco__card::before{
  content:"";
  position:absolute; top:0; left:0; right:0;
  height:3px;
  background:var(--vx-black);
  transition:background .3s;
}
.vx-eco__card:hover::before{ background:var(--vx-black); }
.vx-eco__card-num{
  position:absolute;
  top:16px; right:20px;
  font-size:3rem;
  font-weight:800;
  color:var(--vx-gray-100);
  line-height:1;
  letter-spacing:-0.03em;
  pointer-events:none;
  user-select:none;
  transition:color .3s;
}
.vx-eco__card:hover .vx-eco__card-num{ color:var(--vx-gray-300); }
.vx-eco__card-icon{
  width:44px; height:44px;
  border-radius:14px;
  background:var(--vx-black);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:20px;
  transition:transform .3s var(--vx-ease), box-shadow .3s var(--vx-ease);
}
.vx-eco__card-icon .vx-icon{ color:#fff; }
.vx-eco__card:hover .vx-eco__card-icon{
  transform:scale(1.08);
  box-shadow:0 8px 24px -8px rgba(0,0,0,.3);
}
.vx-eco__card h3{
  font-size:1.25rem;
  font-weight:700;
  letter-spacing:-0.02em;
  margin-bottom:10px;
  position:relative;
}
.vx-eco__card p{
  color:var(--vx-gray-700);
  font-size:.88rem;
  line-height:1.6;
  margin-bottom:20px;
  flex:1;
  position:relative;
}
.vx-eco__card-tag{
  display:inline-block;
  font-size:.7rem;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--vx-gray-500);
  padding:4px 12px;
  border:1px solid var(--vx-gray-100);
  border-radius:999px;
  margin-top:auto;
  align-self:flex-start;
  transition:border-color .3s, color .3s;
}
.vx-eco__card:hover .vx-eco__card-tag{
  border-color:var(--vx-black);
  color:var(--vx-black);
}
@media (max-width: 991.98px){
  .vx-hero__grid{ grid-template-columns:1fr; }
  .vx-hero__network{ display:none; }
}
@media (max-width: 575.98px){
  .vx-eco__grid{ grid-template-columns:1fr; }
}

/* =========================================================
   COMO FUNCIONA — PROCESS
   ========================================================= */
.vx-process{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:12px;
  position:relative;
}
.vx-process::before{
  content:"";
  position:absolute;
  top:28px; left:0; right:0;
  height:2px;
  background:var(--vx-gray-300);
  z-index:0;
}
.vx-process__fill{
  position:absolute;
  top:28px; left:0;
  height:2px;
  background:var(--vx-black);
  z-index:0;
  width:0;
  will-change:width;
}
.vx-process__item{ position:relative; text-align:center; padding-top:0; }
.vx-process__icon{
  position:relative;
  z-index:1;
  width:56px; height:56px;
  margin:0 auto 14px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--vx-gray-300);
  display:flex; align-items:center; justify-content:center;
  transition:border-color .3s, transform .3s var(--vx-ease);
}
.vx-process__item:hover .vx-process__icon{ border-color:var(--vx-black); transform:translateY(-3px); }
.vx-process__icon .vx-icon{ width:22px; height:22px; }
.vx-process__num{
  display:block;
  font-size:.72rem;
  font-weight:700;
  color:var(--vx-gray-500);
  margin-bottom:6px;
  font-variant-numeric:tabular-nums;
}
.vx-process__item h3{ font-size:.92rem; font-weight:700; margin:0 0 6px; letter-spacing:-0.01em; }
.vx-process__item p{ color:var(--vx-gray-700); font-size:.8rem; line-height:1.5; margin:0; }
.vx-process__item--accent .vx-process__icon{ background:var(--vx-black); border-color:var(--vx-black); }
.vx-process__item--accent .vx-process__icon .vx-icon{ color:#fff; }

@media (max-width: 991.98px){
  .vx-process{ grid-template-columns:repeat(4, 1fr); row-gap:32px; }
  .vx-process::before,
  .vx-process__fill{ display:none; }
}
@media (max-width: 575.98px){
  .vx-process{ grid-template-columns:repeat(2, 1fr); }
}

/* =========================================================
   SERVIÇOS — LIST
   ========================================================= */
.vx-services__grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:16px;
}
.vx-service{
  display:flex;
  align-items:center;
  gap:18px;
  background:#fff;
  border:1px solid var(--vx-gray-100);
  border-radius:18px;
  padding:24px 24px;
  position:relative;
  overflow:hidden;
  transition:transform .35s var(--vx-ease), box-shadow .35s var(--vx-ease);
}
.vx-service:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 48px -28px rgba(0,0,0,.16);
}
.vx-service__num{
  font-size:2.2rem;
  font-weight:800;
  color:var(--vx-gray-300);
  line-height:1;
  letter-spacing:-0.03em;
  min-width:40px;
  transition:color .3s;
}
.vx-service:hover .vx-service__num{ color:var(--vx-gray-500); }
.vx-service__icon{
  width:44px; height:44px;
  min-width:44px;
  border-radius:12px;
  background:var(--vx-gray-50);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s;
}
.vx-service:hover .vx-service__icon{ background:var(--vx-black); }
.vx-service:hover .vx-service__icon .vx-icon{ color:#fff; }
.vx-service__body h3{
  font-size:1rem;
  font-weight:700;
  letter-spacing:-0.01em;
  margin-bottom:4px;
}
.vx-service__body p{
  color:var(--vx-gray-500);
  font-size:.82rem;
  margin:0;
  line-height:1.4;
}
.vx-service__num,
.vx-service__icon,
.vx-service__body{ position:relative; z-index:1; }

@media (max-width: 767.98px){
  .vx-services__grid{ grid-template-columns:1fr; }
}

/* =========================================================
   TECH CARDS
   ========================================================= */
.vx-tech-card{
  background:#fff;
  border:1px solid var(--vx-gray-100);
  border-radius:20px;
  padding:28px 22px;
  height:100%;
  text-align:center;
  transition:transform .35s var(--vx-ease), box-shadow .35s var(--vx-ease), border-color .35s;
}
.vx-tech-card .vx-icon{ margin:0 auto 14px; }
.vx-tech-card h4{ font-size:.92rem; font-weight:600; margin:0; color:var(--vx-black); }
.vx-tech-card:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 48px -28px rgba(0,0,0,.15);
  border-color:transparent;
}

/* =========================================================
   CONEXÕES
   ========================================================= */
.vx-conexoes__title{ max-width:640px; }
.vx-conexoes__grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-bottom:40px;
}
.vx-conexoes__card{
  position:relative;
  display:flex;
  align-items:flex-end;
  aspect-ratio:4 / 4.6;
  border-radius:20px;
  padding:24px;
  overflow:hidden;
  isolation:isolate;
  transition:transform .5s var(--vx-ease);
}
.vx-conexoes__card h3{
  color:#fff;
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:1.25;
  margin:0;
  position:relative;
  max-width:80%;
}
.vx-conexoes__arrow{
  position:absolute;
  top:20px; right:20px;
  width:38px; height:38px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(6px);
  transition:transform .4s var(--vx-ease), background .3s;
}
.vx-conexoes__card:hover{ transform:translateY(-8px); }
.vx-conexoes__card:hover .vx-conexoes__arrow{
  transform:rotate(45deg);
  background:#fff;
  border-color:#fff;
  color:#000;
}
.vx-conexoes__card::before{
  content:"";
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  transition:transform .6s var(--vx-ease), filter .6s var(--vx-ease);
  filter:saturate(.9);
  z-index:-2;
}
.vx-conexoes__card:hover::before{ transform:scale(1.1); filter:saturate(1.05); }
.vx-conexoes__card::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.9) 100%);
  z-index:-1;
}
.vx-conexoes__card--1::before{ background-image:url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800&q=70'); }
.vx-conexoes__card--2::before{ background-image:url('https://images.unsplash.com/photo-1533750349088-cd871a92f312?auto=format&fit=crop&w=800&q=70'); }
.vx-conexoes__card--3::before{ background-image:url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=800&q=70'); }
.vx-conexoes__card--4::before{ background-image:url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=800&q=70'); }

.vx-conexoes__ticker{ border-top:1px solid rgba(255,255,255,.12); padding-top:32px; }
.vx-marquee__track--ticker span{ color:#fff; font-weight:700; font-size:1.1rem; }
.vx-ticker__sep{ color:rgba(255,255,255,.35) !important; font-weight:700; }

@media (max-width: 991.98px){
  .vx-conexoes__grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width: 575.98px){
  .vx-conexoes__grid{ grid-template-columns:1fr; }
}

/* =========================================================
   NÚMEROS
   ========================================================= */
.vx-numbers-section{
  background:#000;
}
.vx-numbers__grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:20px;
}
.vx-numbers__card{
  text-align:center;
  padding:40px 16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  transition:transform .35s var(--vx-ease), background .3s;
}
.vx-numbers__card:hover{
  transform:translateY(-4px);
  background:rgba(255,255,255,.08);
}
.vx-numbers__icon{
  width:44px; height:44px;
  margin:0 auto 18px;
  border-radius:12px;
  background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center;
}
.vx-numbers__icon .vx-icon{ color:#fff; }
.vx-numbers__card strong{
  display:block;
  font-size:clamp(2rem, 3.2vw, 2.8rem);
  font-weight:800;
  letter-spacing:-0.02em;
  color:#fff;
}
.vx-numbers__card span{
  display:block;
  color:rgba(255,255,255,.5);
  font-size:.8rem;
  font-weight:600;
  margin-top:8px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

@media (max-width: 767.98px){
  .vx-numbers__grid{ grid-template-columns:repeat(2, 1fr); gap:16px; }
  .vx-numbers__card{ padding:28px 12px; }
}

/* =========================================================
   CONTEÚDO — EDITORIAL LIST
   ========================================================= */
.vx-section__head--split{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:flex-end;
  gap:24px;
  margin-bottom:36px;
}
.vx-link-arrow{
  font-weight:600;
  font-size:.92rem;
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  white-space:nowrap;
  padding-bottom:6px;
}
.vx-link-arrow i{ transition:transform .3s var(--vx-ease); }
.vx-link-arrow:hover i{ transform:translateX(4px); }

.vx-editorial{ display:flex; flex-direction:column; gap:14px; }
.vx-editorial__row{
  display:grid;
  grid-template-columns:64px 1fr 56px;
  align-items:center;
  gap:24px;
  padding:28px 28px;
  background:#fff;
  border:1px solid var(--vx-gray-100);
  border-radius:18px;
  transition:transform .3s var(--vx-ease), box-shadow .3s var(--vx-ease), border-color .3s;
}
.vx-editorial__row:hover{
  transform:translateY(-3px);
  box-shadow:0 24px 48px -28px rgba(0,0,0,.16);
  border-color:transparent;
}
.vx-editorial__index{
  font-size:.85rem;
  font-weight:700;
  color:var(--vx-gray-500);
  font-variant-numeric:tabular-nums;
}
.vx-editorial__body h3{
  font-size:1.3rem;
  font-weight:700;
  letter-spacing:-0.01em;
  margin:0 0 6px;
}
.vx-editorial__body p{
  color:var(--vx-gray-700);
  font-size:.95rem;
  margin:0;
  max-width:560px;
}
.vx-editorial__link{
  width:52px; height:52px;
  border-radius:50%;
  border:1px solid var(--vx-gray-300);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  color:var(--vx-black);
  justify-self:end;
  transition:transform .35s var(--vx-ease), background .3s, color .3s;
}
.vx-editorial__row:hover .vx-editorial__link{
  background:var(--vx-black);
  color:#fff;
  transform:rotate(45deg);
}

@media (max-width: 767.98px){
  .vx-section__head--split{ grid-template-columns:1fr; gap:4px; }
  .vx-editorial__row{ grid-template-columns:40px 1fr; }
  .vx-editorial__link{ display:none; }
}

/* =========================================================
   FAQ
   ========================================================= */
.vx-faq__label{
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.12em;
  color:var(--vx-gray-500);
  margin-bottom:10px;
}
.vx-faq{
  max-width:780px;
  margin:0 auto;
}
.vx-faq__item{
  background:#fff;
  border:1px solid var(--vx-gray-100);
  border-radius:16px;
  margin-bottom:12px;
  overflow:hidden;
  transition:box-shadow .3s var(--vx-ease);
}
.vx-faq__item:hover{
  box-shadow:0 8px 24px -16px rgba(0,0,0,.2);
}
.vx-faq__q{
  width:100%;
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  background:none;
  border:none;
  text-align:left;
  cursor:pointer;
  font-family:inherit;
  position:relative;
}
.vx-faq__icon-wrap{
  width:44px; height:44px;
  min-width:44px;
  border-radius:12px;
  background:var(--vx-gray-50);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s, transform .35s var(--vx-ease), box-shadow .3s;
}
.vx-faq__q:hover .vx-faq__icon-wrap{
  background:var(--vx-gray-100);
  transform:scale(1.06);
}
.vx-faq__item.is-open .vx-faq__icon-wrap{
  background:var(--vx-black);
  transform:scale(1);
}
.vx-faq__item.is-open .vx-faq__icon-wrap .vx-icon{
  color:#fff;
}
.vx-faq__text{
  flex:1;
  font-size:1rem;
  font-weight:700;
  letter-spacing:-0.01em;
  color:var(--vx-black);
  line-height:1.4;
}
.vx-faq__plus{
  position:relative;
  width:20px; height:20px;
  min-width:20px;
  display:flex; align-items:center; justify-content:center;
  transition:transform .4s var(--vx-ease);
}
.vx-faq__item.is-open .vx-faq__plus{
  transform:rotate(135deg);
}
.vx-faq__plus::before,
.vx-faq__plus::after{
  content:"";
  position:absolute;
  background:var(--vx-black);
  border-radius:2px;
  transition:background .3s;
}
.vx-faq__plus::before{ width:16px; height:2px; }
.vx-faq__plus::after{ width:2px; height:16px; }

.vx-faq__a{
  display:grid;
  grid-template-rows:0fr;
  overflow:hidden;
  transition:grid-template-rows .45s var(--vx-ease);
}
.vx-faq__a > p{
  overflow:hidden;
  min-height:0;
  color:var(--vx-gray-700);
  font-size:.92rem;
  line-height:1.7;
  margin:0;
  padding:0 24px 0 84px;
}
.vx-faq__item.is-open .vx-faq__a{
  grid-template-rows:1fr;
  padding-bottom:24px;
}

@media (max-width: 575.98px){
  .vx-faq__q{ gap:12px; padding:16px 16px; }
  .vx-faq__icon-wrap{ width:36px; height:36px; min-width:36px; }
  .vx-faq__a > p{ padding:0 16px 0 64px; font-size:.88rem; }
}

/* =========================================================
   CTA
   ========================================================= */
.vx-cta{
  background:#000;
  color:#fff;
  padding:80px 0 56px;
  position:relative;
}
.vx-cta .vx-h2{ color:#fff; }
.vx-cta .vx-lead--cta{ color:rgba(255,255,255,.68); }
.vx-cta .vx-btn--primary{ background:#fff; color:#000; }
.vx-cta .vx-btn--primary:hover{ background:var(--vx-gray-700); color:#fff; }
.vx-cta .vx-btn--ghost{
  background:rgba(255,255,255,.08);
  color:#fff;
  border-color:rgba(255,255,255,.2);
}
.vx-cta .vx-btn--ghost:hover{ background:rgba(255,255,255,.16); }
.vx-cta__actions{
  display:flex; gap:1rem; justify-content:center; flex-wrap:wrap;
  margin-top:2.2rem; position:relative;
}

/* =========================================================
   FOOTER
   ========================================================= */
.vx-footer{
  background:#fff;
  color:var(--vx-black);
  padding:0 0 28px;
  position:relative;
}
.vx-footer__bar{
  height:4px;
  width:100%;
  background:var(--vx-black);
}
.vx-footer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:20px;
  padding-top:24px;
}
.vx-footer__logo{ display:inline-block; }
.vx-footer__logo-img{
  height:32px;
  width:auto;
  display:block;
}
.vx-footer__nav{ display:flex; gap:2rem; flex-wrap:wrap; }
.vx-footer__nav a{
  font-size:.92rem;
  font-weight:500;
  color:var(--vx-gray-700);
  position:relative;
  transition:color .25s;
}
.vx-footer__nav a:first-child{ color:var(--vx-black); font-weight:600; }
.vx-footer__nav a:first-child::after{
  content:"";
  position:absolute; left:0; right:0; bottom:-8px;
  height:2px; background:var(--vx-black);
}
.vx-footer__nav a:hover{ color:var(--vx-black); }

.vx-footer__divider{
  border:none;
  border-top:1px solid var(--vx-gray-100);
  margin:32px 0 48px;
}

.vx-footer__cols p{ margin:0; }
.vx-footer__address{
  font-size:.95rem;
  line-height:1.7;
  color:var(--vx-gray-700);
  margin-bottom:14px !important;
}
.vx-footer__waze{
  font-size:.9rem;
  font-weight:500;
  color:var(--vx-gray-700);
  display:inline-flex;
  align-items:center;
  gap:.4rem;
}
.vx-footer__waze:hover{ color:var(--vx-black); }

.vx-footer__phone{
  font-size:1.15rem;
  font-weight:700;
  margin-bottom:8px !important;
}
.vx-footer__email{
  font-size:.95rem;
  font-weight:500;
  text-decoration:underline;
  text-underline-offset:3px;
  color:var(--vx-gray-700);
}
.vx-footer__email:hover{ color:var(--vx-black); }

.vx-footer__newsletter{ text-align:right; }
.vx-footer__newsletter p{
  font-size:.95rem;
  color:var(--vx-gray-700);
  margin-bottom:18px !important;
  line-height:1.6;
}
.vx-footer__legal-links{ display:flex; flex-direction:column; gap:10px; }
.vx-footer__legal-links a{
  font-size:.92rem;
  font-weight:600;
  color:var(--vx-black);
}
.vx-footer__legal-links a:hover{ text-decoration:underline; }

.vx-footer__bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  flex-wrap:wrap;
  gap:20px;
  border-top:1px solid var(--vx-gray-100);
  margin-top:48px;
  padding-top:28px;
  font-size:.85rem;
  color:var(--vx-gray-500);
  line-height:1.6;
}
.vx-footer__social{ display:flex; gap:12px; }
.vx-footer__social a{
  width:40px; height:40px;
  border-radius:50%;
  background:var(--vx-black);
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-size:1rem;
  transition:background .3s, transform .3s var(--vx-ease);
}
.vx-footer__social a:hover{ background:var(--vx-gray-700); transform:translateY(-3px); }

/* ---- Privacy notice ---- */
.vx-privacy-notice{
  position:fixed;
  bottom:0; left:0; right:0;
  background:#000;
  color:#fff;
  z-index:1100;
  padding:16px 20px;
  transform:translateY(100%);
  transition:transform .5s var(--vx-ease);
}
.vx-privacy-notice.is-visible{ transform:translateY(0); }
.vx-privacy-notice__inner{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.vx-privacy-notice p{
  margin:0;
  font-size:.85rem;
  color:rgba(255,255,255,.7);
  line-height:1.5;
}
.vx-privacy-notice a{ color:#fff; text-decoration:underline; }
.vx-privacy-notice a:hover{ color:var(--vx-gray-400); }
.vx-privacy-notice__btn{
  background:#fff;
  color:#000;
  border:none;
  border-radius:999px;
  padding:10px 28px;
  font-weight:700;
  font-size:.85rem;
  cursor:pointer;
  white-space:nowrap;
  font-family:inherit;
  transition:background .3s, transform .3s var(--vx-ease);
}
.vx-privacy-notice__btn:hover{ background:var(--vx-gray-300); transform:translateY(-1px); }
@media(max-width:575px){
  .vx-privacy-notice{ padding:14px 16px; }
  .vx-privacy-notice__inner{ flex-direction:column; text-align:center; }
  .vx-privacy-notice p{ font-size:.8rem; }
}

/* ---- Floating button ---- */
.vx-float-btn{
  position:fixed;
  right:24px; bottom:90px;
  display:flex;
  align-items:center;
  gap:10px;
  background:#000;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:14px 20px 14px 18px;
  z-index:1000;
  cursor:pointer;
  box-shadow:0 8px 28px -8px rgba(0,0,0,.4);
  text-decoration:none;
  font-family:inherit;
  font-weight:600;
  font-size:.9rem;
  transition:transform .3s var(--vx-ease), box-shadow .3s var(--vx-ease), background .3s;
  animation:vx-float-pulse 3s ease-in-out infinite;
}
.vx-float-btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 16px 40px -12px rgba(0,0,0,.5);
  background:var(--vx-gray-900);
  color:#fff;
}
.vx-float-btn__icon{
  width:36px; height:36px;
  border-radius:50%;
  background:#fff;
  color:#000;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.vx-float-btn__text{ white-space:nowrap; }
@media(max-width:575px){
  .vx-float-btn{ right:16px; bottom:80px; padding:12px 16px 12px 14px; }
  .vx-float-btn__text{ display:none; }
  .vx-float-btn__icon{ width:42px; height:42px; }
}
@keyframes vx-float-pulse{
  0%,100%{ transform:scale(1); }
  50%{ transform:scale(1.04); }
}
  .vx-footer__newsletter{ text-align:left; }
  .vx-footer__legal-links{ flex-direction:row; flex-wrap:wrap; gap:16px; }
  .vx-footer__bottom{ flex-direction:column; align-items:flex-start; }
}

/* =========================================================
   MISC / RESPONSIVE
   ========================================================= */

/* Tablet (768-991) */
@media (max-width: 991.98px){
  .vx-section{ padding:56px 0; }
  .vx-hero{ padding-top:calc(var(--vx-header-h) + 24px); min-height:auto; padding-bottom:48px; }
  .vx-hero__grid{ grid-template-columns:1fr; gap:24px; }
  .vx-hero__network{ display:none; }
  .vx-hero__title{ font-size:clamp(1.5rem, 4vw, 2rem); }
  .vx-hero__text{ max-width:100%; font-size:1rem; }
  .vx-hero__actions{ flex-wrap:wrap; }
  .vx-hero{ background-position:right bottom; background-size:60%; }
  .vx-facts{ grid-template-columns:repeat(2, 1fr); }
  .vx-bento{ grid-template-columns:repeat(2, 1fr); }
  .vx-bento__item--lg{ grid-column:span 2; grid-row:span 1; }
  .vx-eco__grid{ grid-template-columns:repeat(2, 1fr); }
  .vx-process{ grid-template-columns:repeat(4, 1fr); row-gap:32px; }
  .vx-process::before{ display:none; }
  .vx-conexoes__grid{ grid-template-columns:repeat(2, 1fr); }
  .vx-sobre{ gap:32px; }
  .vx-sobre__img img{ width:100%; }
  .vx-services__grid{ gap:12px; }
}

/* Mobile large (576-767) */
@media (max-width: 767.98px){
  .vx-hero{ background-size:70%; background-position:center bottom; }
  .vx-hero__title{ font-size:clamp(1.3rem, 5vw, 1.6rem); }
  .vx-hero__text{ font-size:.95rem; }
  .vx-eco__grid{ grid-template-columns:repeat(2, 1fr); gap:16px; }
  .vx-eco__card{ padding:24px 20px; }
  .vx-services__grid{ grid-template-columns:1fr; }
  .vx-service{ padding:18px 16px; gap:14px; }
  .vx-service__num{ font-size:1.6rem; min-width:30px; }
  .vx-service__icon{ width:36px; height:36px; min-width:36px; }
  .vx-numbers__grid{ grid-template-columns:repeat(2, 1fr); gap:16px; }
  .vx-numbers__card{ padding:28px 12px; }
  .vx-footer__newsletter{ text-align:left; }
  .vx-footer__legal-links{ flex-direction:row; flex-wrap:wrap; gap:16px; }
  .vx-footer__bottom{ flex-direction:column; align-items:flex-start; }
  .vx-facts{ grid-template-columns:repeat(2, 1fr); }
  .vx-fact{ padding:24px 20px; }
  .vx-process{ grid-template-columns:repeat(2, 1fr); gap:24px; }
  .vx-conexoes__grid{ grid-template-columns:repeat(2, 1fr); gap:12px; }
  .vx-conexoes__card{ aspect-ratio:auto; min-height:200px; padding:16px; }
  .vx-accordion__trigger{ padding:18px 0; gap:12px; }
  .vx-accordion__title{ font-size:1rem; }
  .vx-trustbar{ padding:40px 0 32px; }
  .vx-marquee__track--trust span{ font-size:.9rem; }
  .vx-section__head{ margin-bottom:28px; }
  .vx-lead{ font-size:1rem; }
}

/* Mobile small (<576) */
@media (max-width: 575.98px){
  .vx-cta__actions{ flex-direction:column; align-items:stretch; }
  .vx-hero{ background-size:80%; background-position:center bottom; min-height:auto; padding-bottom:40px; }
  .vx-hero__grid{ gap:16px; }
  .vx-hero__title{ font-size:clamp(1.15rem, 5.5vw, 1.4rem); }
  .vx-hero__text{ font-size:.9rem; margin-bottom:1.5rem; }
  .vx-btn{ padding:.75rem 1.4rem; font-size:.85rem; white-space:normal; text-align:center; }
  .vx-eco__grid{ grid-template-columns:1fr; }
  .vx-eco__card{ padding:20px 16px; }
  .vx-eco__card h3{ font-size:1.1rem; }
  .vx-facts{ grid-template-columns:1fr; }
  .vx-fact{ padding:20px 16px; }
  .vx-chip-row{ flex-direction:column; align-items:stretch; }
  .vx-bento{ grid-template-columns:1fr; }
  .vx-bento__item--lg{ grid-column:span 1; }
  .vx-bento__item{ min-height:120px; }
  .vx-process{ grid-template-columns:1fr 1fr; }
  .vx-process__item{ text-align:center; }
  .vx-services__grid{ grid-template-columns:1fr; gap:10px; }
  .vx-service{ flex-direction:row; padding:14px 12px; }
  .vx-service__num{ font-size:1.3rem; min-width:24px; }
  .vx-conexoes__grid{ grid-template-columns:1fr; }
  .vx-conexoes__card{ min-height:180px; }
  .vx-numbers__grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .vx-numbers__card{ padding:20px 10px; }
  .vx-numbers__card strong{ font-size:clamp(1.6rem, 6vw, 2rem); }
  .vx-numbers__card span{ font-size:.7rem; }
  .vx-accordion__trigger{ grid-template-columns:28px 24px 1fr 20px; gap:10px; }
  .vx-accordion__panel > p{ padding-left:52px; }
  .vx-accordion__panel > p{ font-size:.88rem; }
  .vx-section{ padding:40px 0; }
  .vx-h2{ font-size:clamp(1.5rem, 6vw, 2rem); margin-bottom:12px; }
  .vx-lead{ font-size:.92rem; }
  .vx-trustbar{ padding:32px 0 24px; }
  .vx-trustbar__label{ font-size:.7rem; margin-bottom:20px; }
  .vx-marquee__track{ gap:32px; }
  .vx-marquee__track--trust span{ font-size:.85rem; gap:6px; }
  .vx-footer__top{ flex-direction:column; align-items:flex-start; gap:16px; }
  .vx-footer__nav{ gap:1rem; }
  .vx-footer__cols .col-md-4{ text-align:left !important; }
  .vx-footer__newsletter p{ font-size:.85rem; }
  .vx-footer__bottom{ gap:16px; font-size:.8rem; }
  .vx-footer__logo-img{ height:26px; }
  .vx-logo__img{ height:22px; }
  .vx-section__head{ margin-bottom:20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
