/* ═══════════════════════════════════════════
   JUMP CORP — Sistema Visual (todas as páginas)
   - Roxo principal dessaturado (#5B4FE5 / #7B6FEE)
   - Seções alternadas escuro/claro para respiro
   - Sombras suaves, bordas em cinza-roxo
   ═══════════════════════════════════════════ */
:root {
  /* dark palette */
  --dark-bg:           #0E0A1F;
  --dark-bg-2:         #15102C;
  --dark-elev:         #1B1638;
  --dark-border:       rgba(155, 142, 230, 0.16);
  --dark-border-soft:  rgba(155, 142, 230, 0.08);
  --dark-text:         #ffffff;
  --dark-muted:        #B8B2D8;
  --dark-muted-2:      #8E87B5;

  /* light palette */
  --light-bg:          #FAFAFC;
  --light-bg-2:        #F3F2F8;
  --light-elev:        #ffffff;
  --light-border:      #E6E4EE;
  --light-border-soft: #EFEDF4;
  --light-text:        #1A1432;
  --light-muted:       #56507A;
  --light-muted-2:     #7B7596;

  /* brand */
  --purple-50:         #F4F2FE;
  --purple-100:        #E8E4FD;
  --purple-200:        #C9C1F8;
  --purple-300:        #A89DF0;
  --purple-400:        #8779E8;
  --purple-500:        #5B4FE5;
  --purple-600:        #4A3FC7;
  --purple-700:        #3A31A0;
  --purple-800:        #2A2478;

  --accent-pink:       #E16BB5;
  --accent-cyan:       #5AB8D9;
  --accent-green:      #2BB673;
  --accent-green-2:    #1F9F63;

  --font-display: 'Barlow', 'Inter', sans-serif;
  --font-body:    'Barlow', 'Inter', sans-serif;
  --font-serif:   'Barlow', 'Inter', sans-serif;
  --font-support: 'Barlow', 'Inter', sans-serif;
  --font-thin:    'Barlow', 'Inter', sans-serif; /* Barlow Fino — usar com font-weight: 100 */

  --maxw: 1240px;
  --pad:  clamp(20px, 4vw, 56px);

  --shadow-sm-light:   0 1px 2px rgba(26,20,50,.04), 0 1px 1px rgba(26,20,50,.02);
  --shadow-md-light:   0 4px 12px rgba(26,20,50,.05), 0 1px 3px rgba(26,20,50,.03);
  --shadow-lg-light:   0 12px 28px rgba(26,20,50,.08), 0 4px 8px rgba(26,20,50,.04);
  --shadow-md-dark:    0 4px 16px rgba(0,0,0,.25), 0 1px 3px rgba(0,0,0,.18);
  --shadow-lg-dark:    0 16px 40px rgba(0,0,0,.32), 0 4px 12px rgba(0,0,0,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background: var(--dark-bg);
  color: var(--dark-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--purple-500); color: #fff; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}

h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; line-height: 1.1; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: .02em;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .14s ease, box-shadow .14s ease, background .15s, color .15s;
  white-space: nowrap;
}
.btn--cta {
  background: linear-gradient(180deg, var(--accent-green) 0%, var(--accent-green-2) 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31,159,99,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn--cta:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(31,159,99,.28); }
.btn--primary {
  background: var(--purple-500);
  color: #fff;
  box-shadow: 0 4px 12px rgba(91,79,229,.24), inset 0 1px 0 rgba(255,255,255,.14);
}
.btn--primary:hover { background: var(--purple-600); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(91,79,229,.30); }
.btn--ghost {
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.btn--lg { height: 56px; padding: 0 30px; font-size: 15px; }
.btn .arrow { font-family: var(--font-body); font-weight: 600; transition: transform .15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ─── Header / Nav ───────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(14, 10, 31, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--dark-border-soft);
}
.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.brand__logo {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}
.brand__div { width: 1px; height: 26px; background: rgba(255,255,255,.12); }
.brand__wave {
  display: inline-flex; align-items: center; gap: 10px;
}
.wave-mark { width: 36px; height: 20px; flex-shrink: 0; }
.brand__wave-text { display: flex; flex-direction: column; line-height: 1; }
.brand__wave-name {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff;
}
.brand__wave-sub {
  font-size: 8.5px; letter-spacing: .24em; text-transform: uppercase; color: var(--dark-muted);
  margin-top: 3px;
}

.nav__links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-muted);
  border-radius: 8px;
  transition: color .12s, background .12s;
}
.nav__links a:hover { color: #fff; background: rgba(155,142,230,.10); }
.nav__links a.is-active { color: #fff; background: rgba(155,142,230,.14); }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle span { width: 18px; height: 2px; background: #fff; display: block; position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: #fff;
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px;  }

@media (max-width: 980px) {
  .nav__links, .brand__div, .brand__wave, .nav__cta-desktop { display: none; }
  .nav__toggle { display: inline-flex; }
}

.drawer {
  position: fixed; inset: 76px 0 auto 0;
  background: var(--dark-bg);
  border-bottom: 1px solid var(--dark-border);
  transform: translateY(-110%);
  transition: transform .25s;
  z-index: 70;
  padding: 24px var(--pad) 32px;
}
.drawer.is-open { transform: translateY(0); }
.drawer ul { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 4px; }
.drawer a {
  display: block;
  padding: 14px 12px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 17px;
  border-radius: 8px;
  color: #fff;
}
.drawer a:hover { background: rgba(155,142,230,.10); }
.drawer .btn { width: 100%; }

/* ═══════════════════════════════════════════
   HERO — escuro (mantém impacto)
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 140px;
  background-color: var(--dark-bg);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    url("../img/pessoas-tecnologia.png") center / cover no-repeat;
  z-index: 0;
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 60% at 25% 35%, rgba(91,79,229,.35) 0%, transparent 60%),
    radial-gradient(55% 50% at 85% 70%, rgba(135,121,232,.25) 0%, transparent 65%),
    linear-gradient(180deg, rgba(14,10,31,.72) 0%, rgba(14,10,31,.88) 100%);
}
.hero__bg--diferenciais {
  background-image: url("../img/fundo-diferenciais.png");
  background-position: center right;
}
.hero__bg--diferenciais::after {
  background:
    linear-gradient(
      90deg,
      rgba(14, 10, 31, 0.75) 0%,
      rgba(14, 10, 31, 0.55) 45%,
      rgba(14, 10, 31, 0.35) 100%
    ),
    linear-gradient(
      180deg,
      rgba(14, 10, 31, 0.30) 0%,
      rgba(14, 10, 31, 0.55) 100%
    );
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(155,142,230,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155,142,230,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  background-position: center top;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.6) 0%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 7px 16px;
  margin: 0 auto;
  background: rgba(155,142,230,.10);
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple-200);
}
.hero__eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(43,182,115,.18);
}
.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 6.6vw, 80px);
  letter-spacing: -.02em;
  line-height: 1.02;
  color: #fff;
  text-wrap: balance;
  font-feature-settings: 'ss01', 'lnum';
}
.hero__title .accent {
  background: linear-gradient(90deg, var(--purple-200) 0%, var(--purple-400) 60%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}
.hero__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--dark-muted);
  max-width: 680px;
  margin: 0 auto;
  letter-spacing: 0;
}
.hero__lead strong { font-weight: 700; color: #fff; }
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  margin-top: 8px;
}
.hero__badges {
  list-style: none;
  margin: 36px 0 0;
  padding: 28px 0 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  border-top: 1px solid var(--dark-border-soft);
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(155,142,230,.24);
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255,255,255,.92);
  letter-spacing: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__badges strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: .01em;
}
.hero__badges .dot { display: none; }

/* Selo "uma empresa do ecossistema" */
.hero__ecosystem {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto;
  padding: 8px 16px 8px 14px;
  background: rgba(14,10,31,.55);
  border: 1px solid rgba(155,142,230,.22);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__ecosystem-label {
  font-family: var(--font-thin);
  font-weight: 200;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--dark-muted);
  text-transform: lowercase;
}
.hero__ecosystem-wave {
  display: inline-flex; align-items: center; gap: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(155,142,230,.22);
}
.hero__ecosystem-wave .wave-mark { width: 28px; height: 16px; }
.hero__ecosystem-wave-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #fff;
}
.hero__ecosystem-wave-sub {
  font-family: var(--font-support);
  font-weight: 400;
  font-size: 8.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-top: 2px;
}
.hero__ecosystem-wave-text { display: flex; flex-direction: column; line-height: 1; }

/* ═══════════════════════════════════════════
   SEÇÕES — base
   ═══════════════════════════════════════════ */
.section {
  padding: 130px 0;
  position: relative;
}
.section--light { background: var(--light-bg); color: var(--light-text); }
.section--light-2 { background: var(--light-bg-2); color: var(--light-text); }
.section--dark { background: var(--dark-bg); color: var(--dark-text); }

.section__head {
  display: grid;
  gap: 16px;
  text-align: center;
  margin: 0 auto 80px;
  max-width: 780px;
}
.section__eyebrow {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  margin: 0 auto;
}
.section--light .section__eyebrow,
.section--light-2 .section__eyebrow {
  background: var(--purple-50);
  border: 1px solid var(--purple-100);
  color: var(--purple-600);
}
.section--dark .section__eyebrow {
  background: rgba(155,142,230,.10);
  border: 1px solid var(--dark-border);
  color: var(--purple-200);
}
.section__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -.015em;
  line-height: 1.1;
  text-wrap: balance;
  font-feature-settings: 'ss01', 'lnum';
}
.section--light .section__title,
.section--light-2 .section__title { color: var(--light-text); }
.section--dark .section__title { color: #fff; }
.section__title .accent {
  background: linear-gradient(90deg, var(--purple-500) 0%, var(--purple-400) 50%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section--dark .section__title .accent {
  background: linear-gradient(90deg, var(--purple-200), var(--purple-400), var(--accent-pink));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 680px;
  letter-spacing: 0;
}
.section__lead strong { font-weight: 700; }
.section--light .section__lead,
.section--light-2 .section__lead { color: var(--light-muted); }
.section--dark .section__lead { color: var(--dark-muted); }

@media (max-width: 740px) {
  .section { padding: 80px 0; }
  .section__head { margin-bottom: 48px; }
}

/* ═══════════════════════════════════════════
   01 — PROBLEMA (CLARO) — Diagnóstico de CTO
   ═══════════════════════════════════════════ */
.section--problem {
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(91,79,229,.04), transparent 70%),
    var(--light-bg);
}
.section__head--lg { max-width: 920px; }
.section__title--lg { font-size: clamp(36px, 5vw, 60px); }

.diagnostic-img {
  max-width: 620px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg-light);
}
.diagnostic-img img {
  width: 100%;
  height: auto;
  display: block;
}


/* ═══════════════════════════════════════════
   02 — SOLUÇÕES (ESCURO)
   ═══════════════════════════════════════════ */
.section--solutions {
  background:
    radial-gradient(60% 60% at 0% 30%, rgba(91,79,229,.12), transparent 65%),
    radial-gradient(50% 50% at 100% 80%, rgba(135,121,232,.08), transparent 65%),
    var(--dark-bg);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.solution {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: start;
  padding: 32px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.035) 0%, rgba(255,255,255,.012) 100%);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  position: relative;
}
.solution:hover {
  transform: translateY(-3px);
  border-color: rgba(155,142,230,.30);
  background: linear-gradient(180deg, rgba(155,142,230,.06) 0%, rgba(155,142,230,.015) 100%);
}
.solution__icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--purple-400) 0%, var(--purple-600) 100%);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(74,63,199,.32), inset 0 1px 0 rgba(255,255,255,.18);
  flex-shrink: 0;
}
.solution__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.solution__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .02em;
  color: #fff;
  margin: 4px 0 8px;
  text-transform: uppercase;
}
.solution p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin: 0;
}

.section__cta { text-align: center; margin-top: 60px; }

@media (max-width: 880px) {
  .solutions-grid { grid-template-columns: 1fr; }
  .solution { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px 22px; }
  .solution__icon { width: 56px; height: 56px; border-radius: 12px; }
  .solution__icon svg { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════════
   03 — POR QUE (CLARO)
   ═══════════════════════════════════════════ */
.section--why {
  background:
    radial-gradient(50% 50% at 0% 100%, rgba(91,79,229,.04), transparent 70%),
    var(--light-bg-2);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  position: relative;
  padding: 44px 32px 36px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm-light);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg-light);
  border-color: var(--purple-200);
}
.why-card__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--purple-500);
  margin-bottom: 14px;
}
.why-card__metric small {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--light-muted-2);
  margin-left: 0;
  line-height: 1.4;
  text-align: center;
}
.why-card__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 20px;
}
.why-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 12px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.why-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--light-muted);
  margin: 0;
}
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card__metric { font-size: 48px; }
}

/* Barra do ecossistema Jump (TALL · ERA · TIP) */
.ecosystem-bar {
  margin-top: 72px;
  padding: 44px 48px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: 20px;
  box-shadow: var(--shadow-md-light);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}
.ecosystem-bar__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 12px;
}
.ecosystem-bar__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  letter-spacing: -.015em;
  color: var(--light-text);
  margin-bottom: 14px;
  text-wrap: balance;
}
.ecosystem-bar__title .accent {
  background: linear-gradient(90deg, var(--purple-500) 0%, var(--purple-400) 50%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.ecosystem-bar__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--light-muted);
  margin: 0;
}
.ecosystem-bar__logos {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
}
.ecosystem-bar__logos li {
  display: grid;
  place-items: center;
  height: 92px;
  padding: 14px;
  background: var(--light-bg-2);
  border: 1px solid var(--light-border-soft);
  border-radius: 14px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ecosystem-bar__logos li:hover {
  transform: translateY(-2px);
  border-color: var(--purple-200);
  box-shadow: var(--shadow-md-light);
}
.ecosystem-bar__logos img {
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
}

@media (max-width: 880px) {
  .ecosystem-bar { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; margin-top: 48px; }
  .ecosystem-bar__logos li { height: 76px; }
}
@media (max-width: 520px) {
  .ecosystem-bar__logos { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════
   04 — LOCALIZAÇÃO (CLARO, refinado)
   ═══════════════════════════════════════════ */
.section--location {
  background:
    radial-gradient(55% 50% at 90% 20%, rgba(135,121,232,.06), transparent 65%),
    var(--light-bg);
}
.loc-wrap {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
}
.loc__content { text-align: left; }
.loc__content .section__eyebrow,
.loc__content .section__title,
.loc__content .section__lead { margin-left: 0; }
.loc__content .section__title,
.loc__content .section__lead { text-align: left; }
.loc__list {
  list-style: none;
  margin: 28px 0 36px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.loc__list li {
  padding: 14px 18px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-left: 3px solid var(--purple-500);
  border-radius: 8px;
  color: var(--light-muted);
  font-size: 14.5px;
}
.loc__list strong { color: var(--light-text); font-weight: 600; }

.loc__card {
  position: relative;
  padding: 36px 32px 32px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: 18px;
  box-shadow: var(--shadow-lg-light);
  overflow: hidden;
}
.loc__card--with-photo { padding-top: 0; }
.loc__card-photo {
  margin: 0 -32px 28px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--light-bg-2);
  border-bottom: 1px solid var(--light-border-soft);
  position: relative;
}
.loc__card-photo img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}
.loc__card-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,.55) 100%);
  pointer-events: none;
}
.loc__card-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 14px;
  display: inline-flex; align-items: center; gap: 10px;
}
.loc__card-eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(43,182,115,.18);
}
.loc__card-addr {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -.015em;
  color: var(--light-text);
  margin-bottom: 22px;
}
.loc__card-addr small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--light-muted-2);
  margin-top: 6px;
  letter-spacing: 0;
}
.loc__contact {
  border-top: 1px solid var(--light-border-soft);
  padding-top: 20px;
  margin-top: 4px;
  display: grid;
  gap: 12px;
}
.loc__contact a {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--light-text);
  font-size: 14px;
  font-weight: 500;
  transition: color .12s;
}
.loc__contact a:hover { color: var(--purple-600); }
.loc__contact a svg { width: 18px; height: 18px; color: var(--purple-500); flex-shrink: 0; }

@media (max-width: 980px) {
  .loc-wrap { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════
   CTA FINAL (ESCURO)
   ═══════════════════════════════════════════ */
.section--cta {
  padding: 100px 0;
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(91,79,229,.22), transparent 70%),
    linear-gradient(180deg, #1B1638 0%, var(--dark-bg) 100%);
}
.cta-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cta-block__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: -.015em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
  text-wrap: balance;
  font-feature-settings: 'ss01', 'lnum';
}
.cta-block__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--dark-muted);
  margin-bottom: 32px;
  letter-spacing: 0;
}

/* ═══════════════════════════════════════════
   VERTICAL — usado em Soluções
   2 colunas (texto + card visual), alterna lados
   ═══════════════════════════════════════════ */
.vertical {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}
.vertical--reverse { grid-template-columns: 440px 1fr; }
.vertical--reverse .vertical__content { order: 2; }
.vertical--reverse .vertical__visual { order: 1; }

.vertical__content .section__eyebrow,
.vertical__content .section__title { margin-left: 0; }
.vertical__content .section__title { text-align: left; font-size: clamp(28px, 3.4vw, 42px); }
.vertical__content > p {
  font-size: 16px;
  line-height: 1.65;
  margin: 18px 0 22px;
}
.section--light .vertical__content > p,
.section--light-2 .vertical__content > p { color: var(--light-muted); }
.section--dark .vertical__content > p { color: var(--dark-muted); }
.vertical__content > p strong { color: inherit; font-weight: 600; }
.section--light .vertical__content > p strong { color: var(--light-text); }
.section--dark .vertical__content > p strong { color: #fff; }

/* Visual card (lado direito) */
.vertical__visual {
  position: relative;
  padding: 36px 32px;
  border-radius: 20px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-lg-light);
  overflow: hidden;
}
.section--dark .vertical__visual {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border-color: var(--dark-border);
  box-shadow: var(--shadow-lg-dark);
}
.vertical__visual::before {
  content: "";
  position: absolute;
  inset: -40% -40% auto auto;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(91,79,229,.18) 0%, transparent 60%);
  pointer-events: none;
}
.vertical__visual-img {
  margin: -36px -32px 24px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--light-border-soft);
  background: var(--light-bg-2);
}
.section--dark .vertical__visual-img {
  border-bottom-color: var(--dark-border-soft);
  background: rgba(255,255,255,.02);
}
.vertical__visual-img img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}

/* Card visual com logo da empresa parceira */
.vertical__visual-logo {
  position: relative;
  width: 80px; height: 80px;
  border-radius: 18px;
  background: #fff;
  display: grid; place-items: center;
  padding: 10px;
  border: 1px solid var(--light-border);
  box-shadow:
    0 8px 22px rgba(91,79,229,.14),
    0 2px 6px rgba(26,20,50,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
  margin-bottom: 22px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.vertical__visual-logo::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg, var(--purple-400), transparent 55%, var(--accent-pink));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .55;
  pointer-events: none;
}
.section--dark .vertical__visual-logo {
  border-color: rgba(255,255,255,.10);
  box-shadow:
    0 10px 28px rgba(0,0,0,.42),
    0 2px 6px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.5);
}
.vertical__visual:hover .vertical__visual-logo {
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(91,79,229,.22),
    0 3px 8px rgba(26,20,50,.10),
    inset 0 1px 0 rgba(255,255,255,.6);
}
.vertical__visual-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.vertical__visual h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.section--light .vertical__visual h3,
.section--light-2 .vertical__visual h3 { color: var(--light-text); }
.section--dark .vertical__visual h3 { color: #fff; }
.vertical__visual-sub {
  font-size: 13px;
  color: var(--purple-500);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Check list */
.check-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.check-list li {
  position: relative;
  padding: 6px 0 6px 32px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.55;
}
.section--light .check-list li,
.section--light-2 .check-list li { color: var(--light-muted); }
.section--dark .check-list li { color: var(--dark-muted); }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><circle cx='12' cy='12' r='12' fill='%235B4FE5'/><path d='M7 12l3 3 7-7' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

@media (max-width: 980px) {
  .vertical, .vertical--reverse { grid-template-columns: 1fr; gap: 40px; }
  .vertical--reverse .vertical__content { order: 1; }
  .vertical--reverse .vertical__visual { order: 2; }
}

/* ═══════════════════════════════════════════
   PILLAR — usado em Diferenciais
   ═══════════════════════════════════════════ */
.pillar {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.pillar__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 96px;
  letter-spacing: -.05em;
  line-height: 1;
  background: linear-gradient(160deg, var(--purple-500) 0%, var(--purple-300) 60%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: .9;
}
.section--dark .pillar__num {
  background: linear-gradient(160deg, var(--purple-200) 0%, var(--purple-400) 60%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.pillar__content .section__eyebrow { margin-left: 0; }
.pillar__content .section__title {
  text-align: left;
  font-size: clamp(26px, 3vw, 38px);
  margin: 14px 0 18px;
}
.pillar__content > p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.section--light .pillar__content > p,
.section--light-2 .pillar__content > p { color: var(--light-muted); }
.section--dark .pillar__content > p { color: var(--dark-muted); }
.section--light .pillar__content > p strong,
.section--light-2 .pillar__content > p strong { color: var(--light-text); }
.section--dark .pillar__content > p strong { color: #fff; }

.check-list--two-cols { grid-template-columns: 1fr; }
@media (min-width: 640px) { .check-list--two-cols { grid-template-columns: repeat(2, 1fr); } }

/* Lead destacada dentro do pillar (subtítulo curto) */
.pillar__lead {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.45;
  letter-spacing: 0;
  margin: 0 0 22px;
  color: var(--purple-700);
}
.section--dark .pillar__lead { color: var(--purple-200); }
.pillar__lead strong { font-weight: 800; color: inherit; }

/* ═══════════════════════════════════════════
   PILLAR VERTICAL (.pillar-v) — usado em Diferenciais
   Estrutura: header (num + título) → foto largura total → corpo (texto + checklist)
   ═══════════════════════════════════════════ */
.pillar-v {
  display: grid;
  gap: 40px;
  max-width: 1120px;
  margin: 0 auto;
}
.pillar-v__head {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.pillar-v__heading {
  flex: 1 1 auto;
  min-width: 0;
}
.pillar-v__num {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 9vw, 120px);
  line-height: .9;
  letter-spacing: -.04em;
  background: linear-gradient(160deg, var(--purple-500) 0%, var(--purple-300) 60%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  opacity: .92;
}
.section--dark .pillar-v__num {
  background: linear-gradient(160deg, var(--purple-200) 0%, var(--purple-400) 60%, var(--accent-pink) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.pillar-v__heading .section__eyebrow { margin-left: 0; }
.pillar-v__heading .section__title {
  text-align: left;
  font-size: clamp(28px, 3.4vw, 44px);
  margin: 14px 0 18px;
}

.pillar-v__photo {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: var(--light-bg-2);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-lg-light);
  line-height: 0;
}
.section--dark .pillar-v__photo {
  background: rgba(255,255,255,.03);
  border-color: var(--dark-border);
  box-shadow: var(--shadow-lg-dark);
}
.pillar-v__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.pillar-v__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pillar-v__body > p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.section--light .pillar-v__body > p,
.section--light-2 .pillar-v__body > p { color: var(--light-muted); }
.section--dark .pillar-v__body > p { color: var(--dark-muted); }
.section--light .pillar-v__body > p strong,
.section--light-2 .pillar-v__body > p strong { color: var(--light-text); font-weight: 700; }
.section--dark .pillar-v__body > p strong { color: #fff; font-weight: 700; }

.pillar-v__body .check-list { margin: 0; }

@media (max-width: 880px) {
  .pillar-v { gap: 32px; }
  .pillar-v__head { flex-direction: column; gap: 8px; align-items: flex-start; }
  .pillar-v__body { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 740px) {
  .pillar { grid-template-columns: 1fr; gap: 16px; }
  .pillar__num { font-size: 64px; }
}

/* Bloco "Respaldo Wave Technologies" dentro do pillar 03 */
.wave-respaldo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 4px 0 24px;
  padding: 14px 22px 14px 18px;
  background: rgba(155,142,230,.10);
  border: 1px solid var(--dark-border);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}
.section--light .wave-respaldo,
.section--light-2 .wave-respaldo,
.foot .wave-respaldo {
  background: var(--light-elev);
  border-color: var(--light-border);
  box-shadow: var(--shadow-sm-light);
}
.wave-respaldo__mark { width: 48px; height: 26px; flex-shrink: 0; }
.wave-respaldo__text { display: flex; flex-direction: column; line-height: 1; }
.wave-respaldo__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  color: #fff;
}
.section--light .wave-respaldo__name,
.section--light-2 .wave-respaldo__name,
.foot .wave-respaldo__name { color: var(--light-text); }
.wave-respaldo__sub {
  font-family: var(--font-support);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-top: 4px;
}
.section--light .wave-respaldo__sub,
.section--light-2 .wave-respaldo__sub,
.foot .wave-respaldo__sub { color: var(--light-muted-2); }
.wave-respaldo__caption {
  padding-left: 16px;
  border-left: 1px solid rgba(155,142,230,.22);
  font-family: var(--font-support);
  font-weight: 300;
  font-size: 13px;
  color: var(--dark-muted);
  letter-spacing: .01em;
}
.section--light .wave-respaldo__caption,
.section--light-2 .wave-respaldo__caption,
.foot .wave-respaldo__caption {
  color: var(--light-muted);
  border-left-color: var(--light-border);
}
@media (max-width: 560px) {
  .wave-respaldo { flex-wrap: wrap; gap: 12px; padding: 12px 16px; }
  .wave-respaldo__caption { padding-left: 0; border-left: 0; width: 100%; }
}

/* Metrics — barra de números */
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.metric {
  padding: 24px 18px;
  background: var(--light-elev);
  border: 1px solid var(--light-border);
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-sm-light);
}
.section--dark .metric {
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.01) 100%);
  border-color: var(--dark-border);
  box-shadow: none;
}
.metric__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.metric__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.section--light .metric__label,
.section--light-2 .metric__label { color: var(--light-muted-2); }
.section--dark .metric__label { color: var(--dark-muted-2); }

@media (max-width: 780px) { .metrics { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════
   ECOSYSTEM — usado em Sobre
   ═══════════════════════════════════════════ */
.ecosystem {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.eco-node {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.012) 100%);
  border: 1px solid var(--dark-border);
  border-radius: 16px;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.eco-node:hover {
  transform: translateY(-3px);
  border-color: rgba(155,142,230,.30);
  background: linear-gradient(180deg, rgba(155,142,230,.06) 0%, rgba(155,142,230,.015) 100%);
}
.eco-node__role {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-300);
  margin-bottom: 14px;
  display: inline-block;
}
.eco-node h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.01em;
  text-wrap: balance;
}
.eco-node p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--dark-muted);
  margin: 0;
}
.eco-node--accent {
  background: linear-gradient(155deg, var(--purple-600) 0%, var(--purple-800) 100%);
  border-color: var(--purple-500);
}
.eco-node--accent .eco-node__role { color: var(--purple-100); }
.eco-node--accent p { color: rgba(255,255,255,.85); }

@media (max-width: 980px) { .ecosystem { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ecosystem { grid-template-columns: 1fr; } }

/* Leader card */
.leader {
  display: grid;
  grid-template-columns: 440px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}
.leader__photo {
  position: sticky;
  top: 100px;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg-light);
  background: var(--light-bg-2);
}
.leader__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(91,79,229,.18) 100%);
  pointer-events: none;
}
.leader__photo img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.leader__content .section__eyebrow,
.leader__content .section__title { margin-left: 0; }
.leader__content .section__title {
  text-align: left;
  font-size: clamp(26px, 3vw, 38px);
  margin: 14px 0 24px;
}
.leader__content > p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--light-muted);
  margin: 0 0 18px;
  letter-spacing: 0;
}
.leader__content > p:last-child { margin-bottom: 0; }
.leader__content > p strong { color: var(--light-text); font-weight: 700; }

@media (max-width: 980px) {
  .leader { grid-template-columns: 1fr; gap: 32px; }
  .leader__photo { max-width: 420px; margin: 0 auto; position: static; }
}

/* ═══════════════════════════════════════════
   FOOTER (CLARO)
   ═══════════════════════════════════════════ */
.foot {
  background: var(--light-bg-2);
  border-top: 1px solid var(--light-border);
  padding: 72px 0 24px;
  color: var(--light-muted);
}
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.foot__brand-logo {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}
.foot__tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--light-muted);
  margin-bottom: 22px;
  max-width: 320px;
}
/* Variante do wave-respaldo dentro do footer (coluna estreita) */
.wave-respaldo--foot {
  flex-wrap: wrap;
  gap: 4px 12px;
  max-width: 320px;
  padding: 14px 18px;
}
.wave-respaldo--foot .wave-respaldo__caption {
  order: -1;
  padding-left: 0;
  border-left: 0;
  width: 100%;
  font-size: 11.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--light-muted-2);
  margin-bottom: 2px;
}
.foot h4 {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 18px;
}
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot a {
  font-size: 14px;
  color: var(--light-muted);
  transition: color .12s;
}
.foot a:hover { color: var(--purple-600); }
.foot__social a {
  display: inline-flex; align-items: center; gap: 10px;
}
.foot__social svg { width: 16px; height: 16px; }
.foot__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--light-border);
  font-size: 12.5px;
  color: var(--light-muted-2);
}

@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot__brand { grid-column: 1 / -1; }
}

/* ─── Floating WhatsApp ────────────────────── */
.wa {
  position: fixed; bottom: 22px; right: 22px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25d366 0%, #128c7e 100%);
  display: grid; place-items: center;
  color: #fff;
  box-shadow: 0 8px 20px rgba(18,140,126,.32);
  z-index: 50;
  transition: transform .15s;
}
.wa:hover { transform: scale(1.06); }
.wa svg { width: 26px; height: 26px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
