/* DS Full Service - Static site */
/* Tip: trocar cores em :root para adaptar ao branding */

:root{
  --bg:#0B0B0B;
  --panel:#121212;
  --panel2:#0F0F0F;
  --text:#F5F5F5;
  --muted:#CFCFCF;
  --line:rgba(255,255,255,.14);
  --shadow: 0 20px 60px rgba(0,0,0,.55);

  /* Paleta baseada na logo (preto e tons de cinza) */
  --a:#FFFFFF;   /* branco */
  --b:#D1D1D1;   /* cinza claro */
  --c:#606060;   /* cinza médio */
  --ok:#9A9A9A;  /* cinza */

  --radius:18px;
  --radius2:26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font: 16px/1.5 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(255,255,255,.06), transparent 60%),
              radial-gradient(900px 700px at 85% 10%, rgba(255,255,255,.04), transparent 55%),
              radial-gradient(1000px 700px at 60% 80%, rgba(255,255,255,.03), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(1120px, calc(100% - 44px));
  margin-inline:auto;
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:var(--panel); border:1px solid var(--line); border-radius:12px;
  z-index:9999;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(7,10,18,.55);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{display:flex; align-items:center; gap:12px}

.brand__mark{display:inline-grid;place-items:center;padding:14px 18px;border-radius:18px;background:#ffffff;border:1px solid rgba(0,0,0,.10);box-shadow:0 18px 40px rgba(0,0,0,.35);}
.brand__logo{width:120px;height:auto;display:block;}
.brand__mark--footer{
  padding:6px 8px;
  border-radius:12px;
}
.brand__logo--footer{width:90px;}
.brand__text{display:flex; flex-direction:column; line-height:1.1}
.brand__text span{color:var(--muted); font-size:12px; letter-spacing:.2px}
.brand__text strong{font-size:15px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

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

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:44px; padding:0 16px;
  border-radius:14px;
  border:1px solid var(--line);
  font-weight:700;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{transform: translateY(1px)}
.btn--primary{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(209,209,209,.82));
  color:#0B0B0B;
  border-color: rgba(255,255,255,.20);
}
.btn--primary:hover{filter: brightness(1.02)}
.btn--ghost{background: rgba(255,255,255,.04)}
.btn--ghost:hover{background: rgba(255,255,255,.06)}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}
.burger span{
  display:block; width:18px; height:2px; background: rgba(255,255,255,.85);
  margin:4px auto;
  border-radius:99px;
}
.mobile{
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(7,10,18,.75);
}
.mobile__inner{
  display:flex; flex-direction:column; gap:10px;
  padding:14px 0 18px;
}
.mobile__inner a{padding:10px 0; color:var(--muted); font-weight:700}
.mobile__cta{display:flex; gap:10px; padding-top:6px}

/* Hero */
.hero{position:relative; padding:62px 0 44px; overflow:hidden}
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.hero__bg{
  position:absolute; inset:-2px;
  background:
    radial-gradient(700px 500px at 20% 20%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(600px 520px at 85% 35%, rgba(34,211,238,.12), transparent 55%),
    radial-gradient(700px 520px at 60% 85%, rgba(244,114,182,.10), transparent 55%);
  pointer-events:none;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:800; letter-spacing:.3px;
  margin:0 0 10px;
}
h1{
  font-size: clamp(34px, 3.6vw, 54px);
  line-height:1.03;
  margin: 0 0 14px;
  letter-spacing:-.02em;
}
.grad{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(209,209,209,.85));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
}
.lead{
  margin:0 0 18px;
  color: var(--muted);
  font-size: 18px;
  max-width: 58ch;
}
.hero__actions{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}

.metrics{
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.metric{
  padding:12px 12px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}
.metric strong{display:block; font-size:13px}
.metric span{display:block; color:var(--muted); font-size:12px}

.hero__art{position:relative; min-height: 340px}
.card3d{
  position:relative;
  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,.02));
  box-shadow: var(--shadow);
  overflow:hidden;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg);
  will-change: transform;
}
.card3d__content{padding:18px 18px 20px}
.card3d__row{display:flex; gap:8px; margin-bottom:10px}
.dot{width:10px;height:10px;border-radius:999px; opacity:.85}
.dot--pink{background:var(--b)}
.dot--blue{background:var(--c)}
.dot--green{background:var(--a)}
.card3d h3{margin:2px 0 8px}
.card3d p{margin:0 0 12px; color:var(--muted)}
.chips{display:flex; flex-wrap:wrap; gap:8px}
.chip{
  font-size:12px; font-weight:800; color: rgba(234,240,255,.92);
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  background: rgba(0,0,0,.18);
}
.card3d__shine{
  position:absolute; inset:-2px;
  background: radial-gradient(600px 280px at 20% 20%, rgba(34,211,238,.18), transparent 60%),
              radial-gradient(520px 260px at 80% 30%, rgba(244,114,182,.14), transparent 62%);
  opacity:.7;
  pointer-events:none;
  transform: translateZ(1px);
}
.glow{
  position:absolute; inset:auto 30px -60px 30px;
  height:120px;
  background: radial-gradient(closest-side, rgba(124,58,237,.45), transparent 68%);
  filter: blur(18px);
  opacity:.8;
  pointer-events:none;
}

/* Sections */
.section{padding:64px 0}
.section--alt{background: rgba(255,255,255,.02); border-top:1px solid rgba(255,255,255,.06); border-bottom:1px solid rgba(255,255,255,.06)}
.section__head{display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:18px}
.section__head h2{margin:0; font-size:28px; letter-spacing:-.02em}
.section__head p{margin:0; color:var(--muted); max-width: 62ch}

.grid3{display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px}

.card{
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.card.small{padding:16px}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.icon{
  width:44px;height:44px;border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  margin-bottom:10px;
}
.icon svg{width:22px;height:22px; color: rgba(234,240,255,.92)}

.bullets{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.bullets li{margin:6px 0}

.tags{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.tags span{
  font-size:12px; font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.14);
}

.cta-strip{
  margin-top:14px;
  display:flex; gap:12px; align-items:center; justify-content:space-between;
  padding:16px 18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: radial-gradient(700px 220px at 10% 30%, rgba(34,211,238,.12), transparent 60%),
              radial-gradient(700px 220px at 90% 40%, rgba(124,58,237,.14), transparent 60%),
              rgba(255,255,255,.03);
}
.cta-strip span{display:block; color:var(--muted); font-size:13px; margin-top:2px}

.quote{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.quote p{margin:0 0 8px; font-size:18px}
.quote span{color:var(--muted); font-weight:700}

.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}
.form label{display:flex; flex-direction:column; gap:7px; font-weight:800; color: rgba(234,240,255,.95); margin-bottom:12px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
textarea{resize: vertical; min-height:120px}
input::placeholder, textarea::placeholder{color: rgba(169,179,211,.75)}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.form__actions{display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap}
.hint{margin:0; color:var(--muted); font-size:12px}
.info h4{margin:14px 0 6px}
.info__line{margin:0 0 8px; color:var(--muted)}
.info__line a{color: rgba(234,240,255,.92); text-decoration:underline; text-decoration-color: rgba(34,211,238,.45)}
.divider{height:1px; background: rgba(255,255,255,.08); margin:14px 0}
.muted{color:var(--muted); margin:0}

/* Footer */
.footer{
  padding:22px 0 26px;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.22);
}
.footer__inner{display:flex; align-items:center; justify-content:space-between; gap:18px}
.footer__left{display:flex; align-items:center; gap:10px}
.footer__left span{display:block; color:var(--muted); font-size:12px}
.footer__right{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.footer__right a{color:var(--muted); font-weight:700; font-size:13px}
.footer__right a:hover{color:var(--text)}
.footer__bottom{margin-top:10px; color:var(--muted); font-size:12px}

/* Tilt */
[data-tilt]{transform-style:preserve-3d}
[data-tilt] .icon{transform: translateZ(18px)}

/* Responsive */
@media (max-width: 940px){
  .hero__inner{grid-template-columns:1fr; gap:18px}
  .hero__art{min-height: 260px}
  .metrics{grid-template-columns:1fr}
  .section__head{flex-direction:column; align-items:flex-start}
  .contact{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .brand__logo{width:95px}

  .brand__logo{width:120px;height:auto;display:block;}

  .nav, .topbar__cta{display:none}
  .burger{display:inline-grid; place-items:center}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .row{grid-template-columns:1fr}
  .cta-strip{flex-direction:column; align-items:flex-start}
}


/* Instagram embeds */
.media-grid .media-card h3{margin-bottom:6px}
.embed{
  margin-top:12px;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
  padding:10px;
}
/* Make IG embed fit the card */
.embed .instagram-media{
  margin:0 auto !important;
  width:100% !important;
  min-width: 0 !important;
  max-width: 540px !important;
  border-radius: 16px !important;
}
@media (max-width: 760px){
  .brand__logo{width:95px}

  .embed{padding:8px}
  .embed .instagram-media{max-width: 100% !important;}
}


/* === OVERRIDES: LOGO 2X (forced) === */
.brand__logo{ width:240px !important; height:auto !important; }
.brand__logo--footer{ width:180px !important; height:auto !important; }
.brand__mark{ padding:20px 26px !important; border-radius:22px !important; }
.brand{ gap:16px !important; }
.topbar__inner{ padding:18px 0 !important; }

@media (max-width: 760px){
  .brand__logo{ width:170px !important; }
  .brand__logo--footer{ width:140px !important; }
  .brand__mark{ padding:16px 20px !important; }
}


/* ================================
   LOGO MODO DOMINANTE (GRANDE)
   ================================ */

/* Aumenta altura real da navbar */
.topbar__inner{
  padding:30px 0 !important;
  align-items:center !important;
}

/* Remove texto ao lado para dar foco total à marca */
.brand__text{
  display:none !important;
}

/* Logo extremamente maior */
.brand__logo{
  width:380px !important;
  height:auto !important;
}

/* Remove badge branco para ficar mais limpa e impactante */
.brand__mark{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

/* Centraliza melhor no mobile */
@media (max-width: 760px){
  .brand__logo{
    width:260px !important;
  }
}


/* ===== FINAL OVERRIDE: keep text + HUGE logo ===== */
.brand{
  display:flex !important;
  flex-direction:column !important; /* logo on top, text below */
  align-items:flex-start !important;
  gap:10px !important;
}

.brand__text{
  display:flex !important;
  flex-direction:column !important;
  line-height:1.05 !important;
}

.brand__text strong{
  font-size:20px !important;
  letter-spacing:-.01em !important;
}

.brand__text span{
  font-size:14px !important;
  color: rgba(234,240,255,.88) !important;
}

.brand__mark{
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

.brand__logo{
  width:460px !important;
  height:auto !important;
  max-width:none !important;
}

.topbar__inner{
  padding:22px 0 !important;
}

@media (max-width: 940px){
  .brand__logo{ width:360px !important; }
}

@media (max-width: 760px){
  .brand__logo{ width:280px !important; }
  .brand__text strong{ font-size:18px !important; }
  .brand__text span{ font-size:13px !important; }
}


/* ===== BRAND FIX: text BESIDE logo + MUCH bigger logo ===== */
.topbar__inner{
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 22px 0 !important;
}

/* Brand takes full row so it can be large without crushing menu */
.brand{
  order: 1 !important;
  flex: 1 1 100% !important;
  display:flex !important;
  flex-direction: row !important;   /* side-by-side */
  align-items: center !important;
  gap: 18px !important;
}

.brand__mark{
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,.10) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,.35) !important;
  padding: 14px 18px !important;
  border-radius: 18px !important;
}

.brand__logo{
  width: 520px !important;
  height: auto !important;
  max-width: none !important;
  display:block !important;
}

.brand__text{
  display:flex !important;
  flex-direction: column !important;
  line-height: 1.05 !important;
}

.brand__text strong{
  font-size: 26px !important;
  letter-spacing: -0.01em !important;
}

.brand__text span{
  font-size: 16px !important;
  color: rgba(234,240,255,.90) !important;
}

/* Put nav/cta on next row(s) */
.nav{
  order: 2 !important;
  flex: 1 1 100% !important;
  justify-content: flex-start !important;
}
.topbar__cta{
  order: 3 !important;
  flex: 1 1 100% !important;
  justify-content: flex-start !important;
}

/* Responsive sizes */
@media (max-width: 940px){
  .brand__logo{ width: 420px !important; }
  .brand__text strong{ font-size: 22px !important; }
  .brand__text span{ font-size: 14px !important; }
}
@media (max-width: 760px){
  .brand{ flex: 1 1 100% !important; }
  .brand__logo{ width: 300px !important; }
  .brand__text strong{ font-size: 20px !important; }
  .brand__text span{ font-size: 13px !important; }
}


/* ===== DEFINITIVE LOGO SIZE FIX ===== */
.brand {
  flex: 1 1 100% !important;
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:24px !important;
}

.brand__logo{
  width:600px !important;
  max-width:none !important;
  height:auto !important;
  display:block !important;
}

.brand__mark{
  padding:0 !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}

.brand__text{
  display:flex !important;
  flex-direction:column !important;
}

.brand__text strong{
  font-size:28px !important;
}

.brand__text span{
  font-size:18px !important;
}

.topbar__inner{
  padding:28px 0 !important;
}

@media (max-width: 940px){
  .brand__logo{ width:450px !important; }
}

@media (max-width: 760px){
  .brand__logo{ width:320px !important; }
}


/* ===== EXTREME BRAND VERSION ===== */

/* Header vira área de branding forte */
.topbar{
  position:relative !important;
}

.topbar__inner{
  flex-direction:column !important;
  align-items:center !important;
  padding:40px 0 20px 0 !important;
}

/* Marca ocupa quase a tela inteira */
.brand{
  width:100% !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap:40px !important;
  flex-wrap:wrap !important;
}

/* Logo ocupa até 80% da largura da tela */
.brand__logo{
  width:80vw !important;
  max-width:1200px !important;
  height:auto !important;
}

/* Texto ao lado quando couber */
.brand__text{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
}

.brand__text strong{
  font-size:42px !important;
}

.brand__text span{
  font-size:22px !important;
  letter-spacing:2px !important;
}

/* Menu vai para baixo */
.nav, .topbar__cta{
  margin-top:25px !important;
  justify-content:center !important;
}

/* Mobile ajuste */
@media (max-width: 760px){
  .brand{
    flex-direction:column !important;
    gap:20px !important;
  }
  .brand__logo{
    width:95vw !important;
  }
  .brand__text strong{
    font-size:26px !important;
  }
  .brand__text span{
    font-size:16px !important;
  }
}


/* ===== FINAL CLEAN LARGE LOGO VERSION ===== */

.topbar{
  position:relative !important;
}

.topbar__inner{
  flex-direction:row !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:26px 0 !important;
}

/* Brand area */
.brand{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:24px !important;
}

/* REAL logo size */
.brand__logo{
  width:420px !important;
  height:auto !important;
  max-width:none !important;
  display:block !important;
}

.brand__mark{
  background:#ffffff !important;
  padding:16px 22px !important;
  border-radius:18px !important;
  border:1px solid rgba(0,0,0,.08) !important;
  box-shadow:0 20px 50px rgba(0,0,0,.35) !important;
}

.brand__text{
  display:flex !important;
  flex-direction:column !important;
}

.brand__text strong{
  font-size:26px !important;
}

.brand__text span{
  font-size:16px !important;
}

/* Tablet */
@media (max-width: 1024px){
  .brand__logo{
    width:320px !important;
  }
}

/* Mobile */
@media (max-width: 760px){
  .topbar__inner{
    flex-direction:column !important;
    align-items:center !important;
  }

  .brand{
    flex-direction:column !important;
    align-items:center !important;
    gap:14px !important;
  }

  .brand__logo{
    width:85vw !important;
  }

  .brand__text strong{
    font-size:20px !important;
  }

  .brand__text span{
    font-size:14px !important;
  }
}


/* ===== LOGO 50% WIDTH VERSION ===== */

/* Layout mantido com texto ao lado */
.topbar__inner{
  flex-direction:row !important;
  align-items:center !important;
  justify-content:space-between !important;
}

.brand{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:28px !important;
  width:100% !important;
}

/* Logo ocupa metade da largura da tela */
.brand__logo{
  width:50vw !important;
  max-width:none !important;
  height:auto !important;
}

/* Ajuste do texto proporcional */
.brand__text strong{
  font-size:28px !important;
}

.brand__text span{
  font-size:18px !important;
}

/* Tablet */
@media (max-width: 1024px){
  .brand__logo{
    width:60vw !important;
  }
}

/* Mobile */
@media (max-width: 760px){
  .topbar__inner{
    flex-direction:column !important;
    align-items:center !important;
  }

  .brand{
    flex-direction:column !important;
    gap:16px !important;
  }

  .brand__logo{
    width:18vw !important;
  }

  .brand__text strong{
    font-size:22px !important;
  }

  .brand__text span{
    font-size:15px !important;
  }
}


/* ===== VERSION BAR (debug) ===== */


/* ===== LOGO SIZE: keep site as-is, only increase logo ===== */
.brand{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:18px !important;
}

.brand__logo{
  width:35vw !important;      /* tamanho que funcionou pra você */
  max-width:700px !important;
  height:auto !important;
  display:block !important;
}

.brand__text{
  display:flex !important;
  flex-direction:column !important;
}

/* Make sure the white badge doesn't shrink the logo */
.brand__mark{
  padding:0 !important;
  background:transparent !important;
  border:none !important;
  box-shadow:none !important;
}

/* Mobile: logo grande e legível */
@media (max-width: 760px){
  .brand__logo{ width:85vw !important; max-width:none !important; }
}


/* ===== AJUSTE FINAL LOGO ===== */
.brand__logo{
  width:7.5vw !important;
  max-width:150px !important;
  height:auto !important;
}

@media (max-width: 760px){
  .brand__logo{
    width:18vw !important;
  }
}

/* ===== FINAL HARD OVERRIDE (specificity) ===== */
header.topbar .brand img.brand__logo{
  width:7.5vw !important;
  max-width:150px !important;
  height:auto !important;
}
@media (max-width: 760px){
  header.topbar .brand img.brand__logo{
    width:18vw !important;
    max-width:none !important;
  }
}


/* ===== HEADER ONLY INLINE FIX ===== */

header.topbar .header-container{
  display:flex !important;
  justify-content:space-between !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
}

header.topbar .nav{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:20px !important;
}

header.topbar .nav a{
  margin:0 !important;
}

header.topbar .topbar__cta{
  display:flex !important;
  flex-direction:row !important;
  gap:14px !important;
  align-items:center !important;
}


/* ===== FORCE EVERYTHING IN HEADER INLINE ===== */

header.topbar .header-container{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  justify-content:space-between !important;
  flex-wrap:nowrap !important;
  gap:30px !important;
}

header.topbar .brand{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:15px !important;
  flex:0 0 auto !important;
}

header.topbar .nav{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:20px !important;
  flex:0 0 auto !important;
}

header.topbar .topbar__cta{
  display:flex !important;
  flex-direction:row !important;
  align-items:center !important;
  gap:15px !important;
  flex:0 0 auto !important;
}

header.topbar .nav a{
  white-space:nowrap !important;
  margin:0 !important;
}

/* Remove qualquer wrap automático */
header.topbar *{
  flex-wrap:nowrap !important;
}


/* ===== ALIGN HEADER WIDTH WITH SITE CONTENT ===== */

header.topbar{
  padding: 20px 0 !important; /* remove lateral exaggeration */
}

header.topbar .header-container{
  width: min(1120px, calc(100% - 44px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  gap: 24px !important;
}



/* ===== ALIGN HEADER BY MOVING LOGO FULL LEFT ===== */

header.topbar .header-container{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important; /* start from left */
}

header.topbar .brand{
  margin-right:40px !important;
}

header.topbar .nav{
  margin-left:auto !important; /* push menu + buttons to right */
}

header.topbar .topbar__cta{
  margin-left:20px !important;
}


/* ===== FIX HEADER HEIGHT (REMOVE EXCESS LOGO AREA) ===== */

header.topbar{
  padding:12px 0 !important; /* reduce vertical space */
}

header.topbar .header-container{
  align-items:center !important;
}

header.topbar .brand{
  gap:12px !important;
}

header.topbar .brand__logo{
  max-height:80px !important;   /* limit vertical growth */
  width:auto !important;        /* prevent stretching height */
}

header.topbar .brand__mark{
  padding:0 !important;
}



/* ===== REMOVE WHITE LOGO BACKGROUND (OPTION C) ===== */

header.topbar .brand__mark{
  background:transparent !important;
  padding:0 !important;
  border:none !important;
  box-shadow:none !important;
}

header.topbar .brand__logo{
  background:transparent !important;
  max-height:70px !important;
}


/* ===== HEADER COMPACTO (REMOVE ESPAÇOS EXTRAS) ===== */

header.topbar{
  padding:8px 0 !important;          /* reduz espaço vertical geral */
}

header.topbar .header-container{
  padding:0 !important;
  margin:0 auto !important;
  gap:16px !important;               /* reduz espaço entre blocos */
}

header.topbar .brand{
  margin:0 !important;
  padding:0 !important;
  gap:10px !important;               /* reduz espaço entre logo e texto */
}

header.topbar .brand__logo{
  margin:0 !important;
  padding:0 !important;
  max-height:60px !important;        /* controla altura real */
}

header.topbar .brand__text{
  margin:0 !important;
  line-height:1.05 !important;       /* texto mais compacto */
}

header.topbar .nav{
  margin:0 !important;
  padding:0 !important;
}


/* ===== HEADER SIZE B (médio) + alinhamento fino ===== */
header.topbar{
  padding: 14px 0 !important;
}

header.topbar .header-container{
  align-items: center !important;
  gap: 18px !important;
}

/* Logo sem fundo e com altura média */
header.topbar .brand__mark{
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

header.topbar img.brand__logo{
  height: 64px !important;   /* controla a altura do cabeçalho */
  width: auto !important;
  max-height: 64px !important;
}

/* Texto alinhado ao centro da logo */
header.topbar .brand__text strong{ font-size: 20px !important; line-height: 1.05 !important; }
header.topbar .brand__text span{ font-size: 14px !important; line-height: 1.05 !important; }

/* Menu e CTAs alinhados */
header.topbar .nav{ gap: 18px !important; }
header.topbar .topbar__cta{ gap: 12px !important; }

/* Mantém tudo na mesma linha (desktop) sem inflar altura */
header.topbar .header-container{ flex-wrap: nowrap !important; }

/* Responsivo: compacta sem estourar */
@media (max-width: 940px){
  header.topbar img.brand__logo{ height: 56px !important; max-height:56px !important; }
  header.topbar .nav{ gap: 14px !important; }
  header.topbar .nav a{ font-size: 13px !important; }
}
@media (max-width: 760px){
  header.topbar .nav, header.topbar .topbar__cta{ display:none !important; } /* volta ao menu hamburguer se existir */
}


/* ===== FIX: header alinhado com o site + logo visível + sem centralizar marca ===== */
header.topbar{
  width:100% !important;
  padding: 12px 0 !important;
}

header.topbar .header-container{
  width: min(1120px, calc(100% - 44px)) !important;
  margin: 0 auto !important;
  padding: 0 !important;

  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  flex-wrap:nowrap !important;
  gap: 20px !important;
}

header.topbar .brand{
  flex: 0 0 auto !important;
  margin: 0 !important;
}

header.topbar .nav{
  flex: 1 1 auto !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
  gap: 18px !important;
  margin: 0 !important;
}

header.topbar .topbar__cta{
  flex: 0 0 auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap: 12px !important;
  margin: 0 !important;
}

header.topbar .brand__mark{
  background: rgba(255,255,255,.92) !important;
  padding: 6px 8px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: none !important;
}

header.topbar img.brand__logo{
  height: 62px !important;
  width: auto !important;
  max-height: 62px !important;
  display:block !important;
}

@media (max-width: 1024px){
  header.topbar .header-container{
    width: min(1000px, calc(100% - 36px)) !important;
    gap: 14px !important;
  }
  header.topbar .nav{ gap: 14px !important; }
  header.topbar .nav a{ font-size: 13px !important; }
  header.topbar img.brand__logo{ height: 56px !important; max-height:56px !important; }
}


/* ===== DEFINITIVO: HEADER ALINHADO (brand esquerda, menu centro, botões direita) ===== */
header.topbar .topbar__inner{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap: 18px !important;
  flex-wrap:nowrap !important;
}

/* impede a marca de "tomar" o meio */
header.topbar a.brand{
  display:flex !important;
  align-items:center !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  width: auto !important;
}

/* menu no centro */
header.topbar nav.nav{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap: 18px !important;
  flex: 1 1 auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* CTAs na direita */
header.topbar .topbar__cta{
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  margin: 0 !important;
}

/* burger não empurra layout */
header.topbar .burger{
  flex: 0 0 auto !important;
  margin-left: 6px !important;
}

/* remove qualquer regra antiga que empurre para a direita */
header.topbar .nav{ margin-left: 0 !important; }
header.topbar .topbar__cta{ margin-left: 0 !important; }

/* logo SEM bloco branco, mas com contraste (não vira "quadrado") */
header.topbar img.brand__logo{
  display:block !important;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: drop-shadow(0 0 1px rgba(255,255,255,.35)) drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

/* altura do header (B) */
header.topbar{
  padding: 12px 0 !important;
}

/* responsivo: se começar a apertar, reduz gaps */
@media (max-width: 1100px){
  header.topbar nav.nav{ gap: 14px !important; }
  header.topbar nav.nav a{ font-size: 13px !important; }
}
@media (max-width: 920px){
  header.topbar nav.nav{ display:none !important; }
  header.topbar .topbar__cta{ display:none !important; }
  header.topbar .burger{ display:inline-flex !important; }
}


/* ===== APENAS FUNDO BRANCO NA LOGO (SEM ALTERAR HEADER) ===== */
header.topbar img.brand__logo{
  background:#ffffff !important;
  padding:6px 10px !important;
  border-radius:8px !important;
}


/* ===== FUNDO BRANCO NA LOGO (corrigido: IMG do header não tem classe) ===== */
header.topbar a.brand > img{
  background:#ffffff !important;
  padding:6px 10px !important;
  border-radius:8px !important;
  box-shadow:0 6px 18px rgba(0,0,0,.25) !important; /* leve para destacar */
}

/* ===== Instagram embeds: responsive, clickable playback ===== */
.ig-embed{ width:100%; }
.embed .instagram-media{ width:100% !important; max-width:100% !important; }
.embed iframe{ max-width:100% !important; width:100% !important; }


/* ===== MOBILE AJUSTES: logo maior + texto do botão WhatsApp visível ===== */
@media (max-width: 760px){
  /* Logo maior no mobile (mesmo com inline style) */
  header.topbar a.brand > img{
    width: 120px !important;
    max-width: none !important;
    height: auto !important;
  }

  /* Garantir contraste do botão "Orçar no WhatsApp" */
  header.topbar .topbar__cta .btn--primary{
    color: #0b0f1e !important;
    -webkit-text-fill-color: #0b0f1e !important;
    text-shadow: none !important;
  }
  header.topbar .topbar__cta .btn--primary span,
  header.topbar .topbar__cta .btn--primary strong{
    color: #0b0f1e !important;
    -webkit-text-fill-color: #0b0f1e !important;
  }

  /* Se o botão estiver ficando "vazio" por altura/line-height */
  header.topbar .topbar__cta .btn{
    line-height: 1.2 !important;
  }
}


/* ===== MOBILE: apenas cor do texto do botão "Orçar no WhatsApp" ===== */
@media (max-width: 760px){
  header.topbar .topbar__cta .btn--primary,
  header.topbar .topbar__cta .btn--primary *{
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 1px 1px rgba(0,0,0,.35) !important; /* melhora leitura sem mudar layout */
  }
}


/* ===== MOBILE: texto do botão WhatsApp em PRETO ===== */
@media (max-width: 760px){
  header.topbar .topbar__cta .btn--primary,
  header.topbar .topbar__cta .btn--primary *{
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    text-shadow: none !important;
  }
}


/* ===== MOBILE: força texto preto no botão WhatsApp (quando há efeitos de texto) ===== */
@media (max-width: 760px){
  header.topbar .topbar__cta a.btn.btn--primary,
  header.topbar .topbar__cta a.btn.btn--primary *{
    color:#000000 !important;
    -webkit-text-fill-color:#000000 !important;
    opacity:1 !important;
    filter:none !important;
    mix-blend-mode:normal !important;
    text-shadow:none !important;
  }
  /* Se existir pseudo-elemento cobrindo o texto */
  header.topbar .topbar__cta a.btn.btn--primary::before,
  header.topbar .topbar__cta a.btn.btn--primary::after{
    opacity:0 !important;
  }
}


/* ===== MOBILE: inverter posição da logo com botão menu ===== */
@media (max-width: 760px){

  header.topbar .topbar__inner{
    display:flex !important;
    align-items:center !important;
  }

  header.topbar a.brand{
    order: 2 !important; /* vai para direita */
  }

  header.topbar .burger{
    order: 1 !important; /* vai para esquerda */
  }

  /* mantém CTA após nav se aparecer */
  header.topbar .topbar__cta{
    order: 3 !important;
  }
}


/* ===== MOBILE: trocar posições (LOGO ESQUERDA, MENU DIREITA) ===== */
@media (max-width: 760px){
  header.topbar .topbar__inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
  }

  /* remove qualquer centralização antiga */
  header.topbar a.brand{
    order: 1 !important;
    margin: 0 !important;
  }

  header.topbar .burger{
    order: 3 !important;
    margin: 0 !important;
  }

  /* se o CTA aparecer no header mobile, fica no meio (ou some conforme seu layout) */
  header.topbar .topbar__cta{
    order: 2 !important;
    margin: 0 !important;
  }
}


/* ===== MOBILE: botão menu com 3 traços (hambúrguer real) ===== */
header.topbar .burger{
  display:inline-flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  align-items:center !important;
  gap:5px !important;
  width:38px !important;
  height:38px !important;
}

header.topbar .burger span{
  display:block !important;
  width:22px !important;
  height:2px !important;
  background:#ffffff !important;
  border-radius:2px !important;
  opacity:1 !important;
}


/* ===== MENU HAMBÚRGUER MAIS GROSSO ===== */
header.topbar .burger span{
  height:4px !important;   /* antes era 2px */
  width:24px !important;   /* leve ajuste proporcional */
  border-radius:3px !important;
}


/* ===== BURGER APENAS NO MOBILE ===== */

/* Desktop: esconder completamente */
header.topbar .burger{
  display:none !important;
}

/* Mobile: mostrar */
@media (max-width: 760px){
  header.topbar .burger{
    display:inline-flex !important;
  }
}


/* ===== Portfolio section ===== */
.portfolio-entry-grid{align-items:stretch}
.portfolio-entry{display:flex; flex-direction:column}
.portfolio-entry__eyebrow{
  display:inline-flex; width:max-content; margin-bottom:10px;
  padding:8px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  color:var(--muted); font-size:12px; font-weight:800;
}
.portfolio-entry .btn{margin-top:auto; width:max-content}
.portfolio-hero{
  padding:72px 0 44px;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.portfolio-hero__inner{
  display:grid; grid-template-columns:1.1fr .9fr; gap:24px; align-items:center;
}
.portfolio-hero__visual img{
  width:100%; border-radius:28px; display:block;
  border:1px solid rgba(255,255,255,.1);
  box-shadow:0 18px 46px rgba(0,0,0,.28);
}
.portfolio-back{
  display:inline-flex; margin-bottom:14px; color:var(--muted); font-weight:800;
}
.portfolio-kpis{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:10px; margin-top:18px;
}
.portfolio-kpi{
  padding:14px; border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
}
.portfolio-kpi strong{display:block; font-size:13px}
.portfolio-kpi span{display:block; color:var(--muted); font-size:12px}
.case-grid{
  display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px;
}
.case-card img{
  width:100%; border-radius:22px; display:block; margin-bottom:12px;
  border:1px solid rgba(255,255,255,.10);
}
.logo-wall{
  display:grid; grid-template-columns:repeat(4, minmax(0,1fr)); gap:12px;
}
.logo-badge{
  padding:14px 12px; text-align:center; border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  font-weight:800; color:rgba(234,240,255,.92);
}
.timeline{
  display:grid; gap:12px;
}
.timeline-item{
  padding:16px; border-radius:20px; border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.timeline-item strong{display:block; margin-bottom:6px}
.portfolio-embed-grid{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px;
}
@media (max-width: 940px){
  .portfolio-hero__inner{grid-template-columns:1fr}
  .portfolio-kpis{grid-template-columns:1fr}
  .case-grid, .portfolio-embed-grid, .logo-wall{grid-template-columns:1fr}
}


/* ===== Dropdown do portfólio no cabeçalho ===== */
.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown__trigger{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav-dropdown__trigger:hover{
  color: var(--text);
}
.nav-dropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 170px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(13,18,36,.98);
  box-shadow: 0 14px 36px rgba(0,0,0,.30);
  display: none;
  z-index: 60;
}
.nav-dropdown__menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color: var(--text);
  font-size:14px;
  font-weight:700;
}
.nav-dropdown__menu a:hover{
  background: rgba(255,255,255,.06);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu{
  display:block;
}
@media (max-width: 760px){
  .nav-dropdown{
    display:none !important;
  }
}


/* ===== Dropdown do Portfólio só para página inicial ===== */
.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-dropdown__trigger{
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.nav-dropdown__trigger:hover{
  color: var(--text);
}
.nav-dropdown__menu{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 180px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(13,18,36,.98);
  box-shadow: 0 14px 36px rgba(0,0,0,.30);
  display: none;
  z-index: 80;
}
.nav-dropdown__menu a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color: var(--text);
  font-size:14px;
  font-weight:700;
}
.nav-dropdown__menu a:hover{
  background: rgba(255,255,255,.06);
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu{
  display:block;
}

.mobile-submenu{
  display:flex;
  flex-direction:column;
  margin:-4px 0 4px 12px;
  padding-left:12px;
  border-left:1px solid rgba(255,255,255,.10);
}
.mobile-submenu a{
  padding:8px 0 !important;
  font-size:14px;
  color: rgba(234,240,255,.86) !important;
}


/* ===== Nossos Clientes marquee ===== */
.clientes-strip{ overflow:hidden; }
.logo-marquee{
  width:100%;
  overflow:hidden;
  position:relative;
  padding:4px 0 8px;
}
.logo-marquee__track{
  display:flex;
  align-items:center;
  gap:36px;
  width:max-content;
  animation:clientesLoop 28s linear infinite;
  will-change:transform;
}
.logo-marquee:hover .logo-marquee__track{ animation-play-state:paused; }
.logo-marquee__track img{
  display:block;
  height:74px;
  width:auto;
  object-fit:contain;
  border-radius:14px;
  flex:0 0 auto;
}
@keyframes clientesLoop{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}
@media (max-width:760px){
  .logo-marquee__track{ gap:20px; animation-duration:18s; }
  .logo-marquee__track img{ height:54px; }
}


/* ===== Ajuste dropdown Portfólio: área contínua para hover ===== */
.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 14px; /* cria ponte invisível até o menu */
  margin-bottom: -14px;
}

.nav-dropdown__trigger{
  display: inline-flex;
  align-items: center;
  height: 32px;
}

.nav-dropdown__menu{
  top: calc(100% - 2px) !important; /* aproxima o menu do botão */
  left: 0;
  margin-top: 0 !important;
}

/* mantém aberto ao passar pelo espaço entre botão e menu */
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu,
.nav-dropdown__menu:hover{
  display: block !important;
}


/* ===== Portfólio corporativo: remover card duplicado do topo ===== */
body:has(main .portfolio-hero) .portfolio-hero__inner{
  grid-template-columns: 1fr;
}


/* ===== Botão flutuante WhatsApp - Portfólio Corporativo ===== */
.floating-whatsapp{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #25D366;
  color: #0b0f1e !important;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(0,0,0,.32);
  animation: whatsappFloatMove 6s ease-in-out infinite;
}
.floating-whatsapp__icon{
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: #0b0f1e;
  font-size: 16px;
  line-height: 1;
}
.floating-whatsapp__text{
  color: #0b0f1e !important;
}
.floating-whatsapp:hover{
  transform: scale(1.03);
}
@keyframes whatsappFloatMove{
  0% { transform: translate(0, 0); }
  25% { transform: translate(-10px, -8px); }
  50% { transform: translate(0, -14px); }
  75% { transform: translate(8px, -8px); }
  100% { transform: translate(0, 0); }
}
@media (max-width: 760px){
  .floating-whatsapp{
    right: 12px;
    bottom: 12px;
    padding: 11px 14px;
    gap: 8px;
  }
  .floating-whatsapp__text{
    font-size: 14px;
  }
}


/* ===== Popup profissional WhatsApp (página inicial) ===== */
.wa-modal[hidden]{display:none !important;}
.wa-modal{
  position:fixed;
  inset:0;
  z-index:1200;
}
.wa-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,8,18,.72);
  backdrop-filter: blur(8px);
}
.wa-modal__dialog{
  position:relative;
  width:min(560px, calc(100% - 28px));
  margin:12vh auto 0;
  padding:24px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(16,21,40,.98), rgba(10,14,26,.98));
  box-shadow:0 30px 80px rgba(0,0,0,.42);
}
.wa-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
  font-size:24px;
  line-height:1;
}
.wa-modal__eyebrow{
  margin:0 0 8px;
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.wa-modal h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.05;
}
.wa-modal__text{
  margin:0 0 18px;
  color:var(--muted);
}
.wa-modal__options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}
.wa-option{
  text-align:left;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color:var(--text);
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.wa-option strong{
  display:block;
  margin-bottom:6px;
  font-size:20px;
}
.wa-option span{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.4;
}
.wa-option:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
}
body.wa-modal-open{
  overflow:hidden;
}
@media (max-width:760px){
  .wa-modal__dialog{
    margin:10vh auto 0;
    padding:20px;
    border-radius:24px;
  }
  .wa-modal h3{font-size:24px;}
  .wa-modal__options{
    grid-template-columns:1fr;
  }
}

.wa-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: black;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: bold;
  text-decoration: none;
  z-index: 999;
}


/* ===== Botão flutuante WhatsApp + popup bonito ===== */
.wa-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25D366;
  color: #0b0f1e !important;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  z-index: 1100;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}

.wa-choice-modal[hidden]{display:none !important;}
.wa-choice-modal{
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.wa-choice-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(5,8,18,.72);
  backdrop-filter: blur(8px);
}
.wa-choice-modal__dialog{
  position: relative;
  width: min(560px, calc(100% - 28px));
  margin: 12vh auto 0;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(16,21,40,.98), rgba(10,14,26,.98));
  box-shadow: 0 30px 80px rgba(0,0,0,.42);
}
.wa-choice-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: var(--text);
  font-size:24px;
  line-height:1;
}
.wa-choice-modal__eyebrow{
  margin:0 0 8px;
  color: var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.wa-choice-modal h3{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.05;
}
.wa-choice-modal__text{
  margin:0 0 18px;
  color: var(--muted);
}
.wa-choice-modal__actions{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:12px;
}
.wa-choice-card{
  text-align:left;
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  color: var(--text) !important;
  text-decoration:none;
  box-shadow:0 14px 34px rgba(0,0,0,.18);
}
.wa-choice-card strong{
  display:block;
  margin-bottom:6px;
  font-size:20px;
}
.wa-choice-card span{
  display:block;
  color: var(--muted);
  font-size:14px;
  line-height:1.4;
}
.wa-choice-card:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.18);
}
body.wa-choice-modal-open{
  overflow:hidden;
}
@media (max-width:760px){
  .wa-float{
    right:12px;
    bottom:12px;
  }
  .wa-choice-modal__dialog{
    margin:10vh auto 0;
    padding:20px;
    border-radius:24px;
  }
  .wa-choice-modal h3{font-size:24px;}
  .wa-choice-modal__actions{
    grid-template-columns:1fr;
  }
}


/* ===== Botão flutuante da inicial com mesmo movimento do portfólio ===== */
.wa-float{
  animation: whatsappFloatMove 6s ease-in-out infinite !important;
  box-shadow: 0 14px 32px rgba(0,0,0,.32) !important;
}


/* ===== Botão flutuante inicial: ícone apenas ===== */
.wa-float--icon{
  width: 58px !important;
  height: 58px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 28px !important;
  line-height: 1 !important;
}


/* ===== Botão flutuante inicial com imagem enviada ===== */
.wa-float--icon{
  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}
.wa-float__img{
  width: 64px;
  height: 64px;
  display: block;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}


/* ===== Botão flutuante com imagem (todas páginas) ===== */
.wa-float{
  width: 64px !important;
  height: 64px !important;
  background: transparent !important;
  box-shadow: none !important;
}
.wa-float__img{
  width: 64px;
  height: 64px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
}


/* ===== Mesma imagem de WhatsApp em todas as páginas ===== */
.wa-float--icon{
  width:64px !important;
  height:64px !important;
  padding:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}
.wa-float__img,
.floating-whatsapp__img{
  width:64px !important;
  height:64px !important;
  display:block !important;
  border-radius:999px !important;
  box-shadow:0 14px 32px rgba(0,0,0,.28) !important;
}
.floating-whatsapp--img{
  background:transparent !important;
  padding:0 !important;
  width:64px !important;
  height:64px !important;
  border-radius:999px !important;
  box-shadow:none !important;
  overflow:visible !important;
}
.floating-whatsapp--img .floating-whatsapp__icon,
.floating-whatsapp--img .floating-whatsapp__text{
  display:none !important;
}


/* ===== Slider de eventos restantes ===== */
.event-slider{
  overflow:hidden;
  width:100%;
  padding: 4px 0 8px;
}
.event-slider__track{
  display:flex;
  gap:16px;
  width:max-content;
  animation:eventSliderLoop 36s linear infinite;
  will-change:transform;
}
.event-slider:hover .event-slider__track{
  animation-play-state:paused;
}
.event-slide{
  position:relative;
  width:320px;
  min-width:320px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:0 18px 42px rgba(0,0,0,.22);
}
.event-slide img{
  display:block;
  width:100%;
  height:220px;
  object-fit:cover;
}
.event-slide__overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:16px;
  background:linear-gradient(180deg, rgba(4,7,14,0) 0%, rgba(4,7,14,.88) 42%, rgba(4,7,14,.96) 100%);
  color:#fff;
  transform:translateY(0);
}
.event-slide__overlay strong{
  display:block;
  font-size:16px;
  margin-bottom:6px;
}
.event-slide__overlay span{
  display:block;
  color:rgba(234,240,255,.86);
  font-size:13px;
  line-height:1.4;
}
@keyframes eventSliderLoop{
  from{transform:translateX(0);}
  to{transform:translateX(-50%);}
}
@media (max-width:760px){
  .event-slide{
    width:260px;
    min-width:260px;
  }
  .event-slide img{
    height:190px;
  }
  .event-slider__track{
    animation-duration:26s;
  }
}


/* ===== Outros clientes atendidos ===== */
.clientes-lista-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(150px, 1fr));
  gap:14px;
}
.clientes-lista-grid span{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:12px 14px;
  border-radius:16px;
  text-align:center;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  color:rgba(234,240,255,.95);
  font-size:14px;
  font-weight:700;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.clientes-lista-grid span:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
}


/* ===== Lista de shows realizados ===== */
.artistas-lista-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}
.artistas-coluna h3{
  margin:0 0 10px;
}
.artistas-coluna + .artistas-coluna{
  margin-top:0;
}
.artistas-lista{
  margin:0 0 18px;
  padding-left:18px;
  color:rgba(234,240,255,.88);
  line-height:1.65;
}
.artistas-lista li{
  margin-bottom:2px;
}
@media (max-width: 940px){
  .artistas-lista-grid{
    grid-template-columns:1fr;
  }
}


/* ===== Slider reposicionado no hero, acima do quadro animado ===== */
.hero__art{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:stretch;
}
.hero-inline-slider{
  position:relative;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.03);
  box-shadow:0 22px 50px rgba(0,0,0,.24);
  width:100%;
  max-width: 520px;
  align-self:flex-end;
}
.hero-inline-slider__slides{
  position:relative;
  min-height:220px;
}
.hero-inline-slider__slides img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  transition:opacity .7s ease;
}
.hero-inline-slider__slides img.is-active{
  position:relative;
  opacity:1;
}
.hero-inline-slider__dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:3;
}
.hero-inline-slider__dots button{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  background:rgba(255,255,255,.45);
}
.hero-inline-slider__dots button.is-active{
  background:rgba(255,255,255,.95);
}
@media (max-width: 940px){
  .hero-inline-slider{
    max-width:none;
    align-self:stretch;
  }
  .hero-inline-slider__slides{
    min-height:260px;
  }
}
@media (max-width: 760px){
  .hero-inline-slider__slides{
    min-height:180px;
  }
}


/* Card Experiência ocupando largura total */
.card3d--inline,
.hero__copy > .card3d {
  margin-top: 18px;
  width: 100%;
}

/* Visual premium */
.hero__copy > .card3d {
  padding: 2px;
  background: linear-gradient(135deg, #7b5cff, #00d4ff);
  border-radius: 20px;
}

.hero__copy > .card3d .card3d__content {
  background: rgba(15,15,20,0.95);
  border-radius: 18px;
}

/* manter alinhamento da coluna */
.hero__copy {
  display: flex;
  flex-direction: column;
}


/* bloco estilo Apple / Stripe */
.hero__copy{
  position: relative;
}
.hero__copy::before{
  content:"";
  position:absolute;
  inset:-18px -18px auto -18px;
  height: calc(100% + 30px);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.05);
  pointer-events: none;
  z-index: 0;
}
.hero__copy > *{
  position: relative;
  z-index: 1;
}
.metrics{
  gap: 14px !important;
}
.metric{
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.metric:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  background: rgba(255,255,255,.05);
}

/* card experiência imersiva refinado */
.hero__copy > .hero-immersive-card{
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  padding: 1px !important;
  border-radius: 24px !important;
  background:
    linear-gradient(135deg, rgba(123,92,255,.95), rgba(0,212,255,.8) 40%, rgba(255,255,255,.26) 100%) !important;
  box-shadow: 0 26px 60px rgba(0,0,0,.28);
}
.hero__copy > .hero-immersive-card::before{
  content:"";
  position:absolute;
  inset:-120% auto auto -20%;
  width: 60%;
  height: 300%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.15), rgba(255,255,255,0));
  transform: rotate(22deg);
  animation: immersiveSheen 7.2s linear infinite;
  pointer-events:none;
}
@keyframes immersiveSheen{
  0%{ left:-45%; }
  100%{ left:125%; }
}
.hero__copy > .hero-immersive-card .card3d__content{
  background:
    radial-gradient(circle at top right, rgba(123,92,255,.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(0,212,255,.14), transparent 24%),
    rgba(13,16,28,.97) !important;
  border-radius: 23px !important;
  backdrop-filter: blur(10px);
}
.hero__copy > .hero-immersive-card .chips{
  gap: 10px;
}
.hero__copy > .hero-immersive-card .chip{
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.hero__copy > .hero-immersive-card .chip:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
}

/* slider mais premium */
.hero-inline-slider{
  box-shadow: 0 28px 60px rgba(0,0,0,.30) !important;
  border-radius: 30px !important;
}
.hero-inline-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.16) 100%);
  pointer-events:none;
}
.hero-inline-slider__slides img{
  transform: scale(1.02);
}
.hero-inline-slider__slides img.is-active{
  animation: subtleZoom 3.2s ease-in-out forwards;
}
@keyframes subtleZoom{
  from{ transform: scale(1.045); }
  to{ transform: scale(1.0); }
}

@media (max-width: 940px){
  .hero__copy::before{
    inset: -12px -12px auto -12px;
    border-radius: 22px;
  }
}





/* ===== Posicionamento exato do hero ===== */
.hero__inner{
  display:grid !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr) !important;
  gap: 26px !important;
  align-items:start !important;
}

.hero__copy{
  display:flex !important;
  flex-direction:column !important;
  align-self:start !important;
}

.metrics{
  display:grid !important;
  grid-template-columns: repeat(3, minmax(0,1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
  margin-top: 14px !important;
}

.hero__copy > .card3d--inline{
  display:block !important;
  width:100% !important;
  max-width:none !important;
  margin-top:16px !important;
  position:relative !important;
}

.hero__art{
  position:relative !important;
  min-height: 340px !important;
  display:flex !important;
  flex-direction:column !important;
  gap:18px !important;
}

.hero-inline-slider{
  width:100% !important;
  max-width:none !important;
  align-self:stretch !important;
}

@media (max-width: 940px){
  .hero__inner{
    grid-template-columns:1fr !important;
  }
  .metrics{
    grid-template-columns:1fr !important;
  }
}


/* ===== Slider premium da home ===== */
.hero-inline-slider{
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #090b12;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.06);
  isolation: isolate;
}
.hero-inline-slider__slides{
  position: relative;
  min-height: 640px;
  background: #05070d;
}
.hero-inline-slider__slides img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity .9s ease, transform 4.6s ease;
  filter: saturate(1.04) contrast(1.04);
}
.hero-inline-slider__slides img.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.hero-inline-slider__overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.02) 40%, rgba(0,0,0,.20) 100%);
  pointer-events: none;
  z-index: 2;
}
.hero-inline-slider__dots{
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-inline-slider__dots button{
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.40);
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
  transition: transform .2s ease, background .2s ease;
}
.hero-inline-slider__dots button.is-active{
  background: rgba(255,255,255,.96);
  transform: scale(1.08);
}
@media (max-width: 1100px){
  .hero-inline-slider__slides{ min-height: 560px; }
}
@media (max-width: 760px){
  .hero-inline-slider__slides{ min-height: 300px; }
}


/* ===== Suporte a vídeo no slider ===== */
.hero-inline-slider__slides video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .9s ease, transform 4.6s ease;
  background: #000;
}
.hero-inline-slider__slides video.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}


/* ===== Vídeo completo dentro do card ===== */
.hero-inline-slider__slides video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  opacity: 0;
  transform: none;
  transition: opacity .9s ease;
}
.hero-inline-slider__slides video.is-active{
  opacity: 1;
  z-index: 1;
}


/* ===== Vídeo no slider: preencher card e tocar até o fim ===== */
.hero-inline-slider__slides video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .9s ease, transform 4.6s ease;
}
.hero-inline-slider__slides video.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
