/* ============================================================
   Silvio Cesar — Portfólio Premium
   Dark minimalista elegante · neon azul/roxo sutil
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #050505;
  --bg-soft: #0a0a0c;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-2: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --txt: #f4f5f7;
  --txt-dim: #a7abb4;
  --txt-mute: #6c7079;
  --blue: #5b8cff;
  --violet: #a06bff;
  --grad: linear-gradient(120deg, #5b8cff 0%, #a06bff 55%, #7de2ff 100%);
  --grad-soft: linear-gradient(120deg, rgba(91,140,255,.18), rgba(160,107,255,.18));
  --glow-blue: 0 0 40px rgba(91, 140, 255, .35);
  --radius: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --shadow: 0 30px 80px -30px rgba(0, 0, 0, .8);
  --maxw: 1240px;
  --font-d: "Sora", sans-serif;
  --font-b: "Manrope", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
html.lenis { scroll-behavior: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 900px) { body { cursor: auto; } }

img { max-width: 100%; display: block; -webkit-user-drag: none; }
a { color: inherit; text-decoration: none; }
input, textarea, select, [contenteditable="true"] { user-select: text; }
::selection { background: rgba(91, 140, 255, .35); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: linear-gradient(#5b8cff, #a06bff); border-radius: 10px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: 820px; }
.section { position: relative; padding: 120px 0; z-index: 2; }
.grad-text {
  background: var(--grad); -webkit-background-clip: text;
  background-clip: text; color: transparent;
}
.eyebrow {
  display: inline-block; font-family: var(--font-d); font-size: .78rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--blue);
  margin-bottom: 18px; font-weight: 600;
}
.section__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section__head h2, .sobre__text h2, .contato__info h2 { font-family: var(--font-d); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.08; }
.section__head p { color: var(--txt-dim); margin-top: 18px; font-size: 1.05rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-d); font-weight: 600; font-size: .95rem;
  padding: 15px 28px; border-radius: 100px; border: 1px solid transparent;
  cursor: none; transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
  overflow: hidden; white-space: nowrap;
}
.btn i { transition: transform .35s var(--ease); }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 40px -12px rgba(91,140,255,.6); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 55px -12px rgba(160,107,255,.75); }
.btn--primary:hover i { transform: translateX(4px); }
.btn--ghost { background: var(--panel); color: var(--txt); border-color: var(--line-strong); backdrop-filter: blur(12px); }
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: var(--glow-blue); }
.btn--block { width: 100%; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 9px; font-size: .8rem; font-weight: 600;
  padding: 9px 16px; border-radius: 100px; background: var(--panel);
  border: 1px solid var(--line); color: var(--txt-dim); backdrop-filter: blur(10px);
}
.pill i { color: var(--blue); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 100000; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s var(--ease), visibility .8s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; width: min(300px, 70vw); }
.preloader__mark {
  font-family: var(--font-d); font-weight: 800; font-size: 3rem; letter-spacing: -.03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 26px; animation: pulseMark 1.6s var(--ease) infinite;
}
@keyframes pulseMark { 0%,100%{opacity:.55;transform:scale(.97)} 50%{opacity:1;transform:scale(1)} }
.preloader__bar { height: 2px; width: 100%; background: var(--line); border-radius: 4px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--grad); }
.preloader__pct { margin-top: 14px; font-family: var(--font-d); font-size: .8rem; color: var(--txt-mute); letter-spacing: .1em; }

/* ---------- Progress + cursor ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 9998; box-shadow: var(--glow-blue); }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 99999; transform: translate(-50%, -50%); }
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.5); transition: width .3s var(--ease), height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.cursor-ring.hover { width: 60px; height: 60px; background: rgba(91,140,255,.14); border-color: transparent; }
.mouse-glow { position: fixed; width: 480px; height: 480px; border-radius: 50%; pointer-events: none; z-index: 1; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(91,140,255,.14), transparent 62%); filter: blur(20px); transition: opacity .4s; }
@media (max-width: 900px) { .cursor-dot, .cursor-ring, .mouse-glow, .scroll-progress { display: none; } }

/* ---------- Ambient bg ---------- */
.fx-canvas { position: fixed; inset: 0; z-index: 0; opacity: .5; }
.grid-bg {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .35;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 20%, transparent 80%);
}
.orb { position: fixed; border-radius: 50%; filter: blur(90px); z-index: 0; pointer-events: none; opacity: .5; }
.orb--1 { width: 520px; height: 520px; background: radial-gradient(circle, rgba(91,140,255,.5), transparent 70%); top: -140px; right: -120px; animation: floatOrb 16s ease-in-out infinite; }
.orb--2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(160,107,255,.42), transparent 70%); bottom: 4%; left: -160px; animation: floatOrb 20s ease-in-out infinite reverse; }
@keyframes floatOrb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,50px)} }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px clamp(20px, 4vw, 48px);
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { padding: 14px clamp(20px, 4vw, 48px); background: rgba(6,6,8,.72); backdrop-filter: blur(18px); border-bottom-color: var(--line); }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  font-family: var(--font-d); font-weight: 800; font-size: 1rem;
  background: var(--grad-soft); border: 1px solid var(--line-strong); color: #fff;
}
.nav__name { font-family: var(--font-d); font-weight: 700; letter-spacing: -.01em; }
.nav__name span { color: var(--blue); }
.nav__links { display: flex; gap: 6px; }
.nav__link {
  position: relative; font-weight: 500; font-size: .93rem; color: var(--txt-dim);
  padding: 9px 15px; border-radius: 100px; transition: color .3s, background .3s;
}
.nav__link::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 4px; height: 1px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav__link:hover { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link.active { color: #fff; }
.nav__cta { padding: 11px 22px; font-size: .88rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .35s var(--ease); }
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw); flex-direction: column; gap: 4px;
    padding: 110px 26px; background: rgba(8,8,10,.96); backdrop-filter: blur(22px);
    border-left: 1px solid var(--line); transform: translateX(105%); transition: transform .5s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__link { font-size: 1.05rem; padding: 14px 16px; }
}

/* ---------- Hero ---------- */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.hero__title { font-family: var(--font-d); font-weight: 800; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 1.02; letter-spacing: -.03em; margin: 24px 0 20px; }
.hero__title .line { display: block; overflow: hidden; opacity: 1; }
.hero__title em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__typed { font-family: var(--font-d); font-size: clamp(1.1rem, 2.4vw, 1.6rem); font-weight: 600; margin-bottom: 22px; min-height: 1.6em; }
.hero__typed-prefix { color: var(--txt-mute); margin-right: 8px; }
.hero__desc { color: var(--txt-dim); font-size: 1.08rem; max-width: 520px; margin-bottom: 34px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero__stats { display: flex; gap: 40px; }
.stat b { font-family: var(--font-d); font-size: 2rem; font-weight: 700; display: block; }
.stat span { color: var(--txt-mute); font-size: .82rem; }

.hero__visual { display: flex; justify-content: center; }
.hero__photo-wrap { position: relative; width: min(420px, 84vw); aspect-ratio: 3/4; }
.hero__ring { position: absolute; inset: -6%; border: 1px solid var(--line-strong); border-radius: 50%; animation: spin 26s linear infinite; }
.hero__ring--2 { inset: 6%; border-style: dashed; border-color: rgba(91,140,255,.3); animation-duration: 40s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.photo-stack { position: absolute; inset: 10%; border-radius: 28px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.photo-stack .photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.08); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.photo-stack .photo.active { opacity: 1; transform: scale(1); }
.photo-stack::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,5,5,.6), transparent 55%); }
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px; z-index: 3;
  font-family: var(--font-d); font-size: .8rem; font-weight: 600; padding: 10px 15px; border-radius: 100px;
  background: rgba(12,12,16,.78); border: 1px solid var(--line-strong); backdrop-filter: blur(12px);
  box-shadow: var(--shadow); animation: floaty 5s ease-in-out infinite;
}
.float-chip i { color: var(--blue); }
.chip--1 { top: 8%; left: -8%; animation-delay: .2s; }
.chip--2 { top: 44%; right: -12%; animation-delay: 1.1s; }
.chip--3 { bottom: 8%; left: 2%; animation-delay: .6s; }

.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--txt-mute); }
.hero__scroll span { width: 22px; height: 36px; border: 1px solid var(--line-strong); border-radius: 12px; position: relative; }
.hero__scroll span::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; background: var(--blue); border-radius: 3px; animation: scrolly 1.6s infinite; }
@keyframes scrolly { 0%{opacity:0;top:6px} 40%{opacity:1} 100%{opacity:0;top:18px} }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); padding: 22px 0; overflow: hidden; background: var(--bg-soft); position: relative; z-index: 2; }
.marquee__track { display: flex; gap: 28px; align-items: center; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee__track span { font-family: var(--font-d); font-weight: 600; font-size: 1.5rem; color: var(--txt); opacity: .85; }
.marquee__track i { color: var(--blue); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Glass card / tilt ---------- */
.glass-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); backdrop-filter: blur(16px); }
[data-tilt] { transform-style: preserve-3d; transition: transform .3s var(--ease); will-change: transform; }

/* ---------- Sobre ---------- */
.sobre__img { position: relative; overflow: hidden; padding: 0; aspect-ratio: 4/5; }
.sobre__img img { width: 100%; height: 100%; object-fit: cover; }
.sobre__badge { position: absolute; bottom: 20px; right: 20px; background: rgba(10,10,12,.85); border: 1px solid var(--line-strong); border-radius: 16px; padding: 14px 20px; text-align: center; backdrop-filter: blur(10px); }
.sobre__badge b { font-family: var(--font-d); font-size: 1.9rem; display: block; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.sobre__badge span { font-size: .72rem; color: var(--txt-mute); letter-spacing: .1em; }
.sobre__text p { color: var(--txt-dim); margin-top: 18px; }
.sobre__text h2 { margin-top: 10px; }
.skills { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 30px; }
.skills span { display: inline-flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 500; padding: 8px 15px; border-radius: 100px; background: var(--panel-2); border: 1px solid var(--line); }
.skills i { color: var(--blue); }

/* ---------- Serviços ---------- */
.service-featured { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; padding: 42px; margin-bottom: 30px; overflow: hidden; }
.service-featured__tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-d); font-size: .78rem; font-weight: 600; color: var(--violet); align-self: flex-start; padding: 8px 14px; border-radius: 100px; background: rgba(160,107,255,.12); border: 1px solid rgba(160,107,255,.3); }
.service-featured__body h3 { font-family: var(--font-d); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; margin-bottom: 12px; }
.service-featured__body p { color: var(--txt-dim); max-width: 640px; margin-bottom: 22px; }
.service-featured__glow { position: absolute; width: 300px; height: 300px; right: -60px; top: -60px; background: radial-gradient(circle, rgba(160,107,255,.4), transparent 70%); filter: blur(40px); pointer-events: none; }
@media (max-width: 720px) { .service-featured { grid-template-columns: 1fr; } }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card { position: relative; padding: 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); overflow: hidden; transition: transform .45s var(--ease), border-color .45s, background .45s; }
.svc-card::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity .45s; }
.svc-card:hover { transform: translateY(-8px); border-color: var(--line-strong); }
.svc-card:hover::before { opacity: 1; }
.svc-card > * { position: relative; z-index: 1; }
.svc-card__icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 14px; font-size: 1.25rem; color: var(--blue); background: rgba(91,140,255,.1); border: 1px solid rgba(91,140,255,.22); margin-bottom: 20px; transition: transform .45s var(--ease); }
.svc-card:hover .svc-card__icon { transform: scale(1.08) rotate(-6deg); }
.svc-card h3 { font-family: var(--font-d); font-size: 1.18rem; font-weight: 600; margin-bottom: 8px; }
.svc-card p { color: var(--txt-dim); font-size: .93rem; }

/* ---------- Diferenciais ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feat { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s; }
.feat:hover { transform: translateY(-5px); border-color: var(--blue); }
.feat i { font-size: 1.2rem; color: var(--blue); margin-top: 3px; }
.feat h4 { font-family: var(--font-d); font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.feat p { color: var(--txt-mute); font-size: .86rem; }

/* ---------- Portfólio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proj { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3.2; background: var(--bg-soft); }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), filter .6s; filter: saturate(.85) brightness(.72); }
.proj__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 26px; background: linear-gradient(to top, rgba(5,5,6,.95) 8%, rgba(5,5,6,.35) 55%, transparent); transform: translateY(14px); opacity: .9; transition: transform .5s var(--ease), opacity .5s; }
.proj__cat { font-family: var(--font-d); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.proj h3 { font-family: var(--font-d); font-size: 1.3rem; font-weight: 600; }
.proj p { color: var(--txt-dim); font-size: .9rem; margin: 6px 0 16px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s var(--ease), opacity .4s, margin .5s; }
.proj__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-d); font-weight: 600; font-size: .88rem; padding: 11px 20px; border-radius: 100px; background: var(--grad); color: #fff; align-self: flex-start; transform: translateY(10px); opacity: 0; transition: transform .5s var(--ease) .05s, opacity .4s; }
.proj:hover img { transform: scale(1.08); filter: saturate(1.05) brightness(.95); }
.proj:hover .proj__overlay { transform: translateY(0); opacity: 1; }
.proj:hover p { max-height: 90px; opacity: 1; margin: 6px 0 16px; }
.proj:hover .proj__link { transform: translateY(0); opacity: 1; }

/* ---------- Processo ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); transition: transform .4s var(--ease), border-color .4s; }
.step:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.step__num { font-family: var(--font-d); font-size: 2.6rem; font-weight: 800; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: .9; }
.step h4 { font-family: var(--font-d); font-size: 1.15rem; font-weight: 600; margin: 14px 0 8px; }
.step p { color: var(--txt-dim); font-size: .9rem; }
.step i { position: absolute; top: 30px; right: 30px; color: var(--txt-mute); font-size: 1.1rem; }

/* ---------- Preços ---------- */
.pricing { display: grid; grid-template-columns: 1.05fr 1fr; gap: 26px; align-items: start; }
.pricing__card { position: relative; padding: 40px; overflow: hidden; }
.pricing__card::after { content: ""; position: absolute; top: -80px; left: -40px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(91,140,255,.28), transparent 70%); filter: blur(30px); pointer-events: none; }
.pricing__badge { display: inline-block; font-family: var(--font-d); font-size: .76rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); padding: 7px 15px; border-radius: 100px; background: rgba(91,140,255,.1); border: 1px solid rgba(91,140,255,.25); margin-bottom: 22px; }
.pricing__card h3 { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; }
.pricing__price { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 26px; }
.pricing__price small { color: var(--txt-mute); font-size: .9rem; }
.pricing__price b { font-family: var(--font-d); font-size: 3rem; font-weight: 800; letter-spacing: -.02em; }
.pricing__list { list-style: none; display: grid; gap: 13px; margin-bottom: 30px; }
.pricing__list li { display: flex; align-items: center; gap: 12px; color: var(--txt-dim); font-size: .96rem; }
.pricing__list i { color: var(--blue); font-size: .8rem; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: rgba(91,140,255,.12); }
.pricing__side { display: grid; gap: 18px; }
.pricing__info { padding: 26px; }
.pricing__info-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: var(--violet); background: rgba(160,107,255,.12); border: 1px solid rgba(160,107,255,.25); font-size: 1.1rem; margin-bottom: 16px; }
.pricing__info h4 { font-family: var(--font-d); font-size: 1.15rem; margin-bottom: 8px; }
.pricing__info p { color: var(--txt-dim); font-size: .93rem; }
.notice { display: flex; gap: 14px; padding: 20px 22px; border-radius: var(--radius-sm); background: var(--panel); border: 1px solid var(--line); }
.notice i { color: var(--txt-mute); margin-top: 3px; }
.notice p { font-size: .9rem; color: var(--txt-dim); }
.notice--warn { background: rgba(255,180,60,.06); border-color: rgba(255,180,60,.28); }
.notice--warn i { color: #ffb43c; }

/* ---------- Calculadora ---------- */
.calc__wrap { display: grid; grid-template-columns: 1.4fr .85fr; gap: 0; overflow: hidden; }
.calc__form { padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 22px; border-right: 1px solid var(--line); }
.field { display: flex; flex-direction: column; gap: 9px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-d); font-size: .85rem; font-weight: 500; color: var(--txt-dim); display: flex; justify-content: space-between; align-items: center; }
.range-val { font-family: var(--font-d); color: var(--blue); font-weight: 700; }
.field input[type=text], .field input[type=email], .field input[type=tel], .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; background: rgba(255,255,255,.04);
  border: 1px solid var(--line); color: var(--txt); font-family: var(--font-b); font-size: .95rem; transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91,140,255,.15); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23a7abb4' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.field option { background: #0c0c10; }
.field textarea { resize: vertical; }
input[type=range] { -webkit-appearance: none; appearance: none; height: 4px; border-radius: 4px; background: var(--line-strong); }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%; background: var(--grad); cursor: pointer; box-shadow: 0 0 0 4px rgba(91,140,255,.2); }
input[type=range]::-moz-range-thumb { width: 20px; height: 20px; border: 0; border-radius: 50%; background: #5b8cff; cursor: pointer; }
.choice { display: flex; gap: 10px; flex-wrap: wrap; }
.choice__btn { flex: 1; min-width: 120px; padding: 13px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--line); color: var(--txt-dim); font-family: var(--font-d); font-weight: 500; font-size: .9rem; cursor: none; transition: all .3s var(--ease); }
.choice__btn:hover { border-color: var(--line-strong); color: #fff; }
.choice__btn.active { background: var(--grad-soft); border-color: var(--blue); color: #fff; }
.addons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.addon { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-radius: 12px; background: rgba(255,255,255,.03); border: 1px solid var(--line); font-size: .9rem; cursor: none; transition: border-color .3s, background .3s; }
.addon:hover { border-color: var(--line-strong); }
.addon input { accent-color: #5b8cff; width: 16px; height: 16px; }
.addon:has(input:checked) { border-color: var(--blue); background: var(--grad-soft); }
.calc__summary { padding: 40px; display: flex; flex-direction: column; justify-content: center; background: rgba(255,255,255,.02); }
.calc__summary-label { font-family: var(--font-d); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--txt-mute); }
.calc__total { font-family: var(--font-d); font-size: clamp(2.4rem, 6vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin: 8px 0 4px; }
.calc__note { font-size: .84rem; color: var(--txt-mute); margin-bottom: 26px; }
.calc__disclaimer { font-size: .76rem; color: var(--txt-mute); margin-top: 14px; text-align: center; }

/* ---------- Depoimentos ---------- */
.testimonials { padding-bottom: 54px; }
.testi { padding: 34px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); height: auto; }
.testi__quote { font-size: 1.05rem; color: var(--txt); line-height: 1.7; margin-bottom: 22px; }
.testi__quote::before { content: "\201C"; font-family: Georgia, serif; font-size: 3rem; color: var(--blue); line-height: 0; display: block; height: 22px; opacity: .6; }
.testi__stars { color: #ffc857; margin-bottom: 16px; letter-spacing: 2px; }
.testi__author { display: flex; align-items: center; gap: 14px; }
.testi__avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-d); font-weight: 700; background: var(--grad-soft); border: 1px solid var(--line-strong); }
.testi__author b { font-family: var(--font-d); display: block; font-size: .95rem; }
.testi__author span { font-size: .82rem; color: var(--txt-mute); }
.swiper-pagination-bullet { background: var(--txt-mute); }
.swiper-pagination-bullet-active { background: var(--blue); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--panel); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--line-strong); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 26px; cursor: none; font-family: var(--font-d); font-weight: 600; font-size: 1.02rem; }
.faq-q i { color: var(--blue); transition: transform .4s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--txt-dim); }

/* ---------- Contato ---------- */
.contato__info p { color: var(--txt-dim); margin-top: 16px; }
.contato__links { list-style: none; display: grid; gap: 12px; margin: 30px 0; }
.contato__links a { display: inline-flex; align-items: center; gap: 12px; color: var(--txt-dim); font-weight: 500; transition: color .3s, transform .3s; }
.contato__links i { color: var(--blue); width: 20px; }
.contato__links a:hover { color: #fff; transform: translateX(5px); }
.contato__map { overflow: hidden; height: 220px; }
.contato__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.9) contrast(.85); }
.contato__form { padding: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-self: start; }

/* ---------- Footer ---------- */
.footer { position: relative; z-index: 2; border-top: 1px solid var(--line); background: var(--bg-soft); padding-top: 60px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; padding-bottom: 40px; align-items: start; }
.footer__tag { color: var(--txt-mute); font-size: .9rem; margin-top: 16px; max-width: 340px; }
.footer__nav { display: grid; gap: 10px; }
.footer__nav a { color: var(--txt-dim); font-size: .92rem; transition: color .3s; }
.footer__nav a:hover { color: var(--blue); }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); color: var(--txt-dim); transition: all .35s var(--ease); }
.footer__social a:hover { color: #fff; border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--glow-blue); }
.footer__bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 24px 28px; max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line); color: var(--txt-mute); font-size: .82rem; }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 9500; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25d366; color: #fff; font-size: 1.5rem; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .35s var(--ease); animation: waPulse 2.6s ease-in-out infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes waPulse { 0%,100%{box-shadow:0 12px 30px -8px rgba(37,211,102,.6)} 50%{box-shadow:0 12px 40px -6px rgba(37,211,102,.9)} }

/* ---------- Reveal ---------- */
.reveal, [data-split] { opacity: 0; }
.is-in { animation: fadeUp .9s var(--ease) forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(38px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .cards-grid, .feat-grid, .portfolio-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .two-col, .pricing, .calc__wrap { grid-template-columns: 1fr; }
  .calc__form { border-right: 0; border-bottom: 1px solid var(--line); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .section { padding: 84px 0; }
  .hero { padding-top: 130px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { order: -1; margin-bottom: 20px; }
  .hero__cta, .hero__stats { justify-content: center; }
  .hero__desc { margin-inline: auto; }
  .float-chip { display: none; }
  .service-featured { text-align: left; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .cards-grid, .feat-grid, .portfolio-grid, .steps, .contato__form, .calc__form, .addons { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .stat b { font-size: 1.6rem; }
  .footer__grid, .footer__bottom { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer__social { justify-content: center; }
  .choice__btn { min-width: 100%; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } .reveal, [data-split] { opacity: 1 !important; } }