:root{
  --bg:#05060A;
  --panel: rgba(255,255,255,.045);
  --panel2: rgba(255,255,255,.06);
  --text:#F2F5FF;
  --muted: rgba(242,245,255,.68);
  --accent:#1E7BFF;
  --accent2:#59D6FF;
  --good:#58f3c7;
  --shadow: 0 24px 70px rgba(0,0,0,.62);
  --radius: 22px;
  --radius2: 28px;
  --max: 1120px;

  --mx: 50vw;
  --my: 20vh;
}


*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    linear-gradient(180deg,
      #05060A 0%,
      #050A14 25%,
      #071427 60%,
      #05060A 100%),
    radial-gradient(900px 620px at 50% -10%, rgba(30,123,255,.10), transparent 62%),
    radial-gradient(820px 560px at 88% 12%, rgba(89,214,255,.06), transparent 60%),
    radial-gradient(900px 600px at 12% 92%, rgba(30,123,255,.06), transparent 62%);
  overflow-x:hidden;
}

/* Glow suave (bem discreto) que segue o mouse */
body:after{
  content:"";
  position:fixed; inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(360px 260px at var(--mx) var(--my), rgba(47,215,255,.12), transparent 65%),
    radial-gradient(520px 340px at calc(var(--mx) + 10vw) calc(var(--my) + 10vh), rgba(13,83,160,.12), transparent 70%);
  mix-blend-mode: screen;
  opacity:.45;
  transition: opacity .2s ease;
}

/* ===== Aurora Premium Background ===== */
.bg-aurora{
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  opacity: .95;
}
.bg-aurora span{
  position:absolute;
  width: 62vmax;
  height: 62vmax;
  border-radius: 999px;
  filter: blur(85px);
  mix-blend-mode: screen;
  opacity: .28;
  transform: translate3d(0,0,0);
}
.bg-aurora .a1{
  left: -22vmax;
  top: -22vmax;
  background: radial-gradient(circle at 30% 30%,
    rgba(47,215,255,.85),
    rgba(47,215,255,.18) 35%,
    transparent 65%);
  animation: auroraFloat1 18s ease-in-out infinite;
}
.bg-aurora .a2{
  right: -24vmax;
  top: -20vmax;
  background: radial-gradient(circle at 35% 35%,
    rgba(13,83,160,.90),
    rgba(13,83,160,.22) 40%,
    transparent 70%);
  animation: auroraFloat2 22s ease-in-out infinite;
}
.bg-aurora .a3{
  left: -10vmax;
  bottom: -26vmax;
  background: radial-gradient(circle at 40% 40%,
    rgba(88,243,199,.70),
    rgba(88,243,199,.16) 38%,
    transparent 70%);
  animation: auroraFloat3 24s ease-in-out infinite;
}
@keyframes auroraFloat1{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(10vmax, 6vmax) scale(1.08); }
}
@keyframes auroraFloat2{
  0%,100%{ transform: translate(0,0) scale(1.02); }
  50%{ transform: translate(-12vmax, 8vmax) scale(1.10); }
}
@keyframes auroraFloat3{
  0%,100%{ transform: translate(0,0) scale(1); }
  50%{ transform: translate(8vmax, -10vmax) scale(1.12); }
}

/* Grain ultra discreto (premium) */
body:before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  opacity:.07;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.08) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

a{ color:inherit; text-decoration:none; }
.container{ width: min(var(--max), calc(100% - 40px)); margin:0 auto; }

/* Mantém conteúdo acima do fundo */
.topbar, main, section, footer, .cursor-glow, .progress, .wa { position: relative; z-index: 5; }

/* Progress bar */
.progress{
  position:fixed; top:0; left:0; right:0;
  height:3px;
  z-index: 100;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}
.progress span{
  display:block;
  height:100%;
  width:0%;
  background: linear-gradient(90deg, rgba(47,215,255,.75), rgba(13,83,160,.95));
  box-shadow: 0 8px 30px rgba(47,215,255,.20);
}

/* Cursor glow */
.cursor-glow{
  position:fixed;
  width: 240px; height: 240px;
  border-radius: 999px;
  pointer-events:none;
  background: radial-gradient(circle, rgba(47,215,255,.14), transparent 62%);
  filter: blur(2px);
  transform: translate(-9999px,-9999px);
  opacity: .65;
  z-index: 6;
}

/* Topbar */
.topbar{
  position:sticky; top:0;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(5,6,10,.82), rgba(5,6,10,.45));
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

/* Logo shimmer wrapper */
.brand{ display:flex; align-items:center; gap:12px; min-width: 220px; }
.logo-wrap{
  width:42px; height:42px;
  display:inline-grid; place-items:center;
  border-radius: 16px;
  position:relative;
}
.logo-wrap:after{
  content:"";
  position:absolute; inset:-12px;
  background: radial-gradient(22px 22px at 30% 30%, rgba(47,215,255,.18), transparent 60%),
              radial-gradient(28px 28px at 70% 80%, rgba(13,83,160,.14), transparent 60%);
  filter: blur(6px);
  opacity:.85;
  pointer-events:none;
}
.logo-wrap:before{
  content:"";
  position:absolute; inset:-2px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.20) 45%, transparent 60%);
  transform: translateX(-60%) skewX(-18deg);
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
}
.brand:hover .logo-wrap:before{
  opacity:.55;
  animation: shimmer 1.2s ease forwards;
}
@keyframes shimmer{
  from{ transform: translateX(-70%) skewX(-18deg); }
  to{ transform: translateX(110%) skewX(-18deg); }
}

.brand img{
  width:42px; height:42px; object-fit:contain;
  filter: drop-shadow(0 12px 30px rgba(47,215,255,.10));
  position:relative; z-index:2;
}
.brand .name{ display:flex; flex-direction:column; line-height:1.05; }
.brand .name b{ letter-spacing:.2px; font-size:14px; }
.brand .name span{ font-size:12px; color:var(--muted); }

nav ul{ list-style:none; padding:0; margin:0; display:flex; gap:18px; align-items:center; }
nav a{
  font-size:13px; color: rgba(234,242,255,.78);
  padding:10px 10px; border-radius:12px;
  transition:.25s ease; border:1px solid transparent;
}
nav a:hover{
  color:var(--text);
  border-color: rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}

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

/* Buttons + Ripple */
.btn{
  position:relative;
  overflow:hidden;
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:600; font-size:13px;
  transition:.25s ease;
  box-shadow: 0 10px 24px rgba(0,0,0,.20);
  white-space:nowrap;
  cursor:pointer;
  will-change: transform;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); }
.btn.primary{
  border-color: rgba(47,215,255,.28);
  background: linear-gradient(135deg, rgba(13,83,160,.92), rgba(47,215,255,.60));
}
.btn.primary:hover{ filter: brightness(1.05); }

.ripple{
  position:absolute;
  border-radius:999px;
  transform: scale(0);
  animation: ripple .6s ease-out;
  background: rgba(255,255,255,.30);
  pointer-events:none;
}
@keyframes ripple { to { transform: scale(2.7); opacity: 0; } }

/* Hero */
.hero{ padding: 70px 0 26px; }
.hero-grid{
  display:grid; gap:26px;
  grid-template-columns: 1.15fr .85fr;
  align-items:stretch;
}
.hero h1{
  margin:0 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing:-0.6px;
  line-height:1.05;
}
.gradient-text{
  background:linear-gradient(135deg,var(--accent2),#fff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:56ch;
}

.pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin: 18px 0 26px; }
.pill-row.compact{ margin: 14px 0 0; }
.pill{
  border:1px solid rgba(255,255,255,.12);
  background: var(--panel);
  padding:9px 12px;
  border-radius:999px;
  font-size:12px;
  color: rgba(234,242,255,.85);
  display:inline-flex; gap:8px; align-items:center;
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: linear-gradient(135deg, var(--accent2), var(--accent));
  box-shadow: 0 0 0 4px rgba(47,215,255,.12);
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid rgba(88,243,199,.25);
  background: rgba(88,243,199,.08);
  color: rgba(234,242,255,.92);
  padding:10px 12px;
  border-radius:16px;
  font-size:13px;
  font-weight:600;
}
.badge-blue{
  border-color:rgba(47,215,255,.22);
  background:rgba(47,215,255,.08);
}

.hero-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
  transform-style: preserve-3d;
}
.hero-card:before{
  content:"";
  position:absolute; inset:-2px;
  background:
    radial-gradient(420px 220px at 25% 15%, rgba(47,215,255,.18), transparent 55%),
    radial-gradient(420px 280px at 75% 85%, rgba(13,83,160,.18), transparent 60%);
  pointer-events:none;
}
.hero-card .content{ position:relative; padding:22px; }
.hero-card h3{ margin:0 0 10px; letter-spacing:-.2px; }
.hero-card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.65; }

.stat-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; margin-top:14px; }
.stat{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(7,20,37,.35);
  padding:14px;
}
.stat b{ display:block; font-size:20px; letter-spacing:-.4px; }
.stat span{ color:var(--muted); font-size:12px; }

/* Sections */
section{ padding:54px 0; }
.section-title{ display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:18px; }
.section-title h2{ margin:0; font-size:22px; letter-spacing:-0.3px; }
.section-title p{ margin:0; color:var(--muted); font-size:13px; max-width:56ch; }

.grid-3{ display:grid; gap:14px; grid-template-columns: repeat(3, 1fr); }
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: var(--panel);
  padding:18px;
  box-shadow: 0 14px 42px rgba(0,0,0,.28);
  transition:.25s ease;
  position:relative;
  overflow:hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.card:hover{ background: var(--panel2); }
.card:before{
  content:"";
  position:absolute; inset:-1px;
  background: radial-gradient(360px 140px at 18% 10%, rgba(47,215,255,.14), transparent 60%);
  opacity:.7; pointer-events:none;
}
.card > *{ position:relative; }

.icon{
  width:38px; height:38px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(13,83,160,.55), rgba(47,215,255,.18));
  display:grid; place-items:center;
  margin-bottom:12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.25);
}
.card h3{ margin:0 0 8px; font-size:15px; letter-spacing:-.2px; }
.card p{ margin:0; color:var(--muted); font-size:13px; line-height:1.6; }

.quote{ font-size:13px; line-height:1.7; color: rgba(234,242,255,.84); }
.who{ margin-top:10px; display:flex; flex-direction:column; gap:2px; }
.who b{ font-size:13px; }
.who span{ font-size:12px; color: var(--muted); }

/* FAQ */
.faq{ display:grid; gap:12px; grid-template-columns: 1fr 1fr; align-items:start; }
details{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: var(--panel);
  padding: 14px;
  box-shadow: 0 14px 42px rgba(0,0,0,.20);
}
summary{
  cursor:pointer;
  font-weight:700;
  font-size: 13px;
  list-style:none;
  outline:none;
}
summary::-webkit-details-marker{ display:none; }
details p{ margin:10px 0 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

/* Contact */
.contact{ display:grid; gap:14px; grid-template-columns: .85fr 1.15fr; align-items:stretch; }
.contact-lines{ margin:8px 0 14px; }
.muted{ color: var(--muted); }

.field{ display:flex; flex-direction:column; gap:6px; margin-bottom:10px; }
label{ font-size:12px; color: rgba(234,242,255,.80); }
input, textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,20,37,.35);
  color: var(--text);
  outline:none;
  font-family: inherit;
  font-size:13px;
}
textarea{ min-height:110px; resize: vertical; }
input:focus, textarea:focus{
  border-color: rgba(47,215,255,.35);
  box-shadow: 0 0 0 4px rgba(47,215,255,.10);
}
.row{ display:grid; gap:10px; grid-template-columns: 1fr 1fr; }

.hp{ display:none; }

.notice{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 12px 14px;
  color: rgba(234,242,255,.85);
  font-size: 13px;
  display:none;
  margin: 10px 0 12px;
}
.notice.show{ display:block; }
.notice.ok{
  border-color: rgba(88,243,199,.28);
  background: rgba(88,243,199,.10);
  color: rgba(234,242,255,.92);
}
.notice.err{
  border-color: rgba(255,120,120,.25);
  background: rgba(255,120,120,.08);
}

/* Antes/Depois */
.ba{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  overflow:hidden;
  min-height: 360px;
  transform-style: preserve-3d;
}
.ba-img{
  position:absolute; inset:0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.ba-after-wrap{
  position:absolute; inset:0;
  width:55%;
  overflow:hidden;
  border-right: 1px solid rgba(255,255,255,.18);
}
.ba-handle{
  position:absolute; top:0; bottom:0;
  left:55%;
  width:0;
  pointer-events:none;
}
.ba-line{
  position:absolute; top:0; bottom:0;
  width:2px;
  left:-1px;
  background: rgba(255,255,255,.28);
  box-shadow: 0 0 0 4px rgba(47,215,255,.10);
}
.ba-knob{
  position:absolute;
  top:50%; left:-18px;
  width:36px; height:36px;
  margin-top:-18px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(7,20,37,.55);
  backdrop-filter: blur(10px);
  display:grid; place-items:center;
  box-shadow: 0 18px 50px rgba(0,0,0,.40);
  color: rgba(234,242,255,.92);
  font-weight: 800;
}
.ba-range{
  position:absolute; inset:0;
  width:100%; height:100%;
  opacity:0;
  cursor: ew-resize;
}
.ba-labels{
  position:absolute; left:16px; right:16px; bottom:14px;
  display:flex; justify-content:space-between; gap:10px;
  font-size:12px;
  color: rgba(234,242,255,.82);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}
.ba-labels span{
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(7,20,37,.35);
  backdrop-filter: blur(10px);
}

/* Carousel depoimentos */
.carousel{
  position:relative;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  padding: 18px;
  box-shadow: 0 14px 42px rgba(0,0,0,.22);
  overflow:hidden;
}
.car-viewport{ overflow:hidden; }
.car-track{
  display:flex;
  gap: 14px;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.car-slide{ min-width: calc(50% - 7px); }
.car-btn{
  position:absolute;
  top: 18px;
  width: 40px; height: 40px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(7,20,37,.35);
  backdrop-filter: blur(10px);
  color: rgba(234,242,255,.92);
  cursor:pointer;
  display:grid; place-items:center;
  z-index: 10;
}
.car-btn.prev{ right: 64px; }
.car-btn.next{ right: 18px; }
.car-btn:hover{ background: rgba(255,255,255,.08); transform: translateY(-1px); }

.car-dots{
  display:flex; gap:8px; justify-content:center;
  padding-top: 12px;
}
.car-dots button{
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  transition: .2s ease;
}
.car-dots button.active{
  width: 22px;
  background: linear-gradient(90deg, rgba(47,215,255,.75), rgba(13,83,160,.95));
  border-color: rgba(47,215,255,.25);
}

/* Footer */
footer{
  padding: 26px 0 110px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(234,242,255,.68);
  font-size: 12px;
}
.footer-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap: 10px; flex-wrap:wrap;
}
.uzza a{
  text-decoration:none;
  color: rgba(234,242,255,.78);
  border-bottom: 1px solid transparent;
  transition: .2s ease;
  padding-bottom: 1px;
}
.uzza a:hover{
  color: rgba(234,242,255,.95);
  border-bottom-color: rgba(47,215,255,.35);
}

/* WhatsApp floating */
.wa{
  position: fixed; right: 18px; bottom: 22px;
  z-index: 60;
  border-radius: 999px;
  padding: 12px 14px;
  background: #25D366;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 70px rgba(0,0,0,.55);
  display:flex; gap:10px; align-items:center;
  font-weight: 800;
  font-size: 13px;
  color: #FFFFFF;
  transition: .25s ease;
}
.wa .wa-ico{
  width: 18px; height: 18px;
  display:inline-grid; place-items:center;
}
.wa:hover{ transform: translateY(-2px); filter: brightness(1.02); }
/* Reveal */
.reveal{ opacity:0; transform: translateY(10px); transition: .7s ease; }
.reveal.show{ opacity:1; transform: translateY(0); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  nav ul{ display:none; }
  .grid-3{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1fr; }
  .faq{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  .car-slide{ min-width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .reveal{ transition:none; transform:none; opacity:1; }
  .btn, .wa, .card{ transition:none; }
  body:after{ display:none; }
  .cursor-glow{ display:none; }
  .car-track{ transition:none; }
  .bg-aurora{ display:none; }
}

/* Hero slogan */
.hero-slogan{
  margin: 14px 0 12px;
  color: rgba(242,245,255,.86);
  font-weight: 700;
  letter-spacing: .2px;
}

/* Contato compacto */
.contact-quick .quick-actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.btn.whatsapp{
  border-color: #FFFFFF;
  background: linear-gradient(135deg, rgba(37,211,102,.90), rgba(37,211,102,.70));
  color: #FFFFFF;
}
.btn.whatsapp:hover{ filter: brightness(1.03); }
.btn.whatsapp .wa-ico svg{ display:block; }

.footer-contact{
  font-size: 12px;
  color: rgba(242,245,255,.62);
  text-align: center;
  margin-top: 10px;
}
@media (min-width: 900px){
  footer .footer-inner{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items:center;
    gap: 14px;
  }
  .footer-contact{ margin-top: 0; }
  .uzza{ justify-self:end; }
  .copy{ justify-self:start; }
}


/* Mobile overflow fixes */
.badge{ max-width:100%; flex-wrap:wrap; white-space:normal; }
.pill{ max-width:100%; white-space:normal; }
img{ max-width:100%; height:auto; }


/* Header CTA label swap */
.label-short{ display:none; }


@media (max-width: 520px){
  html, body{ overflow-x: hidden; }

  .topbar .inner{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .brand{
    flex: 1 1 auto;
    gap: 10px;
  }

  /* deixa o topo mais limpo no celular */
  .brand .name span{ display:none; }
  .logo-wrap img{ width: 32px; height: 32px; }

  .cta{
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 8px;
  }

  .btn{
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 14px;
  }

  .label-long{ display:none; }
  .label-short{ display:inline; }

  /* evita qualquer vazamento horizontal */
  .container{ width: min(var(--max), calc(100% - 28px)); }
}


.btn{ max-width:100%; }

/* ================================
   Luxe Header v5 (logo grande)
   ================================ */

html, body{ overflow-x:hidden; }

.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Header sempre acima e mais legível */
.topbar{
  z-index: 80;
  background: linear-gradient(to bottom, rgba(5,6,10,.92), rgba(5,6,10,.72));
  border-bottom-color: rgba(255,255,255,.12);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.topbar.scrolled{
  background: linear-gradient(to bottom, rgba(5,6,10,.98), rgba(5,6,10,.88));
  border-bottom-color: rgba(255,255,255,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

/* Logo grande com brilho discreto */
.brand{ gap:0; min-width:auto; }
.logo-wrap{ width:64px; height:64px; border-radius: 20px; transition: transform .25s ease; }
.brand img{ width:64px; height:64px; }
.topbar.scrolled .logo-wrap{ transform: scale(.92); }

/* Header compacta um pouco ao rolar */
.topbar .inner{ transition: padding .25s ease; }
.topbar.scrolled .inner{ padding: 12px 0; }

/* Mobile: deixa só o logo bem grande e evita apertos */
@media (max-width: 980px){
  .logo-wrap{ width:66px; height:66px; }
  .brand img{ width:66px; height:66px; }
  .topbar .inner{ padding: 12px 0; gap: 10px; }
}

/* Evita qualquer vazamento lateral por elementos animados */
.bg-aurora{ max-width:100vw; }
