/* =========================================================================
   RESET
========================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-page);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11", "tnum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* =========================================================================
   TOKENS
========================================================================= */
:root {
  --bg-page: #FAFBFD;
  --bg-card: #FFFFFF;
  --bg-soft: #F4F6FB;
  --bg-mid: #EEF2F8;
  --bg-dark: #060914;
  --bg-dark-2: #0A0F1F;

  --navy: #0A1F44;
  --navy-2: #142B5C;
  --accent: #2F6FED;
  --accent-soft: #E8F0FE;
  --accent-2: #00C9A7;
  --accent-warm: #FFB845;

  --text: #0F1623;
  --text-light: #FFFFFF;
  --muted: #5A6478;
  --muted-2: #8A93A6;
  --muted-3: #B7BECC;

  --border: #E5E9F2;
  --border-dark: rgba(255, 255, 255, 0.08);
  --border-dark-2: rgba(255, 255, 255, 0.14);

  --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.04);
  --shadow-md: 0 8px 32px rgba(10, 31, 68, 0.08);
  --shadow-lg: 0 24px 64px rgba(10, 31, 68, 0.12);
  --shadow-glow: 0 0 64px rgba(47, 111, 237, 0.32);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* =========================================================================
   LAYOUT
========================================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 140px 0;
  position: relative;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 96px 0; }
  .container { padding: 0 22px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* =========================================================================
   TIPOGRAFIA — UTILS
========================================================================= */
.serif-italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.text-accent { color: var(--accent); }
.text-accent2 { color: var(--accent-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.eyebrow-bar {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.85); }
.eyebrow-light .eyebrow-bar {
  background: linear-gradient(90deg, var(--accent-2), rgba(255, 255, 255, 0.4));
}
.eyebrow-mid { margin-top: 64px; }

.h-section {
  font-size: clamp(36px, 4.4vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
}
.h-section-light { color: var(--text-light); }

.lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 720px;
}
.lead strong { color: var(--navy); font-weight: 600; }

.section-head { margin-bottom: 64px; }

@media (max-width: 768px) {
  .h-section { font-size: 32px; }
  .lead { font-size: 16px; }
  .section-head { margin-bottom: 48px; }
}

/* =========================================================================
   SCROLL PROGRESS
========================================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  z-index: 1000;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(47, 111, 237, 0.6);
}

/* =========================================================================
   NAV
========================================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  transition: all 0.4s var(--ease);
}
.nav.scrolled {
  background: rgba(6, 9, 20, 0.72);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid var(--border-dark);
}
.nav.scrolled.light {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-light);
  transition: color 0.3s var(--ease);
}
.nav.scrolled.light .nav-brand { color: var(--navy); }
.nav-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(47, 111, 237, 0.3);
}
.nav-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 2px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 40% 35%, 40% 100%, 0 100%);
}
.nav-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-name .dot { color: var(--accent-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav.scrolled.light .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text-light); }
.nav.scrolled.light .nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}
.nav-cta svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.nav-cta:hover { background: var(--accent); border-color: var(--accent); }
.nav-cta:hover svg { transform: translateX(3px); }
.nav.scrolled.light .nav-cta {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.nav.scrolled.light .nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .nav { padding: 14px 22px; }
  .nav-links { display: none; }
}

/* =========================================================================
   HERO
========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Mesh gradient animado */
.hero-mesh {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(47, 111, 237, 0.45) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(0, 201, 167, 0.32) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(99, 91, 255, 0.18) 0%, transparent 60%);
  filter: blur(80px);
  opacity: 0.7;
  animation: meshFloat 22s ease-in-out infinite;
}
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 4%) scale(1.05); }
  66% { transform: translate(4%, -2%) scale(0.97); }
}

/* Grid pattern */
.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: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
}

/* Mouse-follow glow */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.35) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  transition: transform 0.4s var(--ease);
  opacity: 0;
}
.hero-glow.active { opacity: 1; }

/* Stars sutis */
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 255, 255, 0.6), transparent 50%),
    radial-gradient(1px 1px at 28% 42%, rgba(255, 255, 255, 0.45), transparent 50%),
    radial-gradient(1.5px 1.5px at 65% 75%, rgba(0, 201, 167, 0.5), transparent 50%),
    radial-gradient(1px 1px at 85% 22%, rgba(255, 255, 255, 0.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 92% 60%, rgba(47, 111, 237, 0.55), transparent 50%),
    radial-gradient(1px 1px at 8% 78%, rgba(255, 255, 255, 0.4), transparent 50%);
  animation: starsTwinkle 6s ease-in-out infinite;
}
@keyframes starsTwinkle {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark-2);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 36px;
}
.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  color: #fff;
}
.hero-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 4px;
}
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.hero-title .word.in {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s var(--ease), opacity 1s var(--ease);
}
.hero-title .word.italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-title .word.gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero-lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin-bottom: 40px;
}
.hero-lead strong { color: #fff; font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 99px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2), 0 0 0 6px rgba(255, 255, 255, 0.06);
}
.btn-primary:hover svg { transform: translateY(2px); }
.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
}
.hero-stat {
  padding-right: 32px;
  border-right: 1px solid var(--border-dark);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat-num {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hero-stat-num .prefix {
  font-size: 0.6em;
  color: var(--accent-2);
  font-weight: 700;
}
.hero-stat-num .suffix {
  font-size: 0.55em;
  color: var(--accent-2);
  font-weight: 700;
  margin-left: 4px;
}
.hero-stat-lbl {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4));
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--accent-2));
  animation: scrollHint 2.4s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { top: -40px; }
  100% { top: 100%; }
}

@media (max-width: 1024px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-stat { border-right: 0; padding-right: 0; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border-dark); padding-right: 24px; }
}
@media (max-width: 640px) {
  .hero { padding: 100px 22px 60px; }
  .hero-title { font-size: 42px; }
  .hero-lead { font-size: 15.5px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}

/* =========================================================================
   PILLARS (sobre)
========================================================================= */
.sobre {
  background: linear-gradient(180deg, var(--bg-page) 0%, #fff 100%);
}
.pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.pillar:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.pillar h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.3;
}
.pillar p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================================
   PJs (empresas)
========================================================================= */
.empresas { background: #fff; }
.pjs { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 1024px) { .pjs { grid-template-columns: 1fr; } }

.pj {
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.pj-active {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, #1A3A7A 100%);
  color: #fff;
  box-shadow: 0 24px 64px rgba(10, 31, 68, 0.25);
}
.pj-active::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 80%;
  height: 140%;
  background: radial-gradient(circle, rgba(47, 111, 237, 0.4) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.pj-history {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
}
.pj-history:hover { box-shadow: var(--shadow-md); }

.pj-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
}
.pj-status-muted {
  background: rgba(10, 31, 68, 0.04);
  border-color: var(--border);
  color: var(--muted);
}
.pj-pulse {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--accent-2);
  box-shadow: 0 0 12px var(--accent-2);
  position: relative;
}
.pj-pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 99px;
  border: 2px solid var(--accent-2);
  animation: pulseRing 2s ease-out infinite;
}
.pj-pulse-muted { background: var(--muted-2); box-shadow: none; }
.pj-pulse-muted::before { display: none; }
@keyframes pulseRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.pj-head { margin-bottom: 28px; position: relative; }
.pj-head h3 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.pj-active .pj-head h3 { color: #fff; }
.pj-history .pj-head h3 { color: var(--navy); }
.pj-head h3 span {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  opacity: 0.7;
  letter-spacing: 0;
  margin-left: 4px;
}
.pj-cnpj {
  font-family: 'SF Mono', 'Consolas', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.pj-active .pj-cnpj { color: rgba(255, 255, 255, 0.6); }
.pj-active .pj-cnpj strong { color: var(--accent-2); font-weight: 600; }
.pj-history .pj-cnpj { color: var(--muted); }
.pj-history .pj-cnpj strong { color: var(--navy); font-weight: 600; }

.pj-body { position: relative; }
.pj-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid;
  align-items: baseline;
}
.pj-active .pj-row { border-color: var(--border-dark); }
.pj-history .pj-row { border-color: var(--border); }
.pj-body .pj-row:last-child { border-bottom: 0; }
.pj-row .k {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pj-active .pj-row .k { color: rgba(255, 255, 255, 0.5); }
.pj-history .pj-row .k { color: var(--muted-2); }
.pj-row .v {
  font-size: 14px;
  line-height: 1.55;
}
.pj-active .pj-row .v { color: rgba(255, 255, 255, 0.92); }
.pj-active .pj-row .v strong { color: #fff; font-weight: 600; }
.pj-history .pj-row .v { color: var(--text); }
.pj-history .pj-row .v strong { color: var(--navy); font-weight: 600; }
.pj-row .v .dim {
  opacity: 0.6;
}

@media (max-width: 640px) {
  .pj { padding: 28px 24px; }
  .pj-head h3 { font-size: 24px; }
  .pj-head h3 span { font-size: 18px; display: block; margin-left: 0; margin-top: 4px; }
  .pj-row { grid-template-columns: 1fr; gap: 4px; }
}

/* =========================================================================
   OPERAÇÃO — plataformas + cases
========================================================================= */
.operacao {
  background: linear-gradient(180deg, #fff 0%, var(--bg-page) 100%);
}

/* Plataformas */
.platforms { margin-bottom: 32px; }

.platform {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: all 0.4s var(--ease);
}
.platform:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.platform:hover .plat-glow { opacity: 1; transform: scale(1); }
.platform:hover .plat-cta { gap: 8px; }
.platform:hover .plat-cta svg { transform: translate(2px, -2px); }

.plat-glow {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 100%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s var(--ease);
  pointer-events: none;
}
.plat-hot .plat-glow { background: radial-gradient(circle, rgba(255, 79, 0, 0.35) 0%, transparent 70%); }
.plat-pp .plat-glow { background: radial-gradient(circle, rgba(43, 191, 95, 0.35) 0%, transparent 70%); }
.plat-no .plat-glow { background: radial-gradient(circle, rgba(47, 111, 237, 0.35) 0%, transparent 70%); }

.plat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.plat-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.plat-hot .plat-mark { background: linear-gradient(135deg, #FF4F00, #FF8A00); box-shadow: 0 8px 20px rgba(255, 79, 0, 0.25); }
.plat-pp .plat-mark { background: linear-gradient(135deg, #1A8E3A, #2BBF5F); box-shadow: 0 8px 20px rgba(43, 191, 95, 0.25); }
.plat-no .plat-mark { background: linear-gradient(135deg, #0A1F44, #2F6FED); box-shadow: 0 8px 20px rgba(47, 111, 237, 0.25); }

.plat-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.plat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
  position: relative;
}
.plat-desc strong { color: var(--navy); font-weight: 600; }

.plat-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  position: relative;
}
.plat-url {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.plat-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.3s var(--ease);
}
.plat-cta svg { width: 11px; height: 11px; transition: transform 0.3s var(--ease); }

/* Cases */
.case {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.4s var(--ease);
}
.case:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.case-head {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.case-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--accent-soft), #fff);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.case-icon svg { width: 20px; height: 20px; }
.case-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.case h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.case > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}
.case-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.case-stats > div { display: flex; flex-direction: column; gap: 4px; }
.case-stats .big {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.case-stats .lbl {
  font-size: 11px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* =========================================================================
   INVESTIMENTO · MÍDIA PAGA
========================================================================= */
.investimento {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.invest-bg { position: absolute; inset: 0; pointer-events: none; }
.invest-mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 18% 20%, rgba(24, 119, 242, 0.32) 0%, transparent 50%),
    radial-gradient(circle at 82% 75%, rgba(234, 67, 53, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 60% 30%, rgba(0, 201, 167, 0.15) 0%, transparent 50%);
  filter: blur(80px);
  animation: meshFloat 24s ease-in-out infinite;
}
.investimento .container { position: relative; z-index: 2; }
.investimento .h-section { color: #fff; }
.investimento .lead-light {
  color: rgba(255, 255, 255, 0.72);
}
.investimento .lead-light strong { color: #fff; font-weight: 600; }

.media-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.media-cards.stack-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
  .media-cards,
  .media-cards.stack-grid { grid-template-columns: 1fr; }
}

.media-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  text-decoration: none;
  min-height: 280px;
}
.media-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.media-card:hover .media-glow { opacity: 1; transform: scale(1); }
.media-card:hover .media-cta svg { transform: translate(2px, -2px); }

.media-glow {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 70%;
  height: 140%;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  transform: scale(0.85);
  transition: all 0.6s var(--ease);
  pointer-events: none;
}
.media-meta .media-glow { background: radial-gradient(circle, rgba(24, 119, 242, 0.55) 0%, transparent 60%); }
.media-google .media-glow {
  background: radial-gradient(circle, rgba(66, 133, 244, 0.32) 0%, rgba(234, 67, 53, 0.16) 35%, transparent 60%);
}
.media-tiktok .media-glow {
  background: radial-gradient(circle, rgba(254, 44, 85, 0.42) 0%, rgba(37, 244, 238, 0.18) 45%, transparent 65%);
}

.media-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
  position: relative;
}
.media-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.media-mark svg { width: 28px; height: 28px; position: relative; z-index: 2; }
.media-mark-meta {
  background: linear-gradient(135deg, #1877F2 0%, #0866FF 60%, #0042B8 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(24, 119, 242, 0.4);
}
.media-mark-google {
  background: #fff;
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.15);
}
.media-mark-tiktok {
  background: linear-gradient(135deg, #25F4EE 0%, #000 45%, #FE2C55 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(254, 44, 85, 0.35);
}

.media-titles { display: flex; flex-direction: column; gap: 4px; }
.media-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.media-titles h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.05;
}
.media-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.media-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 28px;
  position: relative;
}
.media-desc strong { color: #fff; font-weight: 600; }

.media-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.media-url {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-family: 'SF Mono', 'Consolas', monospace;
}
.media-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.media-cta svg { width: 12px; height: 12px; transition: transform 0.3s var(--ease); }

.invest-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 28px;
  background: rgba(0, 201, 167, 0.08);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: var(--radius-lg);
  position: relative;
}
.invest-note-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 201, 167, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}
.invest-note-icon svg { width: 18px; height: 18px; }
.invest-note p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 6px 0 0;
}
.invest-note p strong { color: var(--accent-2); font-weight: 600; }

@media (max-width: 768px) {
  .media-card { padding: 28px 24px; min-height: auto; }
  .media-head { gap: 14px; margin-bottom: 18px; }
  .media-mark { width: 48px; height: 48px; border-radius: 12px; }
  .media-mark svg { width: 24px; height: 24px; }
  .media-titles h3 { font-size: 24px; }
  .media-desc { font-size: 14px; margin-bottom: 22px; }
  .media-foot { flex-direction: column; align-items: flex-start; gap: 10px; }
  .invest-note { padding: 20px 22px; flex-direction: column; gap: 14px; }
  .invest-note p { font-size: 13.5px; margin-top: 0; }
}

/* =========================================================================
   NÚMEROS — métricas
========================================================================= */
.numeros { background: var(--bg-page); }
.metrics { margin-bottom: 56px; }

.metric {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}
.metric:hover { transform: translateY(-4px); }
.metric-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 18px;
}
.metric-num {
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  display: flex;
  align-items: baseline;
}
.metric-num .prefix {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  margin-right: 4px;
}
.metric-num .suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-left: 4px;
}
.metric-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.metric-accent {
  background: linear-gradient(160deg, var(--accent) 0%, #1F58D6 100%);
  border: 0;
  color: #fff;
  box-shadow: 0 16px 48px rgba(47, 111, 237, 0.25);
}
.metric-accent .metric-lbl { color: rgba(255, 255, 255, 0.75); }
.metric-accent .metric-num,
.metric-accent .metric-num .prefix,
.metric-accent .metric-num .suffix { color: #fff; }
.metric-accent .metric-desc { color: rgba(255, 255, 255, 0.85); }

.metric-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  border: 0;
  color: #fff;
}
.metric-dark .metric-lbl { color: rgba(255, 255, 255, 0.65); }
.metric-dark .metric-num { color: #fff; }
.metric-dark .metric-num .prefix,
.metric-dark .metric-num .suffix { color: var(--accent-2); }
.metric-dark .metric-desc { color: rgba(255, 255, 255, 0.78); }

.metric-projection {
  background: linear-gradient(160deg, #fff 0%, var(--accent-soft) 100%);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .metric-num { font-size: 44px; }
  .metric-num .prefix { font-size: 22px; }
  .metric-num .suffix { font-size: 20px; }
}

/* =========================================================================
   COMPLIANCE
========================================================================= */
.compliance {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.compliance-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
}
.compliance-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}
.compliance-icon svg { width: 26px; height: 26px; }
.compliance-head h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.compliance-head p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 32px 0;
}
@media (max-width: 768px) { .compliance-grid { grid-template-columns: 1fr; } }
.compliance-item {
  padding: 16px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.compliance-item:last-child { border-right: 0; }
@media (max-width: 768px) {
  .compliance-item { border-right: 0; border-bottom: 1px solid var(--border); padding: 22px 32px; }
  .compliance-item:last-child { border-bottom: 0; }
}
.compliance-item .check {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent-2), #00B095);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(0, 201, 167, 0.3);
}
.compliance-item .check svg { width: 14px; height: 14px; }
.compliance-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.compliance-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================================================================
   MANIFESTO
========================================================================= */
.manifesto {
  background: var(--bg-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 160px 0;
}
.manifesto-bg { position: absolute; inset: 0; pointer-events: none; }
.manifesto-mesh {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 30% 50%, rgba(47, 111, 237, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(0, 201, 167, 0.25) 0%, transparent 50%);
  filter: blur(80px);
  animation: meshFloat 18s ease-in-out infinite reverse;
}
.manifesto-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.manifesto-text {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 56px;
}
.manifesto-text strong {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}
.manifesto-text .serif-italic { color: var(--accent-2); }

.manifesto-sign {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sign-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), transparent);
  margin-bottom: 20px;
}
.sign-name {
  font-family: 'Instrument Serif', serif;
  font-size: 26px;
  font-style: italic;
  color: #fff;
  letter-spacing: -0.01em;
}
.sign-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =========================================================================
   MANIFESTO MOBILE
========================================================================= */
@media (max-width: 768px) {
  .manifesto { padding: 96px 0; }
  .manifesto-text { font-size: 24px; line-height: 1.35; margin-bottom: 40px; }
  .sign-name { font-size: 22px; }
}

/* =========================================================================
   CONTATO
========================================================================= */
.contato { background: var(--bg-page); padding: 100px 0 140px; }

.contato-card {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 50%, #1B3565 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 32px 80px rgba(10, 31, 68, 0.3);
}
.contato-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(47, 111, 237, 0.45) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.contato-head { position: relative; z-index: 2; max-width: 760px; margin-bottom: 48px; }
.contato-lead {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  max-width: 600px;
  margin-top: 16px;
}

.contato-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) { .contato-channels { grid-template-columns: 1fr; } }

.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.channel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateY(-2px);
}
.channel:hover .channel-arrow svg { transform: translate(2px, -2px); }
.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  flex-shrink: 0;
}
.channel-icon svg { width: 22px; height: 22px; }
.channel-wpp .channel-icon { background: rgba(0, 201, 167, 0.16); }
.channel-body { flex: 1; min-width: 0; }
.channel-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.channel-val {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.channel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.channel-arrow svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }

.contato-card .br-mobile { display: none; }

@media (max-width: 768px) {
  .contato { padding: 80px 0 100px; }
  .contato-card { padding: 36px 22px; border-radius: 22px; }
  .contato-head { margin-bottom: 32px; }
  .contato-head .h-section { font-size: 28px; line-height: 1.15; }
  .contato-lead { font-size: 14.5px; margin-top: 14px; }
  .contato-card .br-desktop { display: none; }
  .contato-card .br-mobile { display: inline; }

  .channel { padding: 18px 18px; gap: 14px; align-items: flex-start; }
  .channel-icon { width: 42px; height: 42px; border-radius: 11px; }
  .channel-icon svg { width: 19px; height: 19px; }
  .channel-body { min-width: 0; }
  .channel-lbl { font-size: 10.5px; margin-bottom: 3px; }
  .channel-val {
    font-size: 14px;
    white-space: normal;
    word-break: break-word;
    line-height: 1.35;
  }
  .channel-arrow { width: 32px; height: 32px; }
  .channel-arrow svg { width: 12px; height: 12px; }
}

@media (max-width: 380px) {
  .channel-val { font-size: 13px; }
}

/* =========================================================================
   FOOTER
========================================================================= */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 237, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #fff;
}
.footer-mark {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--accent) 100%);
  position: relative;
}
.footer-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 2px;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 40% 35%, 40% 100%, 0 100%);
}
.footer-logo span {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-logo .dot { color: var(--accent-2); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s var(--ease);
}
.footer-col ul li a:hover { color: var(--accent-2); }
.footer-col ul li .muted {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'SF Mono', 'Consolas', monospace;
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}
.footer-bottom .dot-sep { margin: 0 10px; opacity: 0.5; }
@media (max-width: 640px) {
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* =========================================================================
   ANIMAÇÕES — reveal
========================================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-up.in {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
.fade-up.in { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  transition-delay: var(--d, 0ms);
}
.fade-in.in { opacity: 1; }

/* =========================================================================
   REDUCED MOTION
========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-up, .fade-up, .fade-in, .hero-title .word {
    opacity: 1 !important;
    transform: none !important;
  }
}
