:root{
  --bg:#f7f9ff;
  --bg2:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line: rgba(15,23,42,.10);
  --card:#ffffff;

  --blue:#2563eb;
  --purple:#7c3aed;
  --green:#16a34a;
  --orange:#f59e0b;
  --pink:#db2777;
  --dark:#0f172a;

  --shadow: 0 16px 60px rgba(15,23,42,.12);
  --shadow2: 0 12px 40px rgba(15,23,42,.10);

  --radius: 16px;
  --radius2: 22px;

  --container: 1160px;

  /* ✅ TOKENS DE SEÇÃO (CONSISTENTES) */
  --whiteBg: #ffffff;
  --softTop: #EEF4FF;
  --softBottom: #F4F0FF;

  /* Linhas enterprise (mantidas para cards/headers — não usamos no divisor) */
  --hairline: rgba(15,23,42,.08);
  --hairlineSoft: rgba(37,99,235,.10);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 520px at 15% 0%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(900px 500px at 90% 5%, rgba(124,58,237,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }
.muted{ color:var(--muted); }
.grad{
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:70;
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--hairline);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0; gap:12px;
}
.topbar__left{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.topbar__right{ display:flex; gap:10px; align-items:center; }

.link{ color: var(--blue); font-weight:800; }
.link:hover{ text-decoration: underline; }
.link--strong{ padding:6px 10px; border-radius:999px; background: rgba(37,99,235,.08); }

.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  font-size:12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.88);
}
.badge--soft{
  border-color: rgba(37,99,235,.18);
  background: rgba(37,99,235,.06);
  color: rgba(15,23,42,.88);
}
.badge--grad{
  border:none;
  color:white;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

/* Header */
.header{
  position:sticky; top:44px; z-index:65;
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--hairline);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:16px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 260px;
}
.brand__logo{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(37,99,235,.08);
  color: var(--blue);
  border: 1px solid rgba(37,99,235,.18);
}
.brand__text{ display:flex; flex-direction:column; gap:2px; }
.brand__name{ font-weight:900; letter-spacing:-.2px; font-size:18px; }
.brand__tag{ font-size:12px; color:var(--muted); }

.nav{ display:flex; align-items:center; justify-content:flex-end; flex:1; position:relative; }
.nav__toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 14px;
  border:1px solid var(--hairline);
  background: rgba(255,255,255,.92);
  cursor:pointer;
}
.nav__toggle span{
  display:block;
  height:2px; margin:6px 10px;
  background: rgba(15,23,42,.82);
  border-radius:999px;
}

.nav__panel{
  display:flex; align-items:center; justify-content:flex-end;
  gap:14px; width:100%;
  position:relative;
}
.nav__list{
  display:flex; align-items:center; gap:12px;
  list-style:none; padding:0; margin:0;
}
.nav__link{
  padding:10px 10px;
  border-radius: 14px;
  font-weight:900;
  color: rgba(15,23,42,.88);
}
.nav__link:hover{ background: rgba(15,23,42,.05); }

.nav__actions{ display:flex; gap:10px; align-items:center; }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius: 14px;
  border:1px solid var(--hairline);
  background: rgba(255,255,255,.92);
  font-weight:900;
  cursor:pointer;
  transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ box-shadow: var(--shadow2); }
.btn:active{ transform: translateY(1px); }
.btn--primary{
  border:none;
  color:#fff;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}
.btn--ghost{ background: rgba(15,23,42,.03); }
.btn--lg{ padding:12px 18px; border-radius: 16px; }
.btn--sm{ padding:8px 12px; border-radius: 12px; }

/* Mega menu */
.mega{
  position:absolute;
  top: calc(100% + 12px);
  left: 0;
  right: 0;
  display:none;
  z-index:80;
}
.mega__inner{
  display:grid;
  grid-template-columns: 1fr 1fr .9fr;
  gap:12px;
  padding:14px;
  border-radius: 20px;
  border:1px solid var(--hairline);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.mega__title{
  font-weight:900;
  margin: 4px 0 10px;
  color: rgba(15,23,42,.86);
}
.mega__item{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px;
  border-radius: 16px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.92);
}
.mega__item:hover{
  border-color: rgba(37,99,235,.18);
  box-shadow: var(--shadow2);
}
.mega__item small{ display:block; margin-top:4px; color:var(--muted); line-height:1.35; }

.mega__promo{ display:flex; }
.mega__promoCard{
  width:100%;
  padding:14px;
  border-radius: 18px;
  border:1px solid rgba(37,99,235,.14);
  background: linear-gradient(180deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
}
.mega__promoCard--soft{
  border-color: rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
}
.mega__promoTop{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.mega__promoCard p{ margin:10px 0 12px; }

.ico{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight:900;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.03);
  color: rgba(15,23,42,.80);
  flex:0 0 auto;
}
.ico--blue{ background: rgba(37,99,235,.10); border-color: rgba(37,99,235,.18); color: var(--blue); }
.ico--purple{ background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.18); color: var(--purple); }
.ico--green{ background: rgba(22,163,74,.10); border-color: rgba(22,163,74,.18); color: var(--green); }
.ico--orange{ background: rgba(245,158,11,.14); border-color: rgba(245,158,11,.22); color: #b45309; }
.ico--pink{ background: rgba(219,39,119,.10); border-color: rgba(219,39,119,.18); color: var(--pink); }
.ico--dark{ background: rgba(15,23,42,.05); border-color: rgba(15,23,42,.10); color: var(--dark); }

/* =========================
   SECTION RHYTHM (Enterprise)
   ========================= */
.section{
  position: relative;
  padding: clamp(46px, 6vw, 86px) 0;
  overflow: hidden;
}

.section--white{
  background: var(--whiteBg);
}

.section--soft{
  background: linear-gradient(180deg, var(--softTop), var(--softBottom));
  border: none; /* ✅ removido: a onda já faz a separação */
}

/* blobs bem sutis (pra não alterar o tom do topo e brigar com o divisor) */
.section--soft:before{
  content:"";
  position:absolute;
  inset:-140px -140px auto -140px;
  height:280px;
  background: radial-gradient(680px 240px at 18% 20%, rgba(37,99,235,.18), transparent 62%);
  opacity:.22;
  pointer-events:none;
}
.section--soft:after{
  content:"";
  position:absolute;
  inset:auto -140px -140px -140px;
  height:280px;
  background: radial-gradient(680px 240px at 82% 70%, rgba(124,58,237,.16), transparent 62%);
  opacity:.22;
  pointer-events:none;
}

/* ✅ DIVIDER ENTERPRISE (sem bordas/risco) */
.sectionDivider{
  position: relative;
  height: 56px;
  margin: 0;
  overflow: hidden;
}
.sectionDivider--fromWhite{ background: var(--whiteBg); }
.sectionDivider--fromSoft{ background: linear-gradient(180deg, var(--softTop), var(--softBottom)); }

.sectionDivider svg{
  position:absolute;
  left:0; right:0;
  bottom:-2px; /* ✅ cobre 1px de anti-aliasing */
  width:100%;
  height: 64px;
  display:block;
}

/* ✅ remove o “risco” (hairline) que estava aparecendo */
.sectionDivider:before{ content:none; }

.sectionDivider--toSoft svg .waveFill{ fill: var(--softTop); }
.sectionDivider--toSoft svg .waveShade{ fill: rgba(37,99,235,.06); }

.sectionDivider--toWhite svg .waveFill{ fill: var(--whiteBg); }
.sectionDivider--toWhite svg .waveShade{ fill: rgba(15,23,42,.04); }

/* Capítulo */
.chapter{
  display:flex; align-items:center; gap:10px;
  margin-bottom: 12px;
}
.chapter__tag{
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(37,99,235,.08);
  border:1px solid rgba(37,99,235,.16);
  color: rgba(37,99,235,.95);
}
.chapter__text{
  font-weight:900;
  color: rgba(15,23,42,.72);
}

/* Headings (enterprise underline suave) */
.section__head{
  max-width: 860px;
  margin-bottom: 18px;
  position:relative;
  z-index:1;
}
.section__head h2{
  margin:0 0 10px;
  font-size: 30px;
  letter-spacing:-.4px;
}
.section__head p{ margin:0; line-height:1.7; }
.section__head:after{
  content:"";
  display:block;
  width:120px;
  height:4px;
  margin-top:14px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(37,99,235,.55), rgba(124,58,237,.45));
  opacity:.35;
}

/* HERO */
.hero{ padding: 52px 0 16px; }
.hero__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.hero__kicker{ display:flex; gap:8px; flex-wrap:wrap; margin-bottom: 14px; }
h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.08;
  letter-spacing:-.8px;
}
.lead{
  margin:0 0 16px;
  line-height:1.75;
  color: rgba(15,23,42,.78);
  font-size: 16px;
}
.hero__cta{ display:flex; gap:10px; flex-wrap:wrap; margin: 14px 0 14px; }
.hero__bullets{ display:flex; flex-direction:column; gap:10px; }
.bullet{ display:flex; gap:10px; align-items:center; color: rgba(15,23,42,.78); }
.dot{ width:10px; height:10px; border-radius:999px; background: rgba(15,23,42,.20); }
.dot--blue{ background: var(--blue); }
.dot--purple{ background: var(--purple); }
.dot--green{ background: var(--green); }

.hero__visual{ position:relative; min-height: 420px; z-index:1; }
.mock{
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.mock__top{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.miniDots{ display:flex; gap:6px; }
.miniDots span{ width:10px; height:10px; border-radius:999px; background: rgba(15,23,42,.10); }
.mock__title{ font-weight:900; }
.mock__chip{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.18);
  color: rgba(22,163,74,.92);
  font-weight:900;
}
.mock__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  padding:14px;
}
.kpi{
  display:flex; gap:10px; align-items:center;
  padding:12px;
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.02);
}
.kpi__icon{
  width:42px; height:42px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight:900;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(255,255,255,.94);
}
.kpi__info strong{ display:block; }
.kpi__info .muted{ font-size:12px; }
.kpi--a .kpi__icon{ color: var(--blue); }
.kpi--b .kpi__icon{ color: var(--purple); }
.kpi--c .kpi__icon{ color: var(--pink); }
.kpi--d .kpi__icon{ color: var(--green); }
.mock__footer{ padding: 0 14px 14px; }
.spark{ color: rgba(37,99,235,.55); }
.mock__legend{ font-size:12px; margin-top:8px; }
.blob{
  position:absolute;
  border-radius:999px;
  filter: blur(18px);
  opacity:.50;
  z-index:-1;
}
.blob--blue{ width:260px; height:260px; right:-70px; top: 40px; background: rgba(37,99,235,.28); }
.blob--purple{ width:300px; height:300px; left:-90px; bottom:-90px; background: rgba(124,58,237,.24); }

/* Grid / Cards */
.grid{ display:grid; gap:12px; position:relative; z-index:1; }
.grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card{
  background: rgba(255,255,255,.95);
  border:1px solid rgba(15,23,42,.10);
  border-radius: 22px;
  padding:16px;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}
.card--clean:hover{ box-shadow: var(--shadow2); }
.card__top{ display:flex; align-items:center; gap:10px; }
.card h3{ margin: 10px 0 8px; letter-spacing:-.2px; }
.card p{ margin: 8px 0 0; line-height:1.7; color: rgba(15,23,42,.74); }

.icon{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight:900;
  border:1px solid rgba(15,23,42,.08);
  background: rgba(15,23,42,.03);
}
.icon--blue{ background: rgba(37,99,235,.10); border-color: rgba(37,99,235,.16); color: var(--blue); }
.icon--purple{ background: rgba(124,58,237,.10); border-color: rgba(124,58,237,.16); color: var(--purple); }
.icon--green{ background: rgba(22,163,74,.10); border-color: rgba(22,163,74,.16); color: var(--green); }

.list{ margin: 12px 0 0; padding:0; list-style:none; }
.list li{
  margin:8px 0;
  padding-left:20px;
  position:relative;
  color: rgba(15,23,42,.74);
  line-height:1.55;
  font-size:13px;
}
.list li:before{
  content:"";
  width:10px; height:10px;
  border-radius:3px;
  position:absolute;
  left:0; top:4px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  opacity:.85;
}

/* Callouts */
.callout, .ctaWide{
  margin-top: 18px;
  padding:16px;
  border-radius: 22px;
  border:1px solid rgba(37,99,235,.16);
  background: linear-gradient(90deg, rgba(37,99,235,.08), rgba(124,58,237,.06));
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  position:relative; z-index:1;
}
.callout h3, .ctaWide h3{ margin:0 0 6px; }
.callout p, .ctaWide p{ margin:0; }
.ctaWide{ padding:18px; border-radius: 26px; }

.miniCard{
  padding:14px;
  border-radius: 22px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  position:relative; z-index:1;
}
.miniCard__ico{ font-size:18px; display:inline-flex; }
.miniCard strong{ display:block; margin-top:8px; }
.miniCard .muted{ display:block; margin-top:4px; font-size:12px; }

/* Filters / Segments */
.filters{ display:flex; flex-wrap:wrap; gap:8px; margin: 10px 0 14px; position:relative; z-index:1; }
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.90);
  font-weight:900;
  cursor:pointer;
  color: rgba(15,23,42,.84);
}
.chip.is-active{
  border-color: rgba(37,99,235,.22);
  background: rgba(37,99,235,.08);
  color: var(--blue);
}
.segCard{
  padding:16px;
  border-radius: 22px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  position:relative; z-index:1;
}
.segCard:hover{ box-shadow: var(--shadow2); }
.segCard__top{ display:flex; align-items:center; gap:10px; }
.segIco{ font-size:20px; }
.segCard p{ margin: 8px 0 0; line-height:1.7; color: rgba(15,23,42,.74); }
.segTags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.segTags span{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.02);
  color: rgba(15,23,42,.78);
  font-weight:800;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  position:relative; z-index:1;
}
.step{
  display:flex; gap:12px;
  padding:16px;
  border-radius: 22px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
}
.step__n{
  width:40px; height:40px;
  border-radius: 16px;
  display:grid; place-items:center;
  font-weight:900;
  color: var(--blue);
  background: rgba(37,99,235,.10);
  border:1px solid rgba(37,99,235,.18);
}
.step p{ margin:6px 0 0; line-height:1.6; }

/* Proof */
.proof{
  padding:16px;
  border-radius: 22px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  position:relative; z-index:1;
}
.proof p{ margin:8px 0 0; line-height:1.7; }
.proof__tag{
  display:inline-flex;
  margin-top:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(22,163,74,.10);
  border:1px solid rgba(22,163,74,.18);
  color: rgba(22,163,74,.92);
  font-weight:900;
  font-size:12px;
}

/* Architecture */
.arch{
  display:grid;
  grid-template-columns: 1fr .9fr 1fr;
  gap:12px;
  align-items:stretch;
  position:relative; z-index:1;
}
.arch__col{ display:flex; flex-direction:column; gap:12px; }
.archLine{
  height:18px;
  background: linear-gradient(90deg, rgba(37,99,235,.16), rgba(124,58,237,.12));
  border-radius: 999px;
  border:1px dashed rgba(15,23,42,.18);
}
.archCard{
  padding:16px;
  border-radius: 22px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
}
.archCard__title{ font-weight:900; margin-bottom:10px; }
.archPills{ display:flex; flex-wrap:wrap; gap:8px; }
.archPills span{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.02);
  font-weight:900;
  color: rgba(15,23,42,.78);
}
.archHub{
  height:100%;
  padding:18px;
  border-radius: 26px;
  border:1px solid rgba(37,99,235,.18);
  background: linear-gradient(180deg, rgba(37,99,235,.10), rgba(124,58,237,.06));
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:14px;
}
.archHub__title{ font-weight:900; font-size:16px; }
.archHub__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.hubItem{
  padding:12px;
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  font-weight:900;
  color: rgba(15,23,42,.84);
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:12px;
  position:relative; z-index:1;
}
.form{
  padding:16px;
  border-radius: 26px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow2);
}
.form__row{ display:flex; flex-direction:column; gap:8px; margin-bottom:12px; }
.form__row--2{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
label{ font-weight:900; font-size:12px; color: rgba(15,23,42,.82); }

input, select, textarea{
  border-radius: 16px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.98);
  padding:12px 12px;
  outline:none;
  color: rgba(15,23,42,.88);
}
textarea{ resize:vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(37,99,235,.35);
  box-shadow: 0 0 0 6px rgba(37,99,235,.10);
}
.aside{ display:flex; flex-direction:column; gap:12px; }
.aside__box{
  padding:16px;
  border-radius: 26px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.95);
}
.aside__box--grad{
  border-color: rgba(124,58,237,.18);
  background: linear-gradient(180deg, rgba(124,58,237,.08), rgba(37,99,235,.08));
}
.fine{ font-size:12px; margin: 12px 0 0; }

/* Footer */
.footer{
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
  background: rgba(255,255,255,.76);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
}
.footer__links{ display:flex; gap:12px; flex-wrap:wrap; }
.footer__links a{ color: rgba(15,23,42,.70); font-weight:900; }
.footer__links a:hover{ color: rgba(15,23,42,.92); }

/* Toast */
.toast{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  transform: translateY(20px);
  opacity: 0;
  pointer-events:none;
  transition: transform .25s ease, opacity .25s ease;
}
.toast.is-show{ transform: translateY(0); opacity: 1; }
.toast__inner{
  padding: 14px;
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  min-width: 260px;
}

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(14px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-in{ opacity:1; transform: translateY(0); }


.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}


/* Responsive */
@media (max-width: 1020px){
  .hero__inner{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: 1fr 1fr; }
  .arch{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 860px){
  .nav__toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav__panel{
    position: fixed;
    top: 110px;
    left: 16px; right: 16px;
    width:auto;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:12px;
    padding:12px;
    border-radius: 20px;
    background: rgba(255,255,255,.96);
    border:1px solid rgba(15,23,42,.10);
    box-shadow: var(--shadow);
  }
  .nav__list{ flex-direction:column; align-items:stretch; }
  .nav__actions{ flex-direction:column; }
  .nav__actions .btn{ width:100%; }

  /* mega no mobile vira bloco normal */
  .mega{ position: static; display:none; top:auto; left:auto; right:auto; }
  .mega__inner{ grid-template-columns: 1fr; }

  .footer__inner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width: 520px){
  .grid--4{ grid-template-columns: 1fr; }
  .form__row--2{ grid-template-columns: 1fr; }
}
