:root{
    --bg:#0a0a0a;
    --panel:#121212;
    --panel-2:#161616;
    --border:#232323;
    --green:#22c55e;
    --green-dim:#16a34a;
    --green-glow: rgba(34,197,94,0.35);
    --amber:#f59e0b;
    --text:#f2f2f0;
    --muted:#9a9fa6;
    --dim:#55595f;
    --ease: cubic-bezier(.16,1,.3,1);
    --font-display:'Space Grotesk', sans-serif;
    --font-body:'Inter', sans-serif;
    --font-mono:'JetBrains Mono', monospace;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--bg);
    color:var(--text);
    font-family:var(--font-body);
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  a{color:inherit; text-decoration:none;}
  ::selection{background:var(--green); color:#0a0a0a;}
  :focus-visible{outline:2px solid var(--green); outline-offset:3px;}

  .wrap{max-width:1120px; margin:0 auto; padding:0 28px;}

  /* ---------- NAV ---------- */
  nav{
    position:fixed; top:0; left:0; right:0; z-index:50;
    padding:20px 0;
    background:linear-gradient(to bottom, rgba(10,10,10,.92), rgba(10,10,10,0));
    backdrop-filter:blur(6px);
  }
  .nav-inner{
    max-width:1120px; margin:0 auto; padding:0 28px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .logo{
    font-family:var(--font-display); font-weight:700; font-size:19px;
    letter-spacing:-0.02em;
    display:flex; align-items:baseline; gap:2px;
  }
  .logo .bracket{color:var(--green); font-family:var(--font-mono); font-weight:700;}
  .nav-cta{
    font-family:var(--font-mono); font-size:13px; font-weight:500;
    padding:9px 16px; border:1px solid var(--border); border-radius:6px;
    color:var(--muted);
    opacity:0; transform:translateY(-6px);
    transition: opacity .4s var(--ease), transform .4s var(--ease), border-color .2s, color .2s;
    pointer-events:none;
  }
  .nav-cta.show{opacity:1; transform:translateY(0); pointer-events:auto;}
  .nav-cta:hover{border-color:var(--green); color:var(--text);}

  /* ---------- HERO ---------- */
  .hero{
    min-height:100svh;
    display:flex; flex-direction:column; justify-content:center;
    padding:140px 0 80px;
    position:relative;
  }
  .eyebrow{
    font-family:var(--font-mono); font-size:12.5px; color:var(--green);
    display:flex; align-items:center; gap:9px; margin-bottom:22px;
    opacity:0; animation: fadeUp .7s var(--ease) .1s forwards;
  }
  .eyebrow::before{
    content:''; width:7px; height:7px; border-radius:50%;
    background:var(--green); box-shadow:0 0 8px var(--green-glow);
    animation: pulse 2s ease-in-out infinite;
  }
  h1{
    font-family:var(--font-display); font-weight:700;
    font-size:clamp(34px, 6vw, 62px);
    line-height:1.06; letter-spacing:-0.025em;
    max-width:900px;
    opacity:0; animation: fadeUp .8s var(--ease) .22s forwards;
  }
  h1 .accent{color:var(--green);}
  .hero-sub{
    font-size:17px; color:var(--muted); max-width:520px; margin-top:22px;
    opacity:0; animation: fadeUp .8s var(--ease) .38s forwards;
  }
  .hero-main{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    align-items:center;
    gap:48px;
    margin-top:24px;
  }
  .hero-copy{
    display:flex;
    flex-direction:column;
    gap:24px;
  }
  .hero-actions{
    display:flex; align-items:center; gap:18px;
    opacity:0; animation: fadeUp .8s var(--ease) .5s forwards;
  }
  .hero-3d-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0; animation: fadeUp .8s var(--ease) .6s forwards;
  }
  .b27-3d{
    font-family:'Space Grotesk','Arial Black',sans-serif;
    font-weight:900;
    font-size:200px;
    line-height:1;
    color:#22C55E;
    transform:rotateY(-18deg) rotateX(6deg);
    filter:drop-shadow(14px 18px 0 #0e481b) drop-shadow(0 30px 40px rgba(0,0,0,0.5));
    animation:b27sway 6s ease-in-out infinite alternate;
  }
  @keyframes b27sway{from{transform:rotateY(-18deg) rotateX(6deg)}to{transform:rotateY(-6deg) rotateX(2deg)}}
  @media (prefers-reduced-motion: reduce){.b27-3d{animation:none;}}
  @media (max-width:820px){
    .hero-main{grid-template-columns:1fr;}
    .hero-3d-wrapper{display:none;}
    .b27-3d{font-size:150px;}
    .hero{padding-top:140px;}
    .about{grid-template-columns:1fr;}
    .about-short{display:block; font-size:16px; color:var(--muted); margin-top:20px; text-align:center;}
    .about-full{display:none;}
    .avatar-slot{min-height:auto; padding:24px 16px; gap:8px;}
    .about-avatar{width:min(78vw, 220px); max-width:220px; margin:8px 0 4px;}
  }
  .btn-primary{
    font-family:var(--font-mono); font-weight:500; font-size:14px;
    background:var(--green); color:#08120a;
    padding:14px 22px; border-radius:7px;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    display:inline-flex; align-items:center; gap:8px;
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 10px 30px -8px var(--green-glow);}
  .btn-ghost{
    font-family:var(--font-mono); font-size:13.5px; color:var(--muted);
    border-bottom:1px solid var(--border); padding-bottom:2px;
    transition: color .2s, border-color .2s;
  }
  .btn-ghost:hover{color:var(--text); border-color:var(--muted);}

  @keyframes fadeUp{ from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:translateY(0);} }
  @keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:.35;} }
  @keyframes blink{ 50%{opacity:0;} }
  @keyframes typeIn{ from{opacity:0;} to{opacity:1;} }

  /* ---------- DEAL TERMINAL (fechar negocio) ---------- */
  /* Renomeado de .dt-* / .step / .cmd / .res para .deal-* para nao colidir
     com o .step da secao "como funciona" mais abaixo neste arquivo. */
  .deal-window{
    background:#18181B;
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    max-width:520px;
    font-family:'JetBrains Mono',monospace;
    overflow:hidden;
    margin-top:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.28);
  }
  .deal-bar{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 16px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:#111314;
  }
  .deal-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    display:inline-block;
  }
  .deal-dot.r{background:#FF5F57;}
  .deal-dot.y{background:#FEBC2E;}
  .deal-dot.g{background:#28C840;}
  .deal-title{
    font-size:12px;
    color:#8f99a5;
    margin-left:8px;
    text-transform:lowercase;
  }
  .deal-body{
    padding:20px 18px;
    font-size:14px;
    line-height:1.85;
    color:#e5f0df;
  }
  .deal-step{
    position:relative;
    height:1.4em;
    padding:10px 0;
    opacity:0;
    transform:translateY(4px);
    animation:appear .4s var(--ease) forwards;
  }
  .deal-cmd{
    color:#38BDF8;
    animation:vanish .3s ease forwards;
  }
  .deal-res{
    position:absolute;
    left:0;
    top:10px;
    color:#22C55E;
    opacity:0;
    animation:appear .3s ease forwards;
  }
  .deal-cursor{
    display:inline-block;
    width:8px;
    height:15px;
    background:#22C55E;
    vertical-align:middle;
    margin-left:4px;
    animation:blk 1s step-end infinite;
  }
  @keyframes appear{to{opacity:1;transform:translateY(0)}}
  @keyframes vanish{to{opacity:0}}
  @keyframes blk{50%{opacity:0}}
  .ds1{animation-delay:.2s} .ds1 .deal-cmd{animation-delay:1.0s} .ds1 .deal-res{animation-delay:1.3s}
  .ds2{animation-delay:1.8s} .ds2 .deal-cmd{animation-delay:2.6s} .ds2 .deal-res{animation-delay:2.9s}
  .ds3{animation-delay:3.4s} .ds3 .deal-cmd{animation-delay:4.2s} .ds3 .deal-res{animation-delay:4.5s}
  .ds4{animation-delay:5.0s} .ds4 .deal-cmd{animation-delay:5.8s} .ds4 .deal-res{animation-delay:6.1s}
  .ds5{animation-delay:6.6s} .ds5 .deal-cmd{animation-delay:7.4s} .ds5 .deal-res{animation-delay:7.7s}
  .ds6{animation-delay:8.2s}
  @media (prefers-reduced-motion: reduce){
    .deal-step{animation:none;opacity:1;transform:none}
    .deal-cmd{display:none}
    .deal-res{position:static;opacity:1;animation:none}
  }

  /* ---------- SECTION SHELL ---------- */
  section{padding:96px 0;}
  .section-head{max-width:560px; margin-bottom:52px;}
  .kicker{
    font-family:var(--font-mono); font-size:12px; color:var(--green);
    text-transform:uppercase; letter-spacing:.08em; margin-bottom:14px;
  }
  h2{
    font-family:var(--font-display); font-weight:600;
    font-size:clamp(24px, 3.4vw, 34px); letter-spacing:-0.02em;
  }
  .section-sub{color:var(--muted); font-size:15.5px; margin-top:12px;}

  .reveal{opacity:0; transform:translateY(22px); transition:opacity .7s var(--ease), transform .7s var(--ease);}
  .reveal.in{opacity:1; transform:translateY(0);}

  .tag-close{
    font-family:var(--font-mono); font-size:12px; color:var(--dim);
    margin-top:48px; opacity:.7;
  }

  /* ---------- SOBRE MIM ---------- */
  .about{display:grid; grid-template-columns:0.75fr 1.25fr; gap:52px; align-items:center;}
  .avatar-slot{
    aspect-ratio:1/1; border:1px dashed var(--border); border-radius:12px;
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
    background:var(--panel); color:var(--dim); font-family:var(--font-mono); font-size:12.5px;
    text-align:center; padding:20px; overflow:hidden; min-height:320px;
  }
  .avatar-slot .bracket-big{font-size:30px; color:var(--green); opacity:.7;}
  .about-avatar{
    width:min(100%, 250px);
    max-width:250px;
    aspect-ratio:1 / 1;
    object-fit:cover;
    display:block;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 40px rgba(0,0,0,.25);
    margin:6px 0;
  }
  .about-instagram{
    font-family:var(--font-mono);
    font-size:12px;
    color:var(--green);
    margin-top:4px;
    transition: opacity .2s ease;
  }
  .about-instagram:hover{opacity:.8;}
  .about-text p{color:var(--muted); font-size:15.5px; margin-bottom:16px; max-width:520px;}
  .about-text p strong{color:var(--text); font-weight:600;}
  .about-tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:22px;}
  .about-tag{
    font-family:var(--font-mono); font-size:12px; color:var(--green);
    border:1px solid rgba(34,197,94,.3); background:rgba(34,197,94,.08);
    padding:5px 10px; border-radius:6px;
  }
  .about-short{display:none;}
  .about-full{display:block;}

  /* ---------- FEEDBACKS ---------- */
  .feedbacks{
    overflow:hidden;
    position:relative;
    padding:6px 0;
  }
  .feedbacks-track{
    display:flex;
    gap:20px;
    width:max-content;
    animation:feedbacks-scroll 24s linear infinite;
    will-change:transform;
    transform:translate3d(0,0,0);
    padding-bottom:4px;
  }
  .review-card{
    background:var(--panel); border:1px solid var(--border); border-radius:12px;
    padding:24px; font-family:var(--font-mono); font-size:13px; line-height:1.7;
  }
  .review-card.placeholder{border-style:dashed; color:var(--dim);}
  .review-head{display:flex; justify-content:space-between; align-items:center; margin-bottom:14px;}
  .review-name{color:var(--text); font-weight:500; font-family:var(--font-body); font-size:14.5px;}
  .review-stars{color:var(--amber); font-size:12px; letter-spacing:1px;}
  .review-quote{color:var(--muted); font-family:var(--font-body); font-size:14.5px; line-height:1.65;}
  .review-card.placeholder .review-quote{font-style:italic;}
  .review-field{color:var(--dim);}
  .review-field .k{color:var(--green);}

  .review-shot-card{
    background:var(--panel); border:1px solid var(--border); border-radius:12px;
    padding:10px;
    flex:0 0 min(560px, 88vw);
    max-width:min(560px, 88vw);
    width:min(560px, 88vw);
    display:flex;
    flex-direction:column;
    gap:10px;
    align-self:stretch;
  }
  .review-shot-card img{
    width:100%;
    height:auto;
    object-fit:contain;
    border-radius:8px;
    display:block;
  }
  .review-shot-label{
    font-family:var(--font-mono); font-size:11.5px; color:var(--dim);
    display:flex; align-items:center; gap:8px;
  }
  .review-shot-label::before{
    content:''; width:6px; height:6px; border-radius:50%; background:var(--green);
    box-shadow:0 0 6px var(--green-glow);
  }
  .review-author{
    font-family:var(--font-mono); font-size:12px; color:var(--green);
    margin-top:auto;
  }

  @keyframes feedbacks-scroll{
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-50%, 0, 0); }
  }

  @media (max-width: 720px){
    .feedbacks{padding:6px 0 10px;}
    .feedbacks-track{gap:12px;}
    .review-shot-card{
      flex-basis:min(86vw, 100%);
      max-width:min(86vw, 100%);
      width:min(86vw, 100%);
      padding:8px;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .feedbacks-track{animation:none; transform:none; width:100%; flex-wrap:wrap;}
    .review-shot-card{flex:1 1 100%; max-width:none;}
  }

  /* ---------- SERVICES ---------- */
  .services{
    display:grid; grid-template-columns:repeat(3, 1fr); gap:1px;
    background:var(--border); border:1px solid var(--border); border-radius:12px;
    overflow:hidden;
  }
  .service{
    background:var(--panel); padding:30px 26px;
    transition: background .25s var(--ease);
  }
  .service:hover{background:var(--panel-2);}
  .service-mark{
    font-family:var(--font-mono); color:var(--green); font-size:13px; margin-bottom:16px;
  }
  .service h3{
    font-family:var(--font-display); font-weight:600; font-size:18px; margin-bottom:10px;
  }
  .service p{color:var(--muted); font-size:14.5px; line-height:1.6;}
  .service-cta{
    display:inline-flex;
    margin-top:18px;
    font-family:var(--font-mono);
    font-size:12.5px;
    color:var(--green);
    border:1px solid rgba(34,197,94,.25);
    padding:8px 12px;
    border-radius:999px;
    width:max-content;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
  }
  .service-cta:hover{background:rgba(34,197,94,.08); border-color:var(--green); color:var(--text);}
  .service-chat{display:flex; flex-direction:column; gap:12px;}
  .service-demo{
    margin-top:8px;
    padding:12px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    background:rgba(255,255,255,.03);
    display:flex;
    flex-direction:column;
    gap:10px;
  }
  .demo-site .demo-phone{
    width:100%;
    max-width:220px;
    margin:0 auto;
    border-radius:20px;
    padding:8px;
    background:#101012;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 12px 30px rgba(0,0,0,.25);
  }
  .demo-site .demo-screen{
    border-radius:14px;
    padding:12px;
    background:#18181B;
    min-height:170px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
  }
  .demo-site .demo-topbar{height:6px; border-radius:999px; background:rgba(255,255,255,.08); width:40%;}
  .demo-site .demo-hero{display:flex; flex-direction:column; gap:8px;}
  .demo-site .demo-pill{
    width:max-content; padding:5px 8px; border-radius:999px; background:rgba(34,197,94,.14); color:var(--green);
    font-family:var(--font-mono); font-size:10px; text-transform:uppercase; letter-spacing:.08em;
  }
  .demo-site h4{
    font-family:var(--font-display); font-size:18px; line-height:1.05; color:#f6f6f2;
  }
  .demo-site p{font-size:12.5px; color:var(--muted); line-height:1.45;}
  .demo-site .demo-stats{
    display:flex; justify-content:flex-end;
  }
  .demo-site .demo-stats span{
    font-family:var(--font-mono); font-size:11px; color:var(--green); background:rgba(34,197,94,.1); padding:4px 8px; border-radius:999px;
  }
  .chat-demo{gap:8px;}
  .chat-bubble{
    max-width:88%;
    padding:8px 10px;
    border-radius:10px;
    font-size:13px;
    line-height:1.4;
  }
  .chat-bubble.bot{background:#1b2a1d; color:#dff7e4; align-self:flex-start;}
  .chat-bubble.user{background:#0f3d23; color:#f4fff6; align-self:flex-end;}
  .chat-options{display:flex; flex-wrap:wrap; gap:8px; margin-top:4px;}
  .chat-options span{
    font-family:var(--font-mono); font-size:11px; color:var(--green);
    border:1px solid rgba(34,197,94,.2); border-radius:999px; padding:5px 8px;
  }
  .demo-ai{display:grid; grid-template-columns:0.9fr 1.1fr; align-items:center; gap:10px;}
  .demo-pdf{
    border:1px solid rgba(255,255,255,.08); border-radius:10px; padding:10px; background:#121214; min-height:110px;
    display:flex; flex-direction:column; justify-content:center; gap:8px;
  }
  .pdf-lines{
    height:8px; border-radius:999px; background:rgba(255,255,255,.12); width:100%;
    filter:blur(0.3px);
  }
  .pdf-lines.short{width:72%;}
  .demo-result{
    display:flex; flex-direction:column; gap:6px; font-family:var(--font-mono); font-size:11.5px; color:#dfe9de;
  }
  .demo-result span{padding:6px 8px; background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.2); border-radius:8px;}
  .services-note{
    font-family:var(--font-mono); font-size:13.5px; color:var(--dim);
    margin-top:32px; text-align:center;
  }

  #porque .services-why{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  /* ---------- PROOF ---------- */
  .proof{
    display:grid; grid-template-columns:1.1fr 0.9fr; gap:52px; align-items:center;
  }
  .proof-card{
    background:var(--panel); border:1px solid var(--border); border-radius:12px;
    padding:26px;
  }
  .proof-url{
    font-family:var(--font-mono); font-size:12.5px; color:var(--dim);
    display:flex; align-items:center; gap:8px; margin-bottom:18px;
  }
  .status-chip{
    font-family:var(--font-mono); font-size:11px; color:var(--green);
    background:rgba(34,197,94,.1); border:1px solid rgba(34,197,94,.3);
    padding:3px 8px; border-radius:20px;
  }
  .proof-checks{display:flex; flex-direction:column; gap:10px;}
  .check-row{
    display:flex; align-items:center; gap:10px;
    font-family:var(--font-mono); font-size:13px; color:var(--muted);
    padding:9px 0; border-top:1px solid var(--border);
  }
  .check-row:first-child{border-top:none;}
  .check-row .tick{color:var(--green);}
  .proof-text h2{margin-bottom:16px;}
  .proof-text p{color:var(--muted); font-size:15.5px; margin-bottom:16px;}
  .proof-text p strong{color:var(--text); font-weight:600;}
  .credential{
    display:flex; gap:14px; margin-top:28px; padding-top:24px; border-top:1px solid var(--border);
  }
  .credential-num{font-family:var(--font-mono); color:var(--green); font-size:20px; font-weight:700;}
  .credential-label{font-size:13px; color:var(--muted); max-width:220px;}

  /* ---------- PROCESS ---------- */
  .process{display:flex; flex-direction:column;}
  .step{
    display:grid; grid-template-columns:64px 1fr; gap:22px;
    padding:26px 0; border-top:1px solid var(--border);
  }
  .step:last-child{border-bottom:1px solid var(--border);}
  .step-num{font-family:var(--font-mono); color:var(--green); font-size:14px; padding-top:2px;}
  .step h3{font-family:var(--font-display); font-size:18px; font-weight:600; margin-bottom:6px;}
  .step p{color:var(--muted); font-size:14.5px; max-width:520px;}

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    text-align:left;
    background:var(--panel); border:1px solid var(--border); border-radius:16px;
    padding:56px 48px; position:relative; overflow:hidden;
  }
  .final-cta::before{
    content:''; position:absolute; top:-40%; right:-10%; width:420px; height:420px;
    background:radial-gradient(circle, var(--green-glow), transparent 70%);
    opacity:.4; pointer-events:none;
  }
  .final-cta h2{max-width:480px; margin-bottom:14px; position:relative;}
  .final-cta p{color:var(--muted); max-width:440px; margin-bottom:28px; position:relative;}
  .final-cta .btn-primary{position:relative;}

  footer{
    padding:36px 0 48px;
    display:flex; align-items:center; justify-content:space-between;
    border-top:1px solid var(--border);
    font-family:var(--font-mono); font-size:12.5px; color:var(--dim);
  }

  @media (max-width:820px){
    .services{grid-template-columns:1fr;}
    #porque .services-why{grid-template-columns:1fr;}
    .proof{grid-template-columns:1fr; gap:32px;}
    .about{grid-template-columns:1fr; gap:24px; align-items:start;}
    .avatar-slot{
      aspect-ratio:auto;
      min-height:220px;
      padding:24px;
      order:-1;
    }
    .about-text p{font-size:15px; margin-bottom:14px;}
    .about-tags{margin-top:16px; gap:7px;}
    .about-tag{font-size:11.5px; padding:6px 10px;}
    footer{flex-direction:column; gap:10px; text-align:center;}
  }

  @media (prefers-reduced-motion: reduce){
    *{animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important;}
    .reveal{opacity:1; transform:none;}
    .term-line{opacity:1;}
  }