/* ==========================================================================
   WEPE TECNOLOGIA — Folha de Estilos
   Identidade: Azul #0088FF | Roxo #9933FF
   ========================================================================== */

:root {
  --azul: #0088ff;
  --roxo: #9933ff;
  --azul-600: #0073dd;
  --roxo-600: #8526ec;
  --azul-suave: rgba(0, 136, 255, 0.16);
  --roxo-suave: rgba(153, 51, 255, 0.16);

  --grad: linear-gradient(120deg, var(--azul), var(--roxo));
  --grad-soft: linear-gradient(120deg, var(--azul-suave), var(--roxo-suave));
  --grad-text: linear-gradient(95deg, #2f9bff 10%, var(--roxo) 100%);

  --bg: #060a13;
  --bg-alt: #0a101f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --white: #ffffff;
  --text-suave: #c9d4ea;
  --muted: #8d9bb8;

  --fonte: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --fonte-display: "Sora", "Inter", sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 999px;
  --container: 1160px;
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.5);
  --glow: 0 0 60px rgba(0, 136, 255, 0.3), 0 0 120px rgba(153, 51, 255, 0.22);
  --header-h: 78px;
}

/* ---------- Reset & base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }

body {
  font-family: var(--fonte);
  background: var(--bg);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--roxo); color: #fff; }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
svg, img { display: block; max-width: 100%; }

h1, h2, h3, h4 { font-family: var(--fonte-display); line-height: 1.16; letter-spacing: -0.02em; }

.container { width: min(var(--container), 100% - 48px); margin-inline: auto; }

.section { padding: clamp(72px, 9vw, 124px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }

/* ---------- Componentes de seção ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 136, 255, 0.35);
  background: var(--azul-suave);
  color: #55b4ff;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 12px rgba(0, 136, 255, 0.9);
}

.section-head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }

.section-title { margin-top: 18px; font-size: clamp(1.9rem, 4.2vw, 3rem); font-weight: 800; }
.section-desc { margin-top: 16px; color: var(--text-suave); font-size: 1.06rem; }

.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-family: var(--fonte);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn--grad {
  background: var(--grad);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 136, 255, 0.35);
}
.btn--grad::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
}
.btn--grad:hover::after { transform: translateX(130%); }
.btn--grad:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(153, 51, 255, 0.45);
}

.btn--outline {
  border: 1px solid var(--line-strong);
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.btn--outline:hover {
  border-color: transparent;
  background: var(--grad);
  box-shadow: 0 12px 30px rgba(0, 136, 255, 0.3);
  transform: translateY(-3px);
}

/* ==========================================================================
   Header / Navegação
   ========================================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.header.scrolled {
  background: rgba(6, 10, 19, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: inline-flex; align-items: center; gap: 12px; font-family: var(--fonte-display); font-weight: 800; font-size: 1.16rem; }
.logo__mark { width: 42px; height: 42px; border-radius: 13px; background: var(--grad); display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 136, 255, 0.4); flex: none; }
.logo__mark svg { width: 22px; height: 22px; }
.logo__name b { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; align-items: center; gap: 30px; }
.nav__list a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-suave);
  transition: color 0.2s ease;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
  transition: width 0.3s ease;
}
.nav__list a:hover { color: #fff; }
.nav__list a:hover::after, .nav__list a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: #fff; transition: transform 0.3s ease, opacity 0.3s ease; }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + clamp(40px, 7vw, 90px)) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.hero__blob--1 { width: 480px; height: 480px; top: -140px; left: -120px; background: rgba(0, 136, 255, 0.5); animation: blobFloat 14s ease-in-out infinite; }
.hero__blob--2 { width: 400px; height: 400px; bottom: -140px; right: -90px; background: rgba(153, 51, 255, 0.45); animation: blobFloat 18s ease-in-out infinite reverse; }
.hero__blob--3 { width: 220px; height: 220px; top: 42%; right: 28%; background: rgba(0, 136, 255, 0.35); animation: blobFloat 11s ease-in-out infinite 1s; }
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, #000 25%, transparent 72%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(40px, 6vw, 72px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-suave);
}
.badge__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 5px rgba(0, 136, 255, 0.15);
  animation: pulse 2.4s ease-in-out infinite;
}
.hero__title { margin-top: 24px; font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
.hero__subtitle { margin-top: 20px; max-width: 540px; font-size: clamp(1rem, 1.3vw, 1.14rem); color: var(--text-suave); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.stat { padding-right: 34px; margin-right: 34px; border-right: 1px solid var(--line); }
.stat:last-child { padding-right: 0; margin-right: 0; border-right: 0; }
.stat__num { font-family: var(--fonte-display); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat__label { font-size: 0.84rem; color: var(--muted); margin-top: 2px; }

.hero__visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg), var(--glow);
  padding: 20px;
  animation: float 7s ease-in-out infinite;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 136, 255, 0.6), transparent 40%, transparent 60%, rgba(153, 51, 255, 0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card__bar { display: flex; align-items: center; gap: 8px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--azul { background: var(--azul); }
.dot--roxo { background: var(--roxo); }
.dot--cinza { background: rgba(255, 255, 255, 0.25); }
.hero-card__url {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.03);
}
.hero-card__body { padding-top: 16px; }
.hero-card__title { font-size: 0.95rem; font-weight: 700; }
.hero-card__meta { font-size: 0.78rem; color: var(--muted); margin-top: 4px; display: flex; align-items: center; gap: 8px; }
.live { display: inline-flex; align-items: center; gap: 6px; color: #6ee7a0; font-weight: 600; font-size: 0.74rem; }
.live i { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 10px #4ade80; animation: pulse 1.8s infinite; }

.chart { display: flex; align-items: flex-end; gap: 12px; height: 190px; margin-top: 22px; }
.chart__col { flex: 1; display: flex; flex-direction: column; gap: 8px; height: 100%; justify-content: flex-end; }
.chart__bar {
  border-radius: 8px;
  background: var(--grad);
  transform-origin: bottom;
  animation: growUp 1s cubic-bezier(0.2, 0.7, 0.3, 1) both;
  position: relative;
}
.chart__bar span { position: absolute; top: -22px; left: 50%; transform: translateX(-50%); font-size: 0.68rem; color: var(--text-suave); font-weight: 600; }
.chart__label { text-align: center; font-size: 0.68rem; color: var(--muted); }

.hero-card__footer { display: flex; justify-content: space-between; gap: 12px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.foot-card { flex: 1; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); padding: 12px 14px; }
.foot-card__label { font-size: 0.68rem; color: var(--muted); }
.foot-card__value { font-size: 1.05rem; font-weight: 700; margin-top: 2px; }
.foot-card__trend { font-size: 0.7rem; color: #6ee7a0; font-weight: 600; margin-top: 2px; }
/* ==========================================================================
   Stack de tecnologias
   ========================================================================== */
.stack { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stack__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 38px; }
.stack__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.stack__tech { font-family: var(--fonte-display); font-size: 0.93rem; font-weight: 700; color: var(--text-suave); }
.stack__tech::before { content: "◆"; font-size: 0.5rem; margin-right: 10px; color: var(--roxo); vertical-align: middle; }

/* ==========================================================================
   Serviços
   ========================================================================== */
.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0, 136, 255, 0.08), transparent 70%);
  pointer-events: none;
}
.services__grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  position: relative;
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 0%, rgba(0, 136, 255, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 136, 255, 0.45);
  background: var(--surface-2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 40px rgba(0, 136, 255, 0.12);
}
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }

.card__icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(0, 136, 255, 0.3);
  margin-bottom: 22px;
  color: #fff;
}
.card__icon svg { width: 26px; height: 26px; }
.card__title { font-size: 1.16rem; font-weight: 700; }
.card__desc { margin-top: 10px; font-size: 0.94rem; color: var(--text-suave); }
.card__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.88rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.card__link svg { width: 15px; height: 15px; transition: transform 0.25s ease; }
.card:hover .card__link svg { transform: translateX(5px); }
/* ==========================================================================
   Sobre / Diferenciais
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.about__lead { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.35; }
.about__desc { margin-top: 14px; color: var(--text-suave); }
.about__points { margin-top: 30px; display: grid; gap: 14px; }

.point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.point:hover { border-color: rgba(153, 51, 255, 0.5); transform: translateX(5px); }
.point__check {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--grad);
  color: #fff;
}
.point__check svg { width: 16px; height: 16px; }
.point h4 { font-size: 0.98rem; font-weight: 700; }
.point p { font-size: 0.88rem; color: var(--muted); margin-top: 3px; }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.pillar {
  padding: 26px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(153, 51, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(153, 51, 255, 0.1);
}
.pillar__num {
  font-family: var(--fonte-display);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pillar__title { margin-top: 14px; font-size: 1.05rem; font-weight: 700; }
.pillar__desc { margin-top: 8px; font-size: 0.92rem; color: var(--text-suave); }

/* ==========================================================================
   Faixa de métricas
   ========================================================================== */
.stats-band__inner {
  position: relative;
  border-radius: 28px;
  padding: clamp(46px, 5vw, 70px);
  background: linear-gradient(135deg, rgba(0, 136, 255, 0.14), rgba(153, 51, 255, 0.14));
  border: 1px solid rgba(0, 136, 255, 0.25);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  overflow: hidden;
}
.stats-band__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.4;
}
.metric { position: relative; text-align: center; }
.metric__num { font-family: var(--fonte-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.metric__label { color: var(--text-suave); font-size: 0.9rem; margin-top: 6px; }
/* ==========================================================================
   Contato
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 136, 255, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.contact-card__icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--grad-soft);
  border: 1px solid rgba(0, 136, 255, 0.3);
  color: #fff;
}
.contact-card__icon svg { width: 28px; height: 28px; }
.contact-card h3 { font-size: 1.05rem; font-weight: 700; }
.contact-card p { margin-top: 8px; font-size: 0.92rem; color: var(--muted); }
.contact-card a {
  margin-top: 14px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   CTA final
   ========================================================================== */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  text-align: center;
  padding: clamp(56px, 8vw, 92px) clamp(24px, 6vw, 60px);
}
.cta__bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--azul) 0%, var(--roxo) 100%); }
.cta__pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px); background-size: 24px 24px; opacity: 0.5; }
.cta__blob { position: absolute; width: 340px; height: 340px; border-radius: 50%; filter: blur(70px); background: rgba(255, 255, 255, 0.22); top: -140px; left: -80px; }
.cta__inner { position: relative; z-index: 1; }
.cta__title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; max-width: 620px; margin-inline: auto; }
.cta__desc { margin-top: 14px; font-size: 1.05rem; color: rgba(255, 255, 255, 0.9); max-width: 520px; margin-inline: auto; }
.cta .btn { margin-top: 30px; background: #fff; color: #0b2b6b; }
.cta .btn:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3); }
/* ==========================================================================
   Footer
   ========================================================================== */
.footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 48px; }
.footer__brand p { font-size: 0.92rem; color: var(--muted); max-width: 320px; margin-top: 16px; }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.socials a:hover { transform: translateY(-4px); background: var(--grad); border-color: transparent; }
.socials svg { width: 18px; height: 18px; }
.footer h4 { font-size: 1rem; margin-bottom: 18px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: 0.92rem; color: var(--text-suave); transition: color 0.2s ease; }
.footer__links a:hover {
  color: #fff;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==========================================================================
   Animações
   ========================================================================== */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes blobFloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(24px, -20px) scale(1.08); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.55; transform: scale(0.85); } }
@keyframes growUp { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.4, 0.25, 1), transform 0.7s cubic-bezier(0.2, 0.4, 0.25, 1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-inline: auto; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .stats-band__inner { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80vw, 320px);
    background: rgba(10, 14, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 100px 34px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
    border-left: 1px solid var(--line);
  }
  .nav.open { transform: none; box-shadow: -30px 0 60px rgba(0, 0, 0, 0.5); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 6px; }
  .nav__list a { display: block; padding: 12px 0; font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .nav__cta { margin-top: 18px; }

  .hero { padding-top: calc(var(--header-h) + 20px); }
  .hero__stats { gap: 18px; }
  .stat { padding-right: 18px; margin-right: 18px; }
  .services__grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .stack__inner { gap: 12px 24px; }
  .hero-card__footer { flex-wrap: wrap; }
  .chart { gap: 8px; }
  .footer__grid { grid-template-columns: 1fr; }
}
.btn--sm { padding: 11px 22px; font-size: 0.9rem; }