/* ===== Design tokens ===== */
:root {
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --cyan: #06B6D4;
  --ink: #0F172A;
  --slate: #475569;
  --slate-light: #64748B;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --line: #E2E8F0;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, .08);
  --shadow: 0 12px 32px rgba(15, 23, 42, .10);
  --shadow-lg: 0 24px 60px rgba(37, 99, 235, .18);
  --grad: linear-gradient(135deg, var(--blue), var(--cyan));
  --max: 1160px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; line-height: 1.15; letter-spacing: -0.02em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: .98rem; cursor: pointer; border: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(37,99,235,.32); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,99,235,.42); }
.btn--ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn--light:hover { transform: translateY(-2px); }
.btn--block { width: 100%; }

/* ===== Header ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand__logo { height: 40px; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--slate); font-weight: 600; font-size: .95rem; transition: color .15s; }
.nav a:hover { color: var(--blue); }
.nav__cta { background: var(--grad); color: #fff !important; padding: 10px 20px; border-radius: 999px; box-shadow: 0 6px 16px rgba(37,99,235,.28); }
.nav__cta:hover { transform: translateY(-1px); }
/* Botão Entrar + mini-menu de contas */
.nav__account { position: relative; }
.nav__entrar { display: inline-flex; align-items: center; gap: 6px; background: none; border: none; color: var(--slate); font-weight: 600; font-size: .95rem; cursor: pointer; font-family: inherit; padding: 6px 4px; transition: color .15s; }
.nav__entrar:hover { color: var(--blue); }
.nav__caret { transition: transform .2s; }
.nav__entrar[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
.nav__menu { position: absolute; top: calc(100% + 12px); right: 0; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); padding: 8px; display: none; flex-direction: column; gap: 2px; z-index: 60; }
.nav__menu.is-open { display: flex; animation: menuIn .18s ease; }
@keyframes menuIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.nav__menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--ink) !important; font-weight: 700; font-size: .92rem; flex-wrap: wrap; }
.nav__menu a span { font-size: 1.1rem; }
.nav__menu a small { width: 100%; padding-left: 30px; color: var(--slate-light); font-weight: 500; font-size: .78rem; margin-top: -2px; }
.nav__menu a:hover { background: var(--bg-alt); color: var(--blue) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 80px 0 90px; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(6,182,212,.16), transparent 60%),
    radial-gradient(50% 50% at 10% 20%, rgba(37,99,235,.14), transparent 60%);
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.badge {
  display: inline-block; background: #EFF6FF; color: var(--blue-dark);
  border: 1px solid #DBEAFE; padding: 7px 16px; border-radius: 999px;
  font-weight: 600; font-size: .85rem; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); font-weight: 800; }
.hero__lead { font-size: 1.12rem; color: var(--slate); margin: 22px 0 30px; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 36px; margin-top: 44px; flex-wrap: wrap; }
.hero__stats strong { display: block; font-family: 'Plus Jakarta Sans'; font-size: 1.7rem; color: var(--ink); }
.hero__stats span { font-size: .9rem; color: var(--slate-light); }

/* floating cards */
.hero__card { position: relative; height: 420px; }
.float-card {
  position: absolute; display: flex; align-items: center; gap: 14px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 16px 20px; box-shadow: var(--shadow); min-width: 240px;
  animation: floaty 5s ease-in-out infinite;
}
.float-card small { display: block; color: var(--slate-light); font-size: .82rem; }
.float-card strong { font-size: .98rem; }
.fc__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--grad); font-size: 1.4rem; }
.float-card--1 { top: 20px; left: 8%; }
.float-card--2 { top: 165px; right: 0; animation-delay: 1.2s; }
.float-card--3 { bottom: 18px; left: 0; animation-delay: 2.4s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section--alt { background: var(--bg-alt); }
.section__head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.eyebrow { display: inline-block; color: var(--blue); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.section__head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); font-weight: 800; }
.section__head p { color: var(--slate); margin-top: 14px; font-size: 1.05rem; }

/* ===== Cards / Services ===== */
.grid { display: grid; gap: 22px; }
.grid--services { display: flex; flex-wrap: wrap; justify-content: center; }
.grid--services > .service { flex: 1 1 300px; max-width: 362px; }
.grid--services > .service--highlight { flex-basis: 100%; max-width: none; }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.service:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #C7D2FE; }
.service__icon { width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.7rem; background: #EFF6FF; border-radius: 14px; margin-bottom: 18px; }
.service h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service p { color: var(--slate); font-size: .96rem; }
.service--highlight { background: var(--grad); color: #fff; border: none; grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; }
@media (min-width: 901px) {
  .service--highlight { flex-direction: row; align-items: center; gap: 20px; }
  .service--highlight .service__icon { margin-bottom: 0; flex-shrink: 0; }
  .service--highlight h3 { margin-bottom: 4px; }
  .service--highlight .service__link { margin-top: 0; margin-left: auto; white-space: nowrap; }
}
.service--highlight .service__icon { background: rgba(255,255,255,.18); }
.service--highlight p { color: rgba(255,255,255,.9); }
.service__link { display: inline-block; margin-top: 14px; font-weight: 700; color: #fff; }

/* ===== Mapa multipontos (demo) ===== */
.map-demo { max-width: 920px; margin: 0 auto; }
.map-demo__canvas { height: 460px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); background: #E2E8F0; z-index: 1; }
.map-demo__hint { text-align: center; color: var(--slate-light); font-size: .88rem; margin-top: 14px; }
.leaflet-container { font-family: inherit; }

/* ===== WhatsApp multi-operador (demo) ===== */
.wa-demo { max-width: 960px; margin: 0 auto; }
.wa { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); overflow: hidden; }
.wa__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 18px; background: var(--grad); color: #fff; flex-wrap: wrap; }
.wa__brand { font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; display: flex; align-items: center; gap: 8px; }
.wa__ops { display: flex; align-items: center; }
.wa__op { width: 30px; height: 30px; border-radius: 50%; background: var(--c); color: #fff; font-size: .68rem; font-weight: 800; display: grid; place-items: center; border: 2px solid rgba(255,255,255,.7); margin-left: -8px; }
.wa__ops small { margin-left: 10px; font-size: .8rem; opacity: .95; }
.wa__body { display: grid; grid-template-columns: 300px 1fr; min-height: 360px; }
.wa__list { border-right: 1px solid var(--line); background: var(--bg-alt); }
.wa__conv { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.wa__conv.is-active { background: #fff; box-shadow: inset 3px 0 0 var(--blue); }
.wa__av { width: 38px; height: 38px; border-radius: 50%; background: var(--c); color: #fff; font-weight: 800; font-size: .78rem; display: grid; place-items: center; flex-shrink: 0; }
.wa__conv-main { flex: 1; min-width: 0; }
.wa__conv-main strong { display: block; font-size: .9rem; }
.wa__conv-main small { display: block; color: var(--slate-light); font-size: .8rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa__conv-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; }
.wa__conv-meta em { color: var(--slate-light); font-size: .7rem; font-style: normal; }
.wa__tag { font-size: .66rem; font-weight: 700; color: #fff; background: var(--c); padding: 2px 7px; border-radius: 999px; }
.wa__tag--wait { background: #94A3B8; }
.wa__badge { background: #22C55E; color: #fff; font-size: .68rem; font-weight: 800; min-width: 18px; height: 18px; border-radius: 999px; display: grid; place-items: center; padding: 0 5px; }
.wa__chat { display: flex; flex-direction: column; background: #ECE5DD; }
.wa__chat-top { display: flex; align-items: center; gap: 10px; padding: 11px 16px; background: #fff; border-bottom: 1px solid var(--line); }
.wa__chat-top small { display: block; color: var(--slate-light); font-size: .76rem; }
.wa__msgs { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 8px; }
.wa__bubble { max-width: 75%; padding: 9px 13px; border-radius: 12px; font-size: .88rem; box-shadow: 0 1px 1px rgba(0,0,0,.07); line-height: 1.4; }
.wa__bubble.in { background: #fff; align-self: flex-start; border-top-left-radius: 3px; }
.wa__bubble.out { background: #D9FDD3; align-self: flex-end; border-top-right-radius: 3px; }
.wa__input { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 16px; background: #fff; border-top: 1px solid var(--line); color: var(--slate-light); font-size: .9rem; }
.wa__input i { width: 36px; height: 36px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-style: normal; flex-shrink: 0; }
.wa-feats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 20px; }
.wa-feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; }
.wa-feat strong { display: block; font-size: .96rem; margin-bottom: 4px; }
.wa-feat span { color: var(--slate); font-size: .89rem; }
@media (max-width: 720px) {
  .wa__body { grid-template-columns: 1fr; }
  .wa__list { display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--line); }
  .wa__conv { border-bottom: none; min-width: 210px; }
  .wa-feats { grid-template-columns: 1fr; }
}

/* ===== Steps ===== */
.grid--steps { grid-template-columns: repeat(3, 1fr); }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; position: relative; }
.step__num { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--grad); color: #fff; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.2rem; margin-bottom: 18px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--slate); font-size: .96rem; }

/* ===== Quote / Form ===== */
.quote { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.quote__intro .eyebrow { margin-bottom: 14px; }
.quote__intro h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 800; }
.quote__intro > p { color: var(--slate); margin: 16px 0 24px; font-size: 1.05rem; }
.quote__tips { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.quote__tips li { position: relative; padding-left: 30px; color: var(--slate); font-size: .98rem; }
.quote__tips li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 20px; height: 20px; background: #EFF6FF; color: var(--blue); border-radius: 6px; display: grid; place-items: center; font-size: .8rem; font-weight: 800; }
.quote__contact { border-top: 1px solid var(--line); padding-top: 20px; }
.quote__contact p { font-weight: 700; margin-bottom: 10px; }
.contact-link { display: block; color: var(--blue); font-weight: 600; margin-bottom: 6px; }
.contact-link:hover { text-decoration: underline; }

.quote__form { padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.field textarea { resize: vertical; }

/* dropzone */
.dropzone {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  gap: 6px; padding: 28px; border: 2px dashed #CBD5E1; border-radius: 14px;
  cursor: pointer; background: var(--bg-alt); transition: border-color .15s, background .15s;
}
.dropzone:hover, .dropzone.is-drag { border-color: var(--blue); background: #EFF6FF; }
.dropzone__icon { font-size: 1.8rem; }
.dropzone__text { color: var(--slate); font-size: .95rem; }
.dropzone__text strong { color: var(--blue); }
.dropzone small { color: var(--slate-light); font-size: .82rem; }

.previews { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.preview { position: relative; width: 76px; height: 76px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview button { position: absolute; top: 3px; right: 3px; width: 20px; height: 20px; border-radius: 50%; border: none; background: rgba(15,23,42,.78); color: #fff; cursor: pointer; font-size: .8rem; line-height: 1; display: grid; place-items: center; }
.form-note { text-align: center; color: var(--slate-light); font-size: .85rem; margin-top: 12px; }
.form-note.is-error { color: #DC2626; }

/* widget anti-bot (Turnstile) */
.turnstile-box { margin-bottom: 16px; min-height: 0; }
.turnstile-box:empty { margin-bottom: 0; }

/* consentimento LGPD */
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .88rem; color: var(--slate); margin-bottom: 18px; cursor: pointer; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); flex-shrink: 0; }
.consent a { color: var(--blue); font-weight: 600; }

/* ===== Clients ===== */
.grid--clients { grid-template-columns: repeat(3, 1fr); }
.client { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; text-align: center; transition: transform .2s, box-shadow .2s, border-color .2s; }
.client:not(.client--static):hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #C7D2FE; }
.client__name { display: block; font-family: 'Plus Jakarta Sans'; font-weight: 800; font-size: 1.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.client__desc { display: block; color: var(--slate-light); font-size: .92rem; margin-top: 6px; }

/* ===== CTA band ===== */
.cta-band { background: var(--grad); color: #fff; padding: 70px 0; text-align: center; }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 800; }
.cta-band p { font-size: 1.1rem; opacity: .92; margin: 12px 0 26px; }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #CBD5E1; padding: 56px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; padding-bottom: 40px; }
.footer__logo { height: 40px; background: #fff; padding: 8px 12px; border-radius: 10px; margin-bottom: 16px; }
.footer__brand p { font-size: .95rem; max-width: 360px; color: #94A3B8; }
.footer__links h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer__links a { display: block; color: #94A3B8; font-size: .94rem; margin-bottom: 8px; transition: color .15s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid #1E293B; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .85rem; color: #64748B; }
.footer__admin { color: #475569; text-decoration: none; }
.footer__admin:hover { color: #94A3B8; }

/* ===== Tela de sucesso ===== */
.success {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
}
.success.is-open { opacity: 1; visibility: visible; }
.success__backdrop {
  position: absolute; inset: 0;
  background: rgba(15, 23, 42, .55); backdrop-filter: blur(6px);
}
.success__card {
  position: relative; z-index: 1; width: min(460px, 100%);
  background: #fff; border-radius: 26px; padding: 40px 34px 34px;
  text-align: center; box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(24px) scale(.94); opacity: 0;
}
.success.is-open .success__card { animation: cardIn .55s cubic-bezier(.2,.9,.3,1.2) forwards; }
@keyframes cardIn { to { transform: translateY(0) scale(1); opacity: 1; } }

.success__card h3 { font-size: 1.55rem; font-weight: 800; margin-top: 6px; }
.success__card > p { color: var(--slate); margin-top: 10px; font-size: 1.05rem; }
.success__sub { font-size: .9rem !important; color: var(--slate-light) !important; margin-top: 14px !important; }
.success__card .btn { margin-top: 24px; }

/* cena do homenzinho */
.scene { width: 230px; margin: 0 auto 6px; }
.scene svg { width: 100%; height: auto; overflow: visible; }

.char { transform-box: fill-box; transform-origin: bottom center; }
.arm { transform-box: fill-box; transform-origin: top center; }
.eye { transform-box: fill-box; transform-origin: center; }
.gear { transform-box: fill-box; }
.gear--1 { transform-origin: 208px 40px; }
.ln { transform-box: fill-box; }
.ln--2 { animation-delay: .25s; }
.ln--3 { animation-delay: .5s; }

/* animações da cena: só rodam com a tela de sucesso aberta */
.success.is-open .char { animation: bob 3s ease-in-out infinite; }
.success.is-open .arm--l { animation: type 0.5s ease-in-out infinite; }
.success.is-open .arm--r { animation: type 0.5s ease-in-out infinite .25s; }
.success.is-open .eye { animation: blink 4s infinite; }
.success.is-open .gear { animation: spin 4s linear infinite; }
.success.is-open .ln { animation: lnpulse 1.4s ease-in-out infinite; }
.success.is-open .ln--2 { animation-delay: .25s; }
.success.is-open .ln--3 { animation-delay: .5s; }

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
@keyframes type { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(-7deg) translateY(2px); } }
@keyframes blink { 0%,92%,100% { transform: scaleY(1); } 96% { transform: scaleY(.1); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes lnpulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* selo de check */
.success__check { width: 64px; height: 64px; margin: 0 auto; }
.success__check svg { width: 100%; height: 100%; }
.success__check circle { stroke: #22C55E; stroke-width: 3; }
.success__check path { stroke: #22C55E; stroke-width: 4; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.success.is-open .success__check circle { stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw .5s ease forwards .3s; }
.success.is-open .success__check path { stroke-dasharray: 36; stroke-dashoffset: 36; animation: draw .35s ease forwards .75s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* confetes */
.confetti { position: absolute; top: 0; left: 50%; pointer-events: none; }
.confetti i {
  position: absolute; top: -16px; left: 0; width: 9px; height: 9px; border-radius: 2px;
  background: var(--c); transform: translateX(var(--x)) translateY(-20px); opacity: 0;
}
.success.is-open .confetti i { animation: fall 1.4s ease-in forwards; animation-delay: var(--d); }
@keyframes fall {
  0% { transform: translateX(var(--x)) translateY(-20px) rotate(0); opacity: 1; }
  100% { transform: translateX(var(--x)) translateY(380px) rotate(540deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .char, .arm, .eye, .gear, .ln, .confetti i, .success__card { animation: none !important; }
  .success__card { transform: none; opacity: 1; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero__inner, .quote { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .grid--services, .grid--steps, .grid--clients { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; background: #fff; border-bottom: 1px solid var(--line); padding: 20px 24px; gap: 16px; align-items: flex-start; transform: translateY(-130%); transition: transform .25s ease; }
  .nav.is-open { transform: translateY(0); box-shadow: var(--shadow); }
  .nav__toggle { display: flex; }
  /* mini-menu de contas vira lista inline no mobile */
  .nav__account { width: 100%; }
  .nav__entrar { display: none; }
  .nav__menu { position: static; display: flex; min-width: 0; box-shadow: none; border: none; padding: 0; gap: 8px; }
  .nav__menu a { padding: 4px 0; }
  .nav__menu a:hover { background: none; }
  .grid--services, .grid--steps, .grid--clients, .footer__inner, .field-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero { padding: 50px 0 60px; }
  .hero__stats { gap: 24px; }
}
