    :root{
      --bg0:#070a10;
      --bg1:#0b0f18;
      --bg2:#0f1420;
      --card:#101826cc;
      --stroke:#1f2a3a;
      --text:#e8eef8;
      --muted:#a7b1c2;
      --brand:#78f06a;      /* logo-ish green */
      --brand2:#a9ff7a;     /* lighter green glow */
      --white:#ffffff;
      --shadow: 0 20px 60px rgba(0,0,0,.45);
      --radius: 22px;
      --radius2: 30px;
      --max: 1140px;
    }

    *{ box-sizing:border-box; }
    html{
      height: 100%;
      background: var(--bg0); /* evita flash branco do "canvas" do browser */
    }

    body{
      margin:0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--text);
      overflow-x:hidden;

      position: relative;
      background: transparent; /* moved to ::before */
      min-height: 100dvh;      /* viewport dinâmica (Chrome/Opera mobile) */
    }

    body::before{
      content:"";
      position: fixed;

      /* em alguns devices, inset:0 pode falhar durante resize da barra */
      top: 0; left: 0; right: 0; bottom: 0;

      z-index: -4; /* behind .grid (-3) and #fx (-2) */
      pointer-events: none;

      background:
        radial-gradient(1200px 800px at 20% 10%, rgba(120,240,106,.18), transparent 55%),
        radial-gradient(900px 700px at 85% 10%, rgba(255,255,255,.08), transparent 50%),
        radial-gradient(900px 700px at 80% 90%, rgba(120,240,106,.10), transparent 55%),
        linear-gradient(180deg, var(--bg0), var(--bg1) 40%, var(--bg2));

      background-repeat: no-repeat;
      background-size: cover;
      background-position: center center;

      /* estabilidade durante a animação da URL bar */
      transform: translate3d(0,0,0);
      will-change: transform;
    }

    /* Ambient canvas particles */
    #fx{
      position:fixed;
      inset:0;
      width:100%;
      height:100%;
      z-index:-2;
      opacity:.65;
      pointer-events:none;
    }

    /* Subtle grid */
    .grid{
      position:fixed;
      inset:-2px;
      z-index:-3;
      pointer-events:none;
      background:
        linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 90px 90px;
      opacity:.05;
      mask-image: radial-gradient(circle at 50% 20%, black 25%, transparent 62%);
    }

    a{ color:inherit; text-decoration:none; }
    .wrap{ max-width:var(--max); margin:0 auto; padding:0 22px; }

    /* Header */
    header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter: blur(14px);
      background: rgba(7,10,16,.55);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
      gap:14px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 210px;
    }
    .logo{
      width:42px; height:42px;
      border-radius: 12px;
      overflow:hidden;
      box-shadow: 0 12px 30px rgba(120,240,106,.16);
      border:1px solid rgba(255,255,255,.10);
      background: rgba(16,24,38,.6);
      display:grid;
      place-items:center;
    }
    .logo img{ width:100%; height:100%; object-fit:cover; display:block; }
    .brand strong{ font-weight:800; letter-spacing:.2px; }
    .brand small{ display:block; margin-top:2px; color:var(--muted); font-weight:500; font-size:12px; }

    .navlinks{
      display:flex;
      align-items:center;
      gap:18px;
      color:var(--muted);
      font-weight:600;
      font-size:14px;
    }
    .navlinks a{
      position:relative;
      padding:10px 6px;
      transition: color .2s ease;
    }
    .navlinks a:hover{ color:var(--text); }
    .navlinks a::after{
      content:"";
      position:absolute;
      left:6px; right:6px; bottom:6px;
      height:2px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, var(--brand), transparent);
      transform:scaleX(0);
      transform-origin:center;
      transition: transform .25s ease;
      opacity:.9;
    }
    .navlinks a:hover::after{ transform:scaleX(1); }

    .navcta{
      display:flex;
      gap:10px;
      align-items:center;
    }

    .btn{
      border:1px solid rgba(255,255,255,.12);
      background: rgba(16,24,38,.55);
      color:var(--text);
      padding:11px 14px;
      border-radius: 14px;
      font-weight:700;
      font-size:14px;
      display:inline-flex;
      align-items:center;
      gap:10px;
      cursor:pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
      user-select:none;
    }
    .btn:hover{
      transform: translateY(-1px);
      border-color: rgba(120,240,106,.35);
      background: rgba(16,24,38,.75);
    }
    .btn.primary{
      border:none;
      background: linear-gradient(135deg, var(--brand), var(--brand2));
      color:#071009;
      box-shadow: 0 18px 45px rgba(120,240,106,.22);
    }
    .btn.primary:hover{ transform: translateY(-1px) scale(1.01); }

    .pill{
      display:inline-flex;
      gap:10px;
      align-items:center;
      border:1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.03);
      padding:10px 12px;
      border-radius: 999px;
      color:var(--muted);
      font-weight:700;
      font-size:12px;
    }
    .dot{
      width:9px; height:9px;
      border-radius:999px;
      background: var(--brand);
      box-shadow: 0 0 0 6px rgba(120,240,106,.12);
    }

    /* Hero */
    .hero{
      padding:64px 0 40px;
      position:relative;
    }
    .heroGrid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:26px;
      align-items:center;
    }

    .h1{
      font-size: clamp(36px, 4.8vw, 62px);
      line-height:1.02;
      margin:16px 0 14px;
      letter-spacing:-.8px;
    }
    .h1 .grad{
      background: linear-gradient(135deg, var(--white), rgba(255,255,255,.70) 35%, rgba(120,240,106,.92));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .sub{
      color: var(--muted);
      font-size: 16px;
      line-height:1.6;
      max-width: 56ch;
      margin-bottom: 18px;
    }

    .heroCtas{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:20px 0 14px;
    }

    .mini{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top: 22px;
      color: var(--muted);
      font-size: 13px;
      font-weight:600;
    }
    .mini span{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius: 999px;
      border:1px solid rgba(255,255,255,.08);
      background: rgba(16,24,38,.40);
    }
    .mini i{
      width:8px; height:8px; border-radius:999px;
      background: rgba(255,255,255,.28);
      box-shadow: 0 0 0 6px rgba(255,255,255,.06);
    }

    /* Right side "phone" */
    .phoneWrap{
      position:relative;
      display:flex;
      justify-content:flex-end;
    }
    .phone{
      width:min(420px, 100%);
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
      border:1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
      padding:16px;
      position:relative;
      overflow:hidden;
    }
    .phone::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(500px 200px at 50% 0%, rgba(120,240,106,.22), transparent 60%),
        radial-gradient(500px 250px at 10% 60%, rgba(255,255,255,.10), transparent 60%),
        radial-gradient(500px 250px at 90% 60%, rgba(120,240,106,.10), transparent 60%);
      opacity:.95;
      z-index:0;
    }
    .screen{
      position:relative;
      z-index:1;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(7,10,16,.70), rgba(16,24,38,.65));
      border:1px solid rgba(255,255,255,.10);
      overflow:hidden;
      padding:18px;
      min-height: 520px;
    }
    .status{
      display:flex;
      justify-content:space-between;
      align-items:center;
      color: rgba(255,255,255,.70);
      font-weight:700;
      font-size:12px;
      margin-bottom:14px;
    }
    .island{
      width: 110px; height: 20px;
      border-radius: 999px;
      background: rgba(0,0,0,.35);
      border:1px solid rgba(255,255,255,.08);
    }

    .card{
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.09);
      border-radius: 20px;
      padding:14px;
      margin: 12px 0;
    }
    .card h4{
      margin:0 0 6px;
      font-size:14px;
      letter-spacing:.2px;
    }
    .tagrow{ display:flex; flex-wrap:wrap; gap:8px; }
    .tag{
      font-size:12px;
      font-weight:800;
      padding:8px 10px;
      border-radius: 999px;
      border:1px solid rgba(120,240,106,.20);
      background: rgba(120,240,106,.08);
      color: rgba(220,255,220,.95);
    }
    .tag.gray{
      border-color: rgba(255,255,255,.10);
      background: rgba(255,255,255,.05);
      color: rgba(230,240,255,.85);
    }

    .fakeInput{
      display:flex;
      gap:10px;
      align-items:center;
      padding:12px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.10);
    }
    .fakeInput .bar{
      height:12px; width:100%;
      background: linear-gradient(90deg, rgba(255,255,255,.22), rgba(255,255,255,.05));
      border-radius: 999px;
      overflow:hidden;
      position:relative;
    }
    .fakeInput .bar::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(90deg, transparent, rgba(120,240,106,.45), transparent);
      transform: translateX(-80%);
      animation: shimmer 2.3s ease-in-out infinite;
    }
    @keyframes shimmer{
      0%{ transform: translateX(-80%); }
      50%{ transform: translateX(80%); }
      100%{ transform: translateX(80%); }
    }

    .pulse{
      width:12px; height:12px; border-radius:999px;
      background: var(--brand);
      box-shadow: 0 0 0 0 rgba(120,240,106,.35);
      animation: pulse 1.8s ease infinite;
    }
    @keyframes pulse{
      0%{ box-shadow: 0 0 0 0 rgba(120,240,106,.35); }
      70%{ box-shadow: 0 0 0 18px rgba(120,240,106,0); }
      100%{ box-shadow: 0 0 0 0 rgba(120,240,106,0); }
    }

    /* Sections */
    section{ padding: 70px 0; }
    .sectionTitle{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:16px;
      margin-bottom: 26px;
    }
    .sectionTitle h2{
      margin:0;
      font-size: clamp(24px, 2.4vw, 34px);
      letter-spacing:-.4px;
    }
    .sectionTitle p{
      margin:0;
      color: var(--muted);
      max-width: 60ch;
      line-height:1.6;
      font-weight:600;
      font-size:14px;
    }

    .cards{
      display:grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }
    .feature{
      grid-column: span 4;
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      border:1px solid rgba(255,255,255,.10);
      padding:18px;
      box-shadow: 0 10px 30px rgba(0,0,0,.22);
      position:relative;
      overflow:hidden;
      min-height: 168px;
    }
    .feature::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(380px 220px at 20% 20%, rgba(120,240,106,.16), transparent 62%);
      opacity:.8;
      z-index:0;
    }
    .feature > *{ position:relative; z-index:1; }

    .icon{
      width:44px; height:44px;
      border-radius: 14px;
      display:grid;
      place-items:center;
      margin-bottom: 12px;
      background: rgba(120,240,106,.10);
      border:1px solid rgba(120,240,106,.25);
      box-shadow: 0 16px 36px rgba(120,240,106,.08);
      font-weight:900;
    }
    .feature h3{
      margin:0 0 8px;
      font-size: 16px;
      letter-spacing:.2px;
    }
    .feature p{
      margin:0;
      color: var(--muted);
      line-height:1.6;
      font-size: 13px;
      font-weight:600;
    }

    /* Split section */
    .split{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap:16px;
      align-items:stretch;
    }
    .panel{
      border-radius: var(--radius2);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
      border:1px solid rgba(255,255,255,.10);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .panel::before{
      content:"";
      position:absolute;
      inset:-2px;
      background:
        radial-gradient(450px 260px at 15% 20%, rgba(120,240,106,.18), transparent 62%),
        radial-gradient(500px 260px at 90% 90%, rgba(255,255,255,.10), transparent 60%);
      opacity:.9;
      z-index:0;
    }
    .panel > *{ position:relative; z-index:1; }
    .panel h3{ margin:0 0 10px; font-size:18px; }
    .bullets{
      margin: 14px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .bullets li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color: var(--muted);
      font-weight:700;
      font-size:13px;
      line-height:1.5;
    }
    .check{
      width:18px; height:18px;
      border-radius: 6px;
      background: rgba(120,240,106,.12);
      border:1px solid rgba(120,240,106,.30);
      display:grid;
      place-items:center;
      color: rgba(220,255,220,.95);
      font-size:12px;
      flex:0 0 auto;
      margin-top:1px;
    }

    /* CTA */
    .cta{
      text-align:center;
      padding: 70px 0 90px;
    }
    .ctaBox{
      border-radius: 34px;
      background: linear-gradient(135deg, rgba(120,240,106,.12), rgba(255,255,255,.04));
      border:1px solid rgba(255,255,255,.10);
      padding: 34px 22px;
      box-shadow: 0 20px 60px rgba(0,0,0,.30);
      position:relative;
      overflow:hidden;
    }
    .ctaBox::before{
      content:"";
      position:absolute;
      inset:-2px;
      background: radial-gradient(700px 240px at 50% 0%, rgba(120,240,106,.25), transparent 65%);
      opacity:.9;
      z-index:0;
    }
    .ctaBox > *{ position:relative; z-index:1; }
    .cta h2{
      margin:0 0 10px;
      font-size: clamp(26px, 3vw, 40px);
      letter-spacing:-.6px;
    }
    .cta p{
      margin:0 auto 18px;
      max-width: 70ch;
      color: var(--muted);
      line-height:1.6;
      font-weight:650;
    }

    /* Footer */
    footer{
      border-top: 1px solid rgba(255,255,255,.06);
      padding: 24px 0 40px;
      color: rgba(255,255,255,.55);
      font-weight:650;
      font-size: 13px;
    }
    .foot{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      align-items:center;
    }
    .foot a{ color: rgba(255,255,255,.65); }
    .foot a:hover{ color: var(--text); }

    /* Responsive */
    @media (max-width: 980px){
      .heroGrid{ grid-template-columns: 1fr; }
      .phoneWrap{ justify-content:flex-start; }
      .navlinks{ display:none; }
      .feature{ grid-column: span 6; }
      .split{ grid-template-columns: 1fr; }
    }
    @media (max-width: 560px){
      .feature{ grid-column: span 12; }
      .brand{ min-width:auto; }
      .navcta .btn{ padding:10px 12px; }
    }

    /* Reveal helpers (GSAP will animate) */
    .reveal { opacity:0; transform: translateY(18px); }
    .floaty { transform: translateY(0); }
.badges{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
  margin-top:28px;
}
.badges img{
  height:56px;
  transition:transform .25s ease, filter .25s ease;
}
.badges img:hover{
  transform:scale(1.05);
  filter:brightness(1.05);
}
/* ---------------- CAROUSEL (Swiper) ---------------- */
.carousel-wrap{
  max-width:1100px;
  margin:0 auto;
  padding:28px 0 8px;
}

.zai-swiper{
  width:100%;
  position:relative;
  overflow:visible;              /* mostra “pedaços” dos próximos slides */
  padding: 28px 0 44px;          /* espaço para as bolinhas */
}

.zai-swiper .swiper-wrapper{
  align-items:center;
}

.zai-swiper .swiper-slide{
  display:flex;
  justify-content:center;
}

.zai-swiper .swiper-slide img{
  width:260px;
  max-width:85vw;
  border-radius:26px;
  box-shadow:0 25px 70px rgba(0,0,0,.65);
}

/* destaque do slide ativo (se você usar centeredSlides) */
.zai-swiper .swiper-slide-active{
  transform:scale(1.06);
  z-index:2;
}

/* paginação: horizontal + gap */
.zai-swiper .swiper-pagination{
  position:relative;             /* evita absolute quebrado */
  bottom:auto !important;
  margin-top:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:10px;
}

.zai-swiper .swiper-pagination-bullet{
  width:8px;
  height:8px;
  margin:0 !important;           /* remove margins inline do Swiper */
  background:rgba(255,255,255,.35);
  opacity:1;
}

.zai-swiper .swiper-pagination-bullet-active{
  background:var(--brand);
}

@media (max-width:640px){
  .zai-swiper .swiper-slide img{ width:220px; }
}

.privacy-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 20px 80px;
  font-family: "Rhodium Libre", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #e8eef8;
  line-height: 1.5;
}

.privacy-content h1 {
  font-size: clamp(32px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: 32px;
  font-weight: 800;
  color: #78f06a;  
}

.privacy-content h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #78f06a;  
}

.privacy-content h3 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #78f06a;    
}

.privacy-content h4 {
  font-size: 18px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.privacy-content h5 {
  font-size: 16px;
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.privacy-content p {
  margin-bottom: 4px;
  font-size: 15px;
  color: #cfd7e3;
}

.privacy-content ul {
  margin: 16px 0 24px 22px;
}

.privacy-content li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #cfd7e3;
}

.privacy-content a {
  color: #78f06a;
  text-decoration: none;
  font-weight: 600;
}

.privacy-content strong {
  color: #ffffff;
}

@media (max-width: 640px) {
  .privacy-content {
    padding: 32px 16px 60px;
  }

  .privacy-content h1 {
    font-size: 28px;
  }
}
