:root{
  --text:#0b0b0f;
  --muted:#5b5b6a;
  --line:rgba(0,0,0,.08);
  --card:rgba(255,255,255,.78);
  --shadow:0 18px 55px rgba(0,0,0,.10);
  --shadow2:0 10px 28px rgba(0,0,0,.08);
  --radius:18px;
  --accent:#6b5cff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:-apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background:#fff;
}
.wrap{width:min(1120px,92vw); margin:0 auto}

/* background gradients like the reference */
.bg{position:fixed; inset:0; pointer-events:none; overflow:hidden; z-index:-1}
.grad{
  position:absolute; width:820px; height:820px; border-radius:999px;
  filter: blur(66px); opacity:.55; transform: translate3d(0,0,0);
}
.g1{left:-340px; top:-360px; background:radial-gradient(circle at 30% 30%, rgba(190,205,255,.95), rgba(255,255,255,0) 60%)}
.g2{right:-360px; top:120px; background:radial-gradient(circle at 30% 30%, rgba(215,190,255,.92), rgba(255,255,255,0) 60%)}
.g3{left:18%; bottom:-520px; background:radial-gradient(circle at 30% 30%, rgba(210,235,255,.80), rgba(255,255,255,0) 62%)}

/* header */
.header{
  position:sticky; top:0;
  backdrop-filter: blur(18px);
  background:rgba(255,255,255,.62);
  border-bottom:1px solid var(--line);
  z-index:10;
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:14px;
}
.logo{font-weight:850; letter-spacing:-.01em; color:var(--text); text-decoration:none}
.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); text-decoration:none; font-weight:650}
.nav a:hover{color:var(--text)}

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:999px;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.72);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{background:#fff; transform: translateY(-1px)}
.btn--primary{
  background:var(--text);
  color:#fff;
  border-color:rgba(0,0,0,.25);
}
.btn--primary:hover{filter:brightness(1.06)}
.btn--small{padding:10px 14px; font-size:13px}

/* hero */
.hero{padding:56px 0 28px}
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.pill{
  display:inline-flex; padding:6px 12px;
  border-radius:999px; border:1px solid var(--line);
  background:rgba(255,255,255,.66);
  color:var(--muted);
  font-size:13px; font-weight:650;
  width:fit-content;
}
h1{
  margin:12px 0 10px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.lead{margin:0 0 18px; color:var(--muted); font-size:18px; max-width:60ch}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap}
.hero__mini{
  margin-top:18px;
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.mini{
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 12px;
  background:rgba(255,255,255,.62);
}
.mini__k{font-size:12px; color:var(--muted)}
.mini__v{font-size:13px; font-weight:800}
.tiny{margin:14px 0 0; color:var(--muted); font-size:12px}

.hero__mock{display:flex; justify-content:flex-end}
.mock{
  width:min(520px, 100%);
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.52);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.mock__top{
  display:flex; gap:8px;
  padding:14px 16px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.dot{width:10px; height:10px; border-radius:999px; background:rgba(0,0,0,.15)}
.mock__body{padding:16px}
.mock__title{font-weight:900; letter-spacing:-.02em}
.mock__grid{
  margin-top:12px;
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
}
.mock__grid img{
  width:100%; height:96px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(255,255,255,.6);
}
.mock__bar{
  margin-top:14px;
  height:14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:rgba(0,0,0,.04);
}

/* sections */
.section{padding:34px 0}
.section__head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:14px; margin-bottom:14px;
}
.section__head h2{margin:0; font-size:22px; letter-spacing:-.01em}
.muted{color:var(--muted); margin:0}

/* service cards */
.cards{display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px}
.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px 18px 10px;
  box-shadow:var(--shadow2);
}
.card h3{margin:0 0 10px; font-size:16px}
.card p{margin:0 0 12px; color:var(--muted)}
.card ul{margin:0; padding-left:18px; color:var(--muted)}
.card li{margin:0 0 8px}

/* dark band section like the reference */
.band{
  padding:40px 0;
  background:rgba(12,14,26,.94);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.band__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.band h2{margin:0 0 10px; font-size:24px; letter-spacing:-.01em}
.band p{margin:0 0 18px; color:rgba(255,255,255,.78)}
.features{display:grid; gap:12px}
.feat{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  border-radius:18px;
  padding:14px 14px;
}
.feat__t{font-weight:850}
.feat__d{margin-top:6px; color:rgba(255,255,255,.78); font-size:14px}
.quote{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  border-radius:18px;
  padding:14px 14px;
  margin-bottom:12px;
}
.quote__k{opacity:.75; font-size:12px}
.quote__v{margin-top:6px; font-weight:850}

/* portfolio */
.chips{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 6px}
.chip{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.66);
  color:var(--muted);
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}
.chip:hover{color:var(--text)}
.port-block{
  margin-top:16px;
  background:rgba(255,255,255,.44);
  border:1px solid var(--line);
  border-radius:22px;
  padding:16px;
}
.port-head{display:flex; align-items:flex-end; justify-content:space-between; gap:10px; margin-bottom:12px}
.port-head h3{margin:0; font-size:16px}

.grid{display:grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap:10px}
.shot{
  display:block;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.shot:hover{transform: translateY(-2px); box-shadow:0 14px 28px rgba(0,0,0,.10)}
.shot img{width:100%; height:170px; object-fit:cover; display:block}

/* contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.contact__cta{display:flex; gap:12px; flex-wrap:wrap; margin-top:12px}
.contact__note{margin-top:12px; color:var(--muted); font-weight:700}
.card2{
  height:100%;
  background:var(--card);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow2);
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}
.card2__t{font-weight:900}
.card2__d{margin-top:10px; color:var(--muted); max-width:44ch}
.card2__bar{
  margin-top:auto;
  height:14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.08);
  background:linear-gradient(90deg, rgba(107,92,255,.35), rgba(215,190,255,.25), rgba(190,205,255,.25));
}

.footer{
  margin-top:24px;
  padding:22px 0 44px;
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
}

/* Floating WA */
.wa{
  position:fixed;
  right:16px;
  bottom:16px;
  width:54px; height:54px;
  border-radius:999px;
  background:rgba(0,0,0,.86);
  color:#fff;
  display:grid; place-items:center;
  box-shadow:0 18px 40px rgba(0,0,0,.22);
  border:1px solid rgba(255,255,255,.14);
  text-decoration:none;
  font-weight:900;
  z-index:20;
}

/* Lightbox (from previous build) */
html.lb-open{overflow:hidden}
.lb{position:fixed; inset:0; display:none; z-index:50}
.lb.is-open{display:block}
.lb__backdrop{position:absolute; inset:0; background:rgba(0,0,0,.62)}
.lb__panel{
  position:relative;
  margin:18px auto;
  width:min(1100px, 94vw);
  height:calc(100vh - 36px);
  border-radius:24px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(15,15,18,.52);
  backdrop-filter: blur(18px);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.lb__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.lb__meta{display:flex; gap:10px; align-items:baseline; color:#fff}
.lb__title{font-weight:850; letter-spacing:-.01em}
.lb__count{opacity:.75; font-size:13px}
.lb__btn{
  appearance:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  border-radius:999px;
  padding:10px 14px;
  font-weight:800;
  cursor:pointer;
}
.lb__btn:hover{background:rgba(255,255,255,.12)}
.lb__stage{
  position:relative;
  flex:1;
  display:grid;
  grid-template-columns: 54px 1fr 54px;
  gap:10px;
  align-items:center;
  padding:12px;
}
.lb__nav{
  width:54px; height:54px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
}
.lb__nav:hover{background:rgba(255,255,255,.14)}
.lb__figure{
  margin:0;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.lb__img{
  max-width:100%;
  max-height:calc(100vh - 220px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  object-fit:contain;
}
.lb__caption{color:rgba(255,255,255,.82); font-size:13px}
.lb__thumbs{
  padding:10px 12px 14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  gap:10px;
  overflow:auto;
  scrollbar-width: thin;
}
.lb__thumb{
  width:86px; height:56px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  overflow:hidden;
  cursor:pointer;
  flex:0 0 auto;
  padding:0;
}
.lb__thumb img{width:100%; height:100%; object-fit:cover; display:block; opacity:.9}
.lb__thumb.is-active{
  border-color:rgba(255,255,255,.40);
  box-shadow:0 10px 22px rgba(0,0,0,.25);
}

/* Responsive */
@media (max-width: 980px){
  .hero__inner{grid-template-columns:1fr}
  .band__inner{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .grid{grid-template-columns: repeat(3, minmax(0,1fr))}
  .shot img{height:160px}
}
@media (max-width: 740px){
  .nav{display:none}
  .hero{padding:44px 0 18px}
  .hero__mini{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid{grid-template-columns: repeat(2, minmax(0,1fr))}
  .shot img{height:150px}
  .mock__grid img{height:84px}
  .lb__panel{height:calc(100vh - 24px); margin:12px auto; border-radius:18px}
  .lb__stage{grid-template-columns: 44px 1fr 44px}
  .lb__nav{width:44px; height:44px; font-size:26px}
  .lb__img{max-height:calc(100vh - 240px)}
  .lb__thumb{width:78px; height:52px}
}


/* Ajustes Vicky v4 */
.essential-note{
  margin: 10px 0 0 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 640px;
}

/* Aproximar Serviços do primeiro bloco */
.hero{ padding-bottom: 8px !important; }
#servicos.section{ padding-top: 16px !important; }
#servicos .section__head{ margin-bottom: 10px !important; }


/* Ajustes Vicky v5 */
.essential-wrap{ margin-top: 0 !important; margin-bottom: 0 !important; }
.essential-note{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 720px;
}


/* Ajustes Vicky v6 */
.essential-wrap{ margin-top: 0 !important; margin-bottom: 0 !important; }


/* Ajustes Vicky v7 */
/* Texto "O essencial..." mais perto dos retângulos (sem grudar) */
.essential-wrap{ margin-top: 0 !important; margin-bottom: 0 !important; }

/* Subir mais a seção Serviços (título + 2 cards) */
.hero{ padding-bottom: 0px !important; }
#servicos.section{ padding-top: 8px !important; }
#servicos .section__head{ margin-bottom: 8px !important; }


/* Ajustes Vicky v8 */
/* Nota "O essencial..." logo abaixo dos 3 retângulos (fora deles), bem próxima */


/* Ajuste fino Vicky v12 (forçar posição da frase) */
.essential-note--hero{
  margin-top: 18px !important; /* desce um pouco mais */
  margin-bottom: 0 !important;
}
