/* =====================================================
   EVERTON — Vitrine / catálogo de sites
   Tema escuro premium (chrome neutro, thumbnails coloridos brilham)
   ===================================================== */

:root {
  --bg:      #0d0d11;
  --bg-2:    #141419;
  --bg-3:    #1b1b22;
  --bg-4:    #24242e;
  --white:   #f3f1ee;
  --gray:    #9c9ba6;
  --gray-2:  #63626d;
  --accent:  #ff5e3a;
  --accent-2:#ff3d84;
  --line:    rgba(243, 241, 238, .1);
  --line-soft: rgba(243, 241, 238, .06);

  --grad: linear-gradient(100deg, #ff7a3d 0%, #ff3d84 100%);

  --font-display: 'Syne', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--white); line-height: 1.65; overflow-x: hidden; overflow-x: clip; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }

/* grão sutil */
body::before { content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: .03; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }

/* ---------- abertura (intro da vitrine) ---------- */
.intro { display: none; }
html.play-intro .intro {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh;
  z-index: 10000; background: var(--bg); overflow: hidden;
  animation: intro-out .6s var(--ease) 1s forwards;
}
html.play-intro .intro::before {
  content: ""; position: absolute; width: 72vw; max-width: 520px; aspect-ratio: 1; pointer-events: none;
  background: radial-gradient(circle, rgba(255,94,58,.2), rgba(255,61,132,.12) 42%, transparent 70%);
  filter: blur(12px);
  animation: intro-glow 1.4s var(--ease) forwards;
}
.intro__logo { position: relative; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 9vw, 4.6rem); letter-spacing: 2px; color: var(--white); opacity: 0; }
html.play-intro .intro__logo { animation: intro-logo .65s var(--ease) .1s forwards; }
.intro__dot { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.intro__line { position: relative; width: 0; height: 3px; border-radius: 3px; background: var(--grad); margin-top: 20px; }
html.play-intro .intro__line { animation: intro-line .55s var(--ease) .5s forwards; }
@keyframes intro-logo { from { opacity: 0; transform: translateY(10px) scale(.94); filter: blur(4px); } to { opacity: 1; transform: none; filter: none; } }
@keyframes intro-line { from { width: 0; opacity: .3; } to { width: min(240px, 62vw); opacity: 1; } }
@keyframes intro-glow { from { opacity: 0; transform: scale(.8); } 60% { opacity: 1; } to { opacity: .7; transform: scale(1); } }
@keyframes intro-out { to { transform: translateY(-101%); visibility: hidden; } }

/* ---------- tipografia ---------- */
.eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; font-weight: 700; color: var(--accent); margin-bottom: 16px; }
.eyebrow--accent { color: var(--accent); }
.section-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.02; letter-spacing: -1px; }
.section-sub { color: var(--gray); font-size: 1.06rem; max-width: 56ch; margin: 16px auto 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- botões ---------- */
.btn { --pad-y: 14px; --pad-x: 28px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: var(--pad-y) var(--pad-x); font-family: var(--font-body); font-weight: 700; font-size: .95rem; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer; transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s, border-color .3s; white-space: nowrap; }
.btn--lg { --pad-y: 16px; --pad-x: 34px; font-size: 1rem; }
.btn--accent { background: var(--grad); color: #fff; box-shadow: 0 14px 34px -12px rgba(255,61,132,.6); }
.btn--accent:hover { transform: translateY(-3px); box-shadow: 0 20px 44px -12px rgba(255,61,132,.8); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }

/* ---------- header ---------- */
.header { position: sticky; top: 0; z-index: 100; background: rgba(13,13,17,.7); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-soft); transition: background .4s; }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 15px 0; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: 1px; color: var(--white); }
.logo__dot { color: var(--accent); }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 600; font-size: .94rem; color: var(--gray); position: relative; padding: 4px 0; transition: color .25s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--grad); border-radius: 2px; transition: width .3s var(--ease); }
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; position: relative; z-index: 95; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: var(--bg-3); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.nav-toggle span { width: 20px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(50px, 8vw, 100px) 0 0; overflow: hidden; }
.hero__glow { position: absolute; top: -160px; left: 50%; transform: translateX(-50%); width: 900px; height: 560px; z-index: 0; pointer-events: none;
  background: radial-gradient(50% 60% at 50% 0%, rgba(255,94,58,.22), transparent 70%), radial-gradient(40% 50% at 70% 30%, rgba(255,61,132,.18), transparent 70%); filter: blur(10px); }
.hero__inner { position: relative; z-index: 1; text-align: center; max-width: 900px; margin: 0 auto; }
.hero__badge { display: inline-flex; align-items: center; gap: 9px; background: var(--bg-2); border: 1px solid var(--line); color: var(--gray); font-weight: 600; font-size: .84rem; padding: 8px 16px; border-radius: 100px; margin-bottom: 26px; }
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #33d17a; box-shadow: 0 0 0 3px rgba(51,209,122,.2); }
.hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -2px; margin-bottom: 24px; }
.hero__lead { color: var(--gray); font-size: 1.16rem; max-width: 60ch; margin: 0 auto 34px; }
.hero__lead strong { color: var(--white); font-weight: 600; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 48px; }
.hero__stats { display: inline-flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; padding: 20px 30px; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 18px; }
.hero__stats > div:not(.sep) { text-align: center; }
.hero__stats strong { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; display: block; }
.hero__stats span { font-size: .8rem; color: var(--gray); }
.hero__stats .sep { width: 1px; height: 34px; background: var(--line); }

/* marquee */
.marquee { margin-top: clamp(46px, 7vw, 80px); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); overflow: hidden; padding: 20px 0; }
.marquee__track { display: inline-flex; align-items: center; gap: 26px; white-space: nowrap; animation: slide 40s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--gray-2); text-transform: uppercase; letter-spacing: -.5px; }
.marquee__track i { color: var(--accent); font-style: normal; font-size: .9rem; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- portfólio ---------- */
.portfolio { padding: clamp(56px, 8vw, 100px) 0; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { display: block; background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 18px; overflow: hidden; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.card:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 40px 70px -34px #000; }
.card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--bg-3); }
.card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform .8s var(--ease); }
.card:hover .card__img img { transform: scale(1.05); }
.card__img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(13,13,17,.5)); opacity: 0; transition: opacity .4s; }
.card:hover .card__img::after { opacity: 1; }
.card__view { position: absolute; left: 16px; bottom: 16px; z-index: 2; background: var(--grad); color: #fff; font-weight: 700; font-size: .84rem; padding: 9px 16px; border-radius: 100px; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.card:hover .card__view { opacity: 1; transform: none; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.card__tag { text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 700; color: var(--accent); }
.card__body h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; }
.card__body p { color: var(--gray); font-size: .92rem; }
.portfolio__note { text-align: center; margin-top: 40px; color: var(--gray); font-size: 1.02rem; }
.portfolio__note a { color: var(--white); font-weight: 700; border-bottom: 2px solid var(--accent); padding-bottom: 2px; transition: color .25s; }
.portfolio__note a:hover { color: var(--accent); }

/* ---------- monte o seu (personalizador) ---------- */
.monte { padding: clamp(56px, 8vw, 96px) 0; }
.mk-studio { display: grid; grid-template-columns: 320px 1fr; gap: 22px; align-items: start; }
.mk-panel { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 20px; padding: 24px; position: sticky; top: 84px; }
.mk-ctrl { margin-bottom: 24px; }
.mk-ctrl:last-child { margin-bottom: 0; }
.mk-ctrl__label { font-weight: 700; font-size: .95rem; margin-bottom: 12px; }
.mk-swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.mk-swatch { width: 38px; height: 38px; border-radius: 50%; cursor: pointer; border: none; padding: 0; box-shadow: 0 0 0 2px var(--bg-2), 0 0 0 2px transparent; transition: transform .2s var(--ease), box-shadow .2s; }
.mk-swatch:hover { transform: scale(1.08); }
.mk-swatch.is-on { box-shadow: 0 0 0 2px var(--bg-2), 0 0 0 4px #fff; }
.mk-opts { display: grid; gap: 8px; }
.mk-opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--bg-3); border: 1px solid var(--line-soft); color: var(--white); border-radius: 12px; padding: 11px 14px; cursor: pointer; font-size: .92rem; font-weight: 600; transition: border-color .2s, background .2s, transform .15s; }
.mk-opt:hover { transform: translateY(-1px); }
.mk-opt.is-on { border-color: var(--accent); background: rgba(255,94,58,.1); }
.mk-tick { opacity: 0; color: var(--accent); font-weight: 800; }
.mk-opt.is-on .mk-tick { opacity: 1; }
.mk-f-modern { font-family: 'Poppins', sans-serif; }
.mk-f-elegant { font-family: 'Fraunces', serif; font-style: italic; }
.mk-f-fun { font-family: 'Baloo 2', cursive; }
.mk-seg { display: flex; background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 12px; padding: 4px; gap: 4px; }
.mk-seg button { flex: 1; background: transparent; border: none; color: var(--gray); border-radius: 8px; padding: 9px; cursor: pointer; font-family: inherit; font-weight: 600; font-size: .88rem; transition: background .2s, color .2s; }
.mk-seg button.is-on { background: var(--white); color: #14141a; }
.mk-frame { background: var(--bg-3); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 80px -40px #000; }
.mk-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-2); border-bottom: 1px solid var(--line-soft); }
.mk-dots { display: flex; gap: 6px; }
.mk-dots i { width: 11px; height: 11px; border-radius: 50%; background: #45454f; }
.mk-url { flex: 1; text-align: center; background: var(--bg-3); border-radius: 8px; padding: 6px 12px; font-size: .8rem; color: var(--gray); max-width: 280px; margin: 0 auto; }

/* mini-site personalizável (vars próprias --mk-*) */
.mk-site {
  --mk-accent: #ff5e3a; --mk-ink: #ffffff; --mk-font: 'Poppins', sans-serif;
  --mk-bg: #ffffff; --mk-text: #191922; --mk-muted: #6b6b76; --mk-card: #f5f5f8; --mk-border: rgba(0,0,0,.08); --mk-radius: 16px;
  font-family: var(--mk-font); background: var(--mk-bg); color: var(--mk-text);
  transition: background .35s var(--ease), color .35s var(--ease);
  padding: 26px clamp(20px, 4vw, 44px) 40px;
}
.mk-site .s-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 40px; }
.mk-site .s-logo { font-weight: 700; font-size: 1.3rem; display: flex; align-items: center; gap: 8px; }
.mk-site .s-logo .dot { width: 12px; height: 12px; background: var(--mk-accent); border-radius: calc(var(--mk-radius) * .25); transition: background .35s, border-radius .35s; }
.mk-site .s-nav { display: flex; gap: 20px; }
.mk-site .s-nav span { color: var(--mk-muted); font-size: .92rem; font-weight: 500; }
.mk-site .s-nav span:first-child { color: var(--mk-accent); }
.mk-site .s-btn { background: var(--mk-accent); color: var(--mk-ink); padding: 10px 18px; border-radius: var(--mk-radius); font-weight: 600; font-size: .9rem; transition: all .35s var(--ease); }
.mk-site .s-hero { text-align: center; max-width: 560px; margin: 0 auto; }
.mk-site .s-badge { display: inline-block; background: color-mix(in srgb, var(--mk-accent) 14%, transparent); color: var(--mk-accent); font-weight: 600; font-size: .82rem; padding: 7px 15px; border-radius: var(--mk-radius); margin-bottom: 20px; transition: all .35s var(--ease); }
.mk-site .s-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.08; letter-spacing: -.5px; font-weight: 700; margin-bottom: 16px; }
.mk-site .s-hero h1 em { font-style: normal; color: var(--mk-accent); transition: color .35s; }
.mk-site .s-hero p { color: var(--mk-muted); font-size: 1.05rem; margin-bottom: 26px; }
.mk-site .s-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.mk-site .s-primary { background: var(--mk-accent); color: var(--mk-ink); padding: 13px 26px; border-radius: var(--mk-radius); font-weight: 600; transition: all .35s var(--ease); }
.mk-site .s-outline { background: transparent; color: var(--mk-text); border: 1.5px solid var(--mk-border); padding: 13px 26px; border-radius: var(--mk-radius); font-weight: 600; transition: all .35s var(--ease); }
.mk-site .s-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.mk-site .s-card { background: var(--mk-card); border: 1px solid var(--mk-border); border-radius: var(--mk-radius); padding: 22px; transition: all .35s var(--ease); }
.mk-site .s-ico { width: 42px; height: 42px; border-radius: calc(var(--mk-radius) * .6); background: color-mix(in srgb, var(--mk-accent) 16%, transparent); color: var(--mk-accent); display: grid; place-items: center; font-size: 1.2rem; margin-bottom: 14px; transition: all .35s var(--ease); }
.mk-site .s-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.mk-site .s-card p { color: var(--mk-muted); font-size: .86rem; }

.mk-cta { text-align: center; margin-top: 36px; }
.mk-cta p { color: var(--gray); margin-bottom: 16px; font-size: 1.05rem; }
.mk-cta p strong { color: var(--white); }

@media (max-width: 860px) {
  .mk-studio { grid-template-columns: 1fr; }
  .mk-panel { position: static; }
  /* preview sobe pro topo e fica fixo enquanto os controles rolam embaixo */
  .mk-frame { order: -1; position: sticky; top: 70px; z-index: 5; }
  /* preview enxuto no celular pra sobrar espaço confortável aos controles */
  .mk-site { padding: 16px 18px 20px; }
  .mk-site .s-nav { display: none; }
  .mk-site .s-cards { display: none; }
  .mk-site .s-header { margin-bottom: 16px; }
  .mk-site .s-header .s-btn { padding: 8px 14px; font-size: .82rem; }
  .mk-site .s-badge { margin-bottom: 12px; padding: 5px 12px; font-size: .76rem; }
  .mk-site .s-hero h1 { font-size: 1.45rem; margin-bottom: 10px; }
  .mk-site .s-hero p { font-size: .88rem; margin-bottom: 14px; }
  .mk-site .s-btns { gap: 8px; }
  .mk-site .s-primary, .mk-site .s-outline { padding: 10px 18px; font-size: .88rem; }
}

/* ---------- benefícios ---------- */
.benefits { padding: clamp(56px, 8vw, 96px) 0; background: var(--bg-2); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.benefits__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.benefit { background: var(--bg); border: 1px solid var(--line-soft); border-radius: 18px; padding: 30px 26px; transition: transform .4s var(--ease), border-color .4s; }
.benefit:hover { transform: translateY(-6px); border-color: rgba(255,94,58,.4); }
.benefit__ico { font-size: 2rem; display: block; margin-bottom: 14px; }
.benefit h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; margin-bottom: 8px; }
.benefit p { color: var(--gray); font-size: .94rem; }

/* ---------- processo ---------- */
.process { padding: clamp(56px, 8vw, 96px) 0; }
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pstep { background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: 18px; padding: 34px 30px; position: relative; overflow: hidden; transition: transform .4s var(--ease); }
.pstep:hover { transform: translateY(-6px); }
.pstep::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.pstep:hover::before { transform: scaleX(1); }
.pstep__n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; display: block; margin-bottom: 14px; }
.pstep h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 8px; }
.pstep p { color: var(--gray); font-size: .95rem; }

/* ---------- cta ---------- */
.cta { padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 9vw, 110px); }
.cta__card { position: relative; text-align: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: 28px; padding: clamp(44px, 7vw, 80px) clamp(28px, 5vw, 60px); overflow: hidden; }
.cta__glow { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: radial-gradient(60% 100% at 50% 0%, rgba(255,94,58,.18), transparent 65%), radial-gradient(50% 80% at 50% 100%, rgba(255,61,132,.14), transparent 65%); }
.cta__card > * { position: relative; z-index: 1; }
.cta__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.02; letter-spacing: -1px; margin-bottom: 16px; }
.cta__lead { color: var(--gray); font-size: 1.12rem; max-width: 48ch; margin: 0 auto 30px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding-top: 56px; }
.footer__inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; }
.footer__brand { max-width: 360px; }
.footer__brand .logo { display: inline-block; margin-bottom: 14px; }
.footer__brand p { color: var(--gray); font-size: .96rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 14px 26px; align-content: flex-start; }
.footer__links a { color: var(--gray); font-weight: 600; font-size: .94rem; transition: color .25s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom { border-top: 1px solid var(--line-soft); padding: 20px 0; }
.footer__bottom .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer__bottom span { color: var(--gray-2); font-size: .85rem; }

/* ---------- whatsapp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: #25d366; box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); animation: pulse 2.6s ease-in-out infinite; transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0%,100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 14px rgba(37,211,102,0); } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* =====================================================
   RESPONSIVO
   ===================================================== */
@media (max-width: 980px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .nav { position: fixed; top: 0; right: 0; left: auto; width: min(82vw, 320px); height: 100vh; height: 100dvh; flex-direction: column; gap: 4px; padding: 96px 30px 40px; background: var(--bg-2); border-left: 1px solid var(--line); transform: translateX(100%); transition: transform .4s var(--ease); z-index: 90; overflow-y: auto; }
  .nav.is-open { transform: none; box-shadow: 0 0 0 100vmax rgba(0,0,0,.55), -30px 0 60px -20px #000; }
  .nav a { font-size: 1.15rem; padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: flex; }
  .header__cta { display: none; }
  .hero__stats { gap: 18px; padding: 16px 20px; }
  .card__view { opacity: 1; transform: none; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .hero__stats .sep { display: none; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 auto; }
  .footer__inner { flex-direction: column; gap: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
