  @font-face{
      font-family:"Inter";
      src:url("fonts/inter.woff2") format("woff2");
      font-display:swap;
  }

  @font-face{
      font-family:"Oswald";
      src:url("fonts/oswald.woff2") format("woff2");
      font-display:swap;
  }

  :root{
    --ink:#0B0C0E;
    --panel:#15171B;
    --panel-2:#1C1F24;
    --blue:#1E6BFF;
    --blue-deep:#0B3FBF;
    --shine:#5FE1FF;
    --chrome:#C9CED6;
    --white:#F4F5F7;
    --muted:#8A909B;
    --line:rgba(201,206,214,0.12);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--ink);
    color:var(--white);
    font-family:'Inter', sans-serif;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{
    font-family:'Oswald', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.02em;
    line-height:1.05;
  }
  .mono{letter-spacing:0.02em;}
  a{color:inherit; text-decoration:none;}
  img,svg{display:block; max-width:100%;}
  .wrap{max-width:1160px; margin:0 auto; padding:0 24px;}

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:100;
    background:rgba(11,12,14,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px; max-width:1160px; margin:0 auto;
  }
  .logo{display:flex; align-items:center; gap:10px;}
  .logo-mark{
    width:38px; height:38px; border-radius:50%;
    background:radial-gradient(circle at 35% 30%, #1a1c20, #000 70%);
    border:1px solid var(--line);
    position:relative;
    flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
    font-family:'Oswald'; font-weight:700; font-size:18px;
    color:var(--shine);
  }
  .logo-text{font-family:'Oswald'; font-weight:600; font-size:17px; letter-spacing:0.03em; text-transform:uppercase;}
  .logo-text span{color:var(--shine);}
  .logo-img{
    width:auto;
    max-width:180px;
    object-fit:contain;
  }
  footer .logo-img{height:34px;}
  .nav-links{display:flex; gap:32px; font-size:14px; color:var(--chrome);}
  .nav-links a:hover{color:var(--shine);}
  .nav-cta{
    display:flex; align-items:center; gap:8px;
    background:var(--blue); color:#fff;
    padding:10px 18px; border-radius:6px;
    font-weight:600; font-size:14px;
    transition:transform .2s ease, background .2s ease;
    white-space:nowrap;
  }
  .nav-cta:hover{background:#3579ff; transform:translateY(-1px);}
  @media (max-width:820px){ .nav-links{display:none;} }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:100px 24px 120px;
    background:
      linear-gradient(90deg, rgba(11,12,14,0.96) 0%, rgba(11,12,14,0.88) 38%, rgba(11,12,14,0.58) 68%, rgba(11,12,14,0.82) 100%),
      linear-gradient(180deg, rgba(11,12,14,0.72) 0%, rgba(11,12,14,0.22) 46%, rgba(11,12,14,0.9) 100%),
      radial-gradient(1200px 500px at 15% -10%, rgba(30,107,255,0.16), transparent 60%),
      radial-gradient(900px 500px at 90% 0%, rgba(95,225,255,0.12), transparent 55%),
      var(--hero-bg),
      var(--ink);
    background-size:auto, auto, auto, auto, cover, auto;
    background-position:center, center, center, center, right center, center;
    background-repeat:no-repeat;
    overflow:hidden;
  }
  .shine-sweep{
    position:absolute;
    inset:0;
    left:0;
    width:40%;
    height:100%;
    background:linear-gradient(100deg, transparent, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0.06) 55%, transparent);
    transform:translateX(-180%) skewX(-18deg);
    will-change:transform;
    animation:sweep 5.5s ease-in-out infinite;
    pointer-events:none;
  }
  @keyframes sweep{
    0%{transform:translateX(-180%) skewX(-18deg);}
    35%{transform:translateX(320%) skewX(-18deg);}
    100%{transform:translateX(320%) skewX(-18deg);}
  }
  .hero-inner{max-width:1160px; margin:0 auto; position:relative; z-index:2;}
  .badge{
    display:inline-flex; align-items:center; gap:8px;
    border:1px solid var(--line); border-radius:999px;
    padding:7px 14px; font-size:12.5px; color:var(--chrome);
    margin-bottom:28px;
  }
  .badge b{color:var(--shine); font-weight:600;}
  .hero h1{
    font-size:clamp(38px, 6vw, 68px);
    max-width:820px;
    font-weight:700;
  }
  .hero h1 em{
    font-style:normal;
    background:linear-gradient(90deg, var(--shine), var(--blue));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .hero p.sub{
    margin-top:22px; font-size:17px; color:var(--chrome);
    max-width:520px; line-height:1.6;
  }
  .hero-ctas{
    display:flex;
    gap:14px;
    margin-top:38px;
    flex-wrap:wrap;
    align-items:center;
    min-height:58px;
  }
  .btn-primary{
    background:var(--blue); color:#fff; font-weight:700; font-size:15px;
    padding:16px 26px; border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    min-width:210px;
    box-shadow:0 8px 30px -8px rgba(30,107,255,0.6);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-primary:hover{transform:translateY(-2px); box-shadow:0 12px 34px -6px rgba(30,107,255,0.75);}
  .btn-secondary{
    border:1px solid var(--line); color:var(--white); font-weight:600; font-size:15px;
    padding:16px 26px; border-radius:8px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:54px;
    min-width:180px;
    transition:border-color .2s ease, color .2s ease;
  }
  .btn-secondary:hover{border-color:var(--shine); color:var(--shine);}
  .hero-stats{
    width:min(720px, 100%);
    margin-top:64px;
    overflow:hidden;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  }
  .hero-stats-track{
    display:flex;
    width:max-content;
    gap:44px;
    animation:stats-scroll 18s linear infinite;
  }
  .hero-stats:hover .hero-stats-track{animation-play-state:paused;}
  .hero-stat-item{
    flex:0 0 auto;
    min-width:210px;
    border-left:2px solid var(--blue);
    padding-left:14px;
  }
  .hero-stats .num{font-family:'Oswald'; font-size:26px; font-weight:600;}
  .hero-stats .lbl{font-size:12.5px; color:var(--muted); margin-top:2px;}
  @keyframes stats-scroll{
    from{transform:translateX(0);}
    to{transform:translateX(calc(-50% - 22px));}
  }
  @media (prefers-reduced-motion: reduce){
    .hero-stats-track{animation:none;}
  }

  /* section generic */
  section{padding:96px 0;}
  .eyebrow{
    font-size:12.5px; color:var(--shine);
    text-transform:uppercase; letter-spacing:0.12em; margin-bottom:14px;
    display:flex; align-items:center; gap:10px;
  }
  .eyebrow::before{content:''; width:24px; height:1px; background:var(--shine);}
  .section-head{max-width:600px; margin-bottom:56px;}
  .section-head h2{font-size:clamp(28px,4vw,42px); font-weight:600;}
  .section-head p{color:var(--chrome); margin-top:14px; font-size:15.5px; line-height:1.6;}

  /* wipe divider - como uma passada de rodo entre seÃ§Ãµes */
  .wipe{
    height:64px; margin-top:-1px;
    background:var(--ink);
    clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0% 100%);
  }

  /* ---------- SERVICES ---------- */
  .services-section{background:var(--panel);}
  .services-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
    background:var(--line); border:1px solid var(--line); border-radius:12px; overflow:hidden;
  }
  @media (max-width:860px){ .services-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .services-grid{grid-template-columns:1fr;} }
  .service-card{
    background:var(--panel-2);
    min-height:260px;
    padding:0;
    transition:transform .25s ease;
    position:relative;
    overflow:hidden;
    isolation:isolate;
  }
  .service-card:hover{transform:translateY(-2px);}
  .service-bg{
    position:absolute; inset:0;
    background:
      linear-gradient(180deg, rgba(11,12,14,0.08), rgba(11,12,14,0.72)),
      linear-gradient(90deg, rgba(11,12,14,0.62), rgba(11,12,14,0.18)),
      var(--service-bg, linear-gradient(135deg,#20242b,#111317));
    background-size:cover;
    background-position:center;
    transform:scale(1.02);
    transition:transform .35s ease, filter .35s ease;
    z-index:-1;
  }
  .service-card:hover .service-bg{
    transform:scale(1.07);
    filter:saturate(1.08);
  }
  .service-content{
    min-height:260px;
    padding:28px 24px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
  }
  .service-card h3{font-size:20px; font-weight:600; text-transform:none; letter-spacing:0; text-shadow:0 2px 10px rgba(0,0,0,0.45);}
  .service-card p{font-size:14px; color:var(--chrome); margin-top:10px; line-height:1.55; max-width:31ch; text-shadow:0 2px 10px rgba(0,0,0,0.45);}
  .service-gallery-btn{
    width:max-content;
    margin-top:18px;
    border:1px solid rgba(95,225,255,0.55);
    border-radius:6px;
    background:rgba(11,12,14,0.58);
    color:var(--white);
    padding:10px 14px;
    font:700 13px 'Inter', sans-serif;
    cursor:pointer;
    transition:background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .service-gallery-btn:hover{
    background:var(--blue);
    border-color:var(--blue);
    transform:translateY(-1px);
  }
  .modal-aberto{overflow:hidden;}
  .service-modal{
    position:fixed;
    inset:0;
    z-index:500;
    display:none;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(0,0,0,0.78);
    backdrop-filter:blur(8px);
  }
  .service-modal.aberto{display:flex;}
  .service-modal-panel{
    width:min(1080px, calc((100vh - 96px) * 0.8), 100%);
    border:1px solid var(--line);
    border-radius:14px;
    overflow:hidden;
    background:var(--panel);
    box-shadow:0 24px 80px rgba(0,0,0,0.55);
    position:relative;
  }
  .service-modal-close{
    position:absolute;
    top:12px;
    right:12px;
    z-index:3;
    width:38px;
    height:38px;
    border:1px solid rgba(255,255,255,0.18);
    border-radius:50%;
    background:rgba(0,0,0,0.55);
    color:#fff;
    font-size:28px;
    line-height:1;
    cursor:pointer;
  }
  .service-modal-media{
    position:relative;
    background:#050608;
    aspect-ratio:1080/1350;
  }
  .service-modal-img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  .service-modal-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:42px;
    height:54px;
    border:1px solid rgba(255,255,255,0.2);
    background:rgba(0,0,0,0.48);
    color:#fff;
    font-size:34px;
    cursor:pointer;
  }
  .service-modal-nav:disabled{opacity:.25; cursor:default;}
  .service-modal-prev{left:14px;}
  .service-modal-next{right:14px;}
  .service-modal-info{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 22px;
  }
  .service-modal-info h3{font-size:20px; text-transform:none; letter-spacing:0;}
  .service-modal-count{font-size:13px; color:var(--muted);}

  /* ---------- GALLERY / ANTES-DEPOIS ---------- */
  .gallery-section{background:var(--ink);}
  .ba-wrap{
    position:relative; border-radius:14px; overflow:hidden;
    border:1px solid var(--line);
    aspect-ratio:16/8; cursor:ew-resize;
    background:var(--panel-2);
  }
  .ba-before, .ba-after{
    position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
    flex-direction:column; gap:10px;
  }
  .ba-before{background:linear-gradient(135deg,#26282c,#1a1c20);}
  .ba-after{background:linear-gradient(135deg,#0b3fbf,#0a1a3d); overflow:hidden;}
  .ba-after.tem-foto::after, .ba-before.tem-foto::after{ content:none; }
  .ba-after:not(.tem-foto)::after{
    content:''; position:absolute; inset:0;
    background:linear-gradient(120deg, transparent 30%, rgba(95,225,255,0.35) 45%, transparent 60%);
    animation:sweep2 3.2s ease-in-out infinite;
  }
  @keyframes sweep2{0%{transform:translateX(-60%);} 100%{transform:translateX(60%);}}
  .ba-after{ clip-path: inset(0 0 0 50%); }
  .ba-photo{position:absolute; inset:0; width:100%; height:100%; object-fit:cover;}
  .ba-label{
    font-size:12px; letter-spacing:0.1em;
    padding:6px 12px; border-radius:999px; background:rgba(0,0,0,0.4);
    position:relative; z-index:2;
  }
  .ba-tag-before{position:absolute; top:16px; left:16px; z-index:3;}
  .ba-tag-after{position:absolute; top:16px; right:16px; z-index:3;}
  .ba-handle{
    position:absolute; top:0; bottom:0; left:50%;
    width:3px; background:var(--white);
    box-shadow:0 0 12px rgba(255,255,255,0.6);
    z-index:3;
  }
  .ba-handle::after{
    content:'⟷'; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:38px; height:38px; border-radius:50%; background:#fff; color:#000;
    display:flex; align-items:center; justify-content:center; font-size:16px; font-weight:700;
  }
  .ba-caption{
    text-align:center; font-size:13px; color:var(--muted); margin-top:16px;
  }
  .car-silhouette{width:110px; height:auto; opacity:0.9;}

  /* ---------- WHY / DIFERENCIAIS ---------- */
  .diff-section{background:var(--panel);}
  .diff-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
  @media (max-width:900px){ .diff-grid{grid-template-columns:repeat(2,1fr);} }
  @media (max-width:560px){ .diff-grid{grid-template-columns:1fr;} }
  .diff-card{padding:6px;}
  .diff-card h3{font-size:16px; font-weight:600; margin-top:0; text-transform:none; letter-spacing:0;}
  .diff-card p{font-size:13.5px; color:var(--muted); margin-top:8px; line-height:1.5;}

  /* ---------- REVIEWS ---------- */
  .reviews-section{background:var(--ink);}
  .reviews-top{
    display:flex; align-items:center; gap:20px; margin-bottom:44px; flex-wrap:wrap;
  }
  .rating-box{
    display:flex; align-items:center; gap:16px;
    border:1px solid var(--line); border-radius:12px; padding:20px 26px;
    background:var(--panel-2);
  }
  .rating-num{font-family:'Oswald'; font-size:42px; font-weight:700; color:var(--shine);}
  .stars{color:#FFC53D; font-size:18px; letter-spacing:2px;}
  .rating-sub{font-size:13px; color:var(--muted); margin-top:4px;}
  .review-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
  @media (max-width:860px){ .review-grid{grid-template-columns:1fr;} }
  .review-card{
    border:1px solid var(--line); border-radius:12px; padding:24px;
    background:var(--panel-2);
  }
  .review-card .stars{margin-bottom:14px; display:block;}
  .review-card p{font-size:14.5px; color:var(--chrome); line-height:1.6; font-style:italic;}
  .review-card .author{margin-top:16px; font-size:13px; color:var(--muted); font-style:normal;}

  /* ---------- LOCATION ---------- */
  .loc-section{background:var(--panel);}
  .loc-grid{display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start;}
  @media (max-width:900px){ .loc-grid{grid-template-columns:1fr;} }
  .loc-item{display:flex; gap:16px; padding:18px 0; border-bottom:1px solid var(--line);}
  .loc-item:last-child{border-bottom:none;}
  .loc-icon{width:22px; height:22px; color:var(--shine); flex-shrink:0; margin-top:2px;}
  .loc-item h4{font-size:14.5px; font-weight:600; text-transform:none; letter-spacing:0;}
  .loc-item p, .loc-item a{font-size:14px; color:var(--muted); margin-top:4px;}
  .loc-item a:hover{color:var(--shine);}
  .hours-table{width:100%; border-collapse:collapse; margin-top:8px;}
  .hours-table td{padding:6px 0; font-size:13.5px; color:var(--muted);}
  .hours-table tr.today td{color:var(--shine);}
  .map-box{
    border-radius:14px; overflow:hidden; border:1px solid var(--line);
    aspect-ratio:4/3.2; background:var(--panel-2);
  }
  .map-box iframe{width:100%; height:100%; border:0; filter:grayscale(0.3) invert(0.92) contrast(0.9);}

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background:linear-gradient(135deg, var(--blue-deep), #071026);
    text-align:center; position:relative; overflow:hidden;
  }
  .final-cta h2{font-size:clamp(30px,5vw,50px); max-width:640px; margin:0 auto 20px;}
  .final-cta p{color:var(--chrome); max-width:480px; margin:0 auto 34px; font-size:15.5px;}

  /* ---------- FOOTER ---------- */
  footer{background:var(--ink); border-top:1px solid var(--line); padding:44px 0 30px;}
  .footer-inner{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
  .footer-tag{font-size:13px; color:var(--muted); max-width:340px;}
  .footer-links{display:flex; gap:22px; font-size:13.5px; color:var(--chrome);}
  .footer-links a:hover{color:var(--shine);}

  /* whatsapp flutuante */
  .floating-wa{
    position:fixed; bottom:22px; right:22px; z-index:200;
    background:#25D366; width:58px; height:58px; border-radius:50%;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px -6px rgba(0,0,0,0.6);
    transition:transform .2s ease;
  }
  .floating-wa:hover{transform:scale(1.08);}
  .floating-wa svg{width:28px; height:28px; fill:#fff;}

  .fade-in{opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease;}
  .fade-in.visible{opacity:1; transform:translateY(0);}

  /* aviso de erro de configuraÃ§Ã£o (sÃ³ aparece se algo estiver errado no CONFIG) */
  .config-erro{
    position:fixed; inset:0; z-index:999; background:#1a0000; color:#ffb3b3;
    font-family:'JetBrains Mono', monospace; padding:40px; overflow:auto; font-size:13px; line-height:1.6;
  }
