/* ═══════════════════════════════════════════════
   LIRYON — Custom Stylesheet v2
   Palette: #FFDE00 · #001EFF · #000
   ═══════════════════════════════════════════════ */

/* ── VARIABLES ─────────────────────────────────── */
:root {
  --yellow:      #FFDE00;
  --yellow-dim:  rgba(255,222,0,0.10);
  --yellow-glow: rgba(255,222,0,0.32);
  --blue:        #001EFF;
  --black:       #000000;
  --black-soft:  #080808;
  --white:       #ffffff;
  --white-muted: rgba(255,255,255,0.62);
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --font-mono:   'Space Mono', monospace;
  --ease-out:    cubic-bezier(0.23,1,0.32,1);
}

/* ── CUSTOM SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar              { width: 5px; }
::-webkit-scrollbar-track        { background: #050505; }
::-webkit-scrollbar-thumb        { background: var(--yellow); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover  { background: #e6c800; }
* { scrollbar-width: thin; scrollbar-color: var(--yellow) #050505; }

/* ── RESET ─────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.text-yellow { color: var(--yellow); }

/* ── NOISE OVERLAY ─────────────────────────────── */
body::after {
  content:'';
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:0.028; pointer-events:none; z-index:1000;
}

/* ══════════════════════════════════════════════════
   SPLASH SCREEN
══════════════════════════════════════════════════ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.splash-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.splash-logo {
  opacity: 0;
  transform: scale(0.82) translateY(8px);
  margin-bottom: 1.4rem;
}

.splash-wordmark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 4.5rem);
  letter-spacing: 0.12em;
  display: flex;
  align-items: baseline;
  margin-bottom: 0.5rem;
}

.splash-wordmark span {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  color: var(--white);
}

.sw-yellow { color: var(--yellow) !important; }
.sw-dot    { color: var(--yellow) !important; opacity: 0; transform: translateY(18px); }

.splash-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  opacity: 0;
  margin-bottom: 2.5rem;
}

.splash-bar-track {
  width: 100px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  opacity: 0;
  border-radius: 1px;
}

.splash-bar {
  height: 100%;
  width: 0%;
  background: var(--yellow);
  border-radius: 1px;
}

/* ══════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════ */
#cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

#cursor-dot {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  top: -3px; left: -3px;
  transition: transform 0.15s var(--ease-out), opacity 0.2s;
}

#cursor-ring {
  position: absolute;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,222,0,0.45);
  border-radius: 50%;
  top: -20px; left: -20px;
  transition:
    width 0.35s var(--ease-out),
    height 0.35s var(--ease-out),
    top 0.35s var(--ease-out),
    left 0.35s var(--ease-out),
    border-color 0.3s,
    background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#cursor-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: var(--black);
  white-space: nowrap;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
  z-index: 1;
  font-weight: 700;
}

/* Hover state */
body.cursor-hover #cursor-ring {
  width: 72px; height: 72px;
  top: -36px; left: -36px;
  border-color: var(--yellow);
  background-color: var(--yellow);
}
body.cursor-hover #cursor-dot   { transform: scale(0); opacity: 0; }
body.cursor-hover #cursor-label { opacity: 1; }

/* ── NAVIGATION ────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,222,0,0.07);
  transition: background 0.4s, border-color 0.4s;
}
#navbar.scrolled { background: rgba(0,0,0,0.92); border-color: rgba(255,222,0,0.13); }

.nav-logo {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none;
}
.nav-logo-text {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
}
.nav-logo-text em { font-style: normal; color: var(--yellow); }
.nav-badge {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  text-decoration: none;
  border: 1px solid rgba(255,222,0,0.35);
  padding: 0.65rem 1.5rem;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s;
}
.nav-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--yellow);
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease-out);
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover         { color: var(--black); }
.nav-cta > span        { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Line grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,222,0,0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,0,0.042) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 100%);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  will-change: transform;
}
.orb-yellow {
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(255,222,0,0.15) 0%, transparent 70%);
  top: -200px; right: -120px;
}
.orb-blue {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(0,30,255,0.17) 0%, transparent 70%);
  bottom: 20px; left: -120px;
}

/* Floating shapes */
.hero-shape { position: absolute; pointer-events: none; }

.shape-square-outline {
  width: 110px; height: 110px;
  border: 1px solid rgba(255,222,0,0.18);
  right: 14%; top: 18%;
  animation: floatA 9s ease-in-out infinite;
}
.shape-square-filled {
  width: 52px; height: 52px;
  background: rgba(0,30,255,0.14);
  border: 1px solid rgba(0,30,255,0.3);
  right: 24%; bottom: 28%;
  animation: floatB 7s ease-in-out infinite;
}
.shape-dot-a {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  right: 7%; top: 42%;
  opacity: 0.55;
  animation: blink 3.5s ease-in-out infinite;
}
.shape-line-h {
  width: 180px; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,222,0,0.28), transparent);
  right: 4%; top: 58%;
  animation: floatA 11s ease-in-out infinite;
}
.shape-cross {
  width: 20px; height: 20px;
  right: 30%; top: 22%;
  opacity: 0.35;
  animation: floatB 6s ease-in-out infinite;
}
.shape-cross span {
  display: block;
  position: absolute;
  background: var(--yellow);
}
.shape-cross span:first-child {
  width: 100%; height: 1px;
  top: 50%; transform: translateY(-50%);
}
.shape-cross span:last-child {
  width: 1px; height: 100%;
  left: 50%; transform: translateX(-50%);
}

/* Hero content */
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 2.5rem; height: 1px;
  background: var(--yellow);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 13rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
}
.hero-headline .line        { display: block; overflow: hidden; }
.hero-headline .line span   { display: block; transform: translateY(110%); will-change: transform; }
.hero-headline em           { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px rgba(255,222,0,0.6); }

.hero-sub-row {
  display: flex; align-items: flex-end; gap: 4rem; flex-wrap: wrap;
}
.hero-desc {
  max-width: 420px;
  font-size: 1.05rem; line-height: 1.75;
  color: var(--white-muted); font-weight: 300;
  opacity: 0; will-change: transform, opacity;
}
.hero-cta-wrap {
  display: flex; flex-direction: column; gap: 0.75rem;
  opacity: 0; will-change: transform, opacity;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.2rem;
  border-radius: 3px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(255,222,0,0.32);
}

.hero-note {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.26);
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0;
}
.hero-scroll span {
  font-family: var(--font-mono);
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.22);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,222,0,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── MARQUEE ───────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(255,222,0,0.09);
  border-bottom: 1px solid rgba(255,222,0,0.09);
  padding: 1.1rem 0;
  background: rgba(255,222,0,0.02);
}
.marquee-track {
  display: flex; gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 0.15em;
  color: rgba(255,222,0,0.38);
  white-space: nowrap;
  display: flex; align-items: center; gap: 3rem;
}
.marquee-item::after {
  content: '✦';
  color: rgba(255,222,0,0.18);
  font-size: 0.65rem;
}

/* ── SECTION COMMONS ───────────────────────────── */
section { padding: 7rem 4rem; position: relative; }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--yellow);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; opacity: 0;
}
.section-tag::before {
  content: '';
  display: block; width: 1.5rem; height: 1px;
  background: var(--yellow); flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9; margin-bottom: 1.5rem; opacity: 0;
}

/* ══════════════════════════════════════════════════
   SECTION GLOW (mouse-tracked ambient)
══════════════════════════════════════════════════ */
.glow-section {
  --gx: 50%; --gy: 50%; --g-op: 0;
}
.section-glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle 600px at var(--gx) var(--gy),
    rgba(255,222,0,0.04), transparent 70%);
  opacity: var(--g-op);
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 0;
}

/* ══════════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════════ */
#manifesto { background: var(--black-soft); overflow: hidden; }

.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,222,0,0.1) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  -webkit-mask-image: radial-gradient(ellipse 55% 75% at 5% 50%, black 15%, transparent 80%);
  mask-image: radial-gradient(ellipse 55% 75% at 5% 50%, black 15%, transparent 80%);
  pointer-events: none; opacity: 0.55;
  animation: dotDrift 22s linear infinite;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  position: relative; z-index: 1;
}

/* Clip-path line reveal */
.manifesto-big-text {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  line-height: 0.88;
  margin-bottom: 2rem;
}
.mbt-line { display: block; overflow: hidden; }
.mbt-line .cl {
  display: inline-block;
  clip-path: inset(0 100% 0 0);
}
.manifesto-big-text .accent  { color: var(--yellow); }
.manifesto-big-text .outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,222,0,0.42);
}

.manifesto-body {
  font-size: 1rem; line-height: 1.85;
  color: var(--white-muted); font-weight: 300;
  max-width: 480px;
}
.manifesto-body strong { color: rgba(255,255,255,0.9); }

.manifesto-right {
  display: flex; flex-direction: column; gap: 1.25rem;
}

/* ══════════════════════════════════════════════════
   SPOTLIGHT CARD (shared)
══════════════════════════════════════════════════ */
.spotlight-card {
  --sx: 50%; --sy: 50%; --s-op: 0;
  position: relative; overflow: hidden;
}
.spotlight-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--sx) var(--sy),
    rgba(255,222,0,0.13), transparent 55%);
  opacity: var(--s-op);
  transition: opacity 0.35s;
  pointer-events: none;
  z-index: 0;
}

/* ── PILLAR CARDS ──────────────────────────────── */
.pillar-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s, transform 0.35s var(--ease-out);
}
.pillar-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--yellow);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
.pillar-card:hover              { border-color: rgba(255,222,0,0.22); transform: translateX(7px); }
.pillar-card:hover::before      { opacity: 1; }

.pillar-num {
  font-family: var(--font-mono);
  font-size: 0.57rem; letter-spacing: 0.22em;
  color: rgba(255,222,0,0.38);
  margin-bottom: 0.5rem; position: relative; z-index: 1;
}
.pillar-name {
  font-family: var(--font-display);
  font-size: 1.4rem; letter-spacing: 0.05em;
  margin-bottom: 0.4rem; color: var(--white);
  position: relative; z-index: 1;
}
.pillar-desc {
  font-size: 0.87rem; color: rgba(255,255,255,0.4);
  line-height: 1.65; font-weight: 300;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════
   NÚMEROS (prova social)
══════════════════════════════════════════════════ */
#numeros {
  background: var(--black);
  padding: 0;
  border-top: 1px solid rgba(255,222,0,0.08);
  border-bottom: 1px solid rgba(255,222,0,0.08);
  position: relative;
  overflow: hidden;
}

#numeros::after {
  content: '';
  position: absolute;
  top: 0; left: -60%;
  width: 50%; height: 100%;
  background: linear-gradient(to right,
    transparent,
    rgba(255,222,0,0.04) 50%,
    transparent);
  animation: scanLine 7s ease-in-out infinite;
  pointer-events: none; z-index: 2;
}

.numeros-inner {
  display: flex;
  align-items: stretch;
}

.numero-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  opacity: 0;
  transition: background 0.4s;
}
.numero-item:hover { background: rgba(255,222,0,0.02); }

.numero-display {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 1;
  color: var(--yellow);
  display: flex;
  align-items: baseline;
  gap: 0.1em;
  margin-bottom: 0.75rem;
}

.numero-suffix {
  font-size: 0.55em;
  color: rgba(255,222,0,0.65);
}

.numero-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.numero-divider {
  width: 1px;
  background: rgba(255,222,0,0.1);
  align-self: stretch;
  margin: 2rem 0;
}

/* ══════════════════════════════════════════════════
   MÉTODO
══════════════════════════════════════════════════ */
#metodo { background: var(--black); overflow: hidden; }

#metodo::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,222,0,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,222,0,0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 28s linear infinite;
  pointer-events: none; z-index: 0;
}

.metodo-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative; z-index: 1;
}
.metodo-intro {
  max-width: 420px; font-size: 1rem; line-height: 1.75;
  color: var(--white-muted); font-weight: 300;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative; z-index: 1;
}

.step-card {
  background: linear-gradient(145deg, rgba(255,222,0,0.04) 0%, transparent 60%);
  border: 1px solid rgba(255,222,0,0.09);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.4s, transform 0.3s var(--ease-out);
  opacity: 0;
}
.step-card:hover { border-color: rgba(255,222,0,0.28); transform: translateY(-5px); }

.step-number {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: rgba(255,222,0,0.055);
  position: absolute; top: 1rem; right: 1.25rem;
  pointer-events: none;
}
.step-icon {
  width: 44px; height: 44px;
  background: rgba(255,222,0,0.08);
  border: 1px solid rgba(255,222,0,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.step-icon svg {
  width: 22px; height: 22px;
  stroke: var(--yellow); fill: none; stroke-width: 1.5;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.8rem; letter-spacing: 0.03em;
  margin-bottom: 1rem; color: var(--white);
  position: relative; z-index: 1;
}
.step-body {
  font-size: 0.9rem; line-height: 1.75;
  color: rgba(255,255,255,0.46); font-weight: 300;
  position: relative; z-index: 1;
}
.step-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.57rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,222,0,0.07);
  border: 1px solid rgba(255,222,0,0.14);
  border-radius: 2px; padding: 0.25rem 0.6rem;
  margin-top: 1.5rem;
  position: relative; z-index: 1;
}

/* ══════════════════════════════════════════════════
   SERVIÇOS
══════════════════════════════════════════════════ */
#servicos { background: #060606; }

#servicos::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0px,
    transparent 20px,
    rgba(255,222,0,0.016) 20px,
    rgba(255,222,0,0.016) 21px
  );
  animation: diagMove 50s linear infinite;
  pointer-events: none; z-index: 0;
}

/* Split: header sticky esq. | lista dir. */
.servicos-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 7rem;
  align-items: start;
  position: relative; z-index: 1;
}

.servicos-header {
  position: sticky;
  top: 100px;
}

.servicos-intro {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--white-muted); font-weight: 300;
  margin-top: 1.25rem; margin-bottom: 2.5rem;
  max-width: 320px;
}

.servicos-cta-link {
  font-family: var(--font-mono);
  font-size: 0.63rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--yellow); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.6rem;
  opacity: 0.6;
  transition: opacity 0.25s, gap 0.25s;
}
.servicos-cta-link:hover { opacity: 1; gap: 0.9rem; }
.servicos-cta-link svg   { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.servicos-list { display: flex; flex-direction: column; list-style: none; }

.servico-row {
  display: flex; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.055);
  padding: 1.75rem 0; gap: 1.75rem;
  transition: padding-left 0.4s var(--ease-out);
  position: relative; overflow: hidden;
  opacity: 0;
}
.servico-row::before {
  content: '';
  position: absolute; left: -2rem; top: 0; bottom: 0;
  width: 0;
  background: rgba(255,222,0,0.03);
  transition: width 0.5s var(--ease-out);
  z-index: 0;
}
.servico-row:hover::before { width: calc(100% + 4rem); }
.servico-row:hover          { padding-left: 1.25rem; }
.servico-row:last-child     { border-bottom: 1px solid rgba(255,255,255,0.055); }

/* Shimmer sweep on border */
.row-shimmer {
  position: absolute;
  top: -1px; left: 0;
  height: 1px; width: 100%;
  background: linear-gradient(to right, transparent, rgba(255,222,0,0.6), transparent);
  transform: translateX(-105%);
  pointer-events: none;
  z-index: 2;
}

.servico-num {
  font-family: var(--font-mono);
  font-size: 0.68rem; color: rgba(255,222,0,0.28);
  letter-spacing: 0.1em; min-width: 2.5rem;
  position: relative; z-index: 1; flex-shrink: 0;
}

.servico-info {
  flex: 1;
  display: flex; flex-direction: column; gap: 0.3rem;
  position: relative; z-index: 1;
}
.servico-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.servico-desc {
  font-size: 0.82rem; line-height: 1.55;
  color: rgba(255,255,255,0.28); font-weight: 300;
  transition: color 0.3s;
}
.servico-row:hover .servico-name { color: var(--yellow); }
.servico-row:hover .servico-desc { color: rgba(255,255,255,0.5); }

.servico-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.22); text-transform: uppercase;
  position: relative; z-index: 1; flex-shrink: 0;
}
.servico-arrow {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,222,0,0.17);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease-out);
  position: relative; z-index: 1; flex-shrink: 0;
}
.servico-row:hover .servico-arrow {
  background: var(--yellow); border-color: var(--yellow);
  transform: rotate(45deg);
}
.servico-arrow svg {
  width: 16px; height: 16px;
  stroke: var(--yellow); fill: none; stroke-width: 2;
  transition: stroke 0.3s;
}
.servico-row:hover .servico-arrow svg { stroke: var(--black); }

/* ══════════════════════════════════════════════════
   CTA GLASS
══════════════════════════════════════════════════ */
#cta { padding: 6rem 4rem; position: relative; overflow: hidden; }

.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255,222,0,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0,30,255,0.09) 0%, transparent 50%);
}

.cta-card {
  max-width: 880px; margin: 0 auto;
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,222,0,0.17);
  border-radius: 20px;
  padding: 5rem 4rem; text-align: center;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  opacity: 0;
}
.cta-card::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 50%; height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,222,0,0.45), transparent);
  z-index: 1;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.9; margin-bottom: 1.5rem;
  position: relative; z-index: 1;
}
.cta-headline em { font-style: normal; color: var(--yellow); }
.cta-desc {
  font-size: 1rem; color: rgba(255,255,255,0.46);
  line-height: 1.7; font-weight: 300;
  max-width: 480px; margin: 0 auto 3rem;
  position: relative; z-index: 1;
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: #25D366; color: #000;
  font-family: var(--font-mono);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.5rem;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; z-index: 1;
}
.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 55px rgba(37,211,102,0.28);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: #000; flex-shrink: 0; }

/* ── FOOTER ────────────────────────────────────── */
footer {
  position: relative; overflow: hidden;
  padding: 0 4rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer::before {
  content: 'LIRYON';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18vw;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,222,0,0.035);
  bottom: -0.08em; left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.05em;
  pointer-events: none;
  white-space: nowrap;
  z-index: 0; line-height: 1;
}

.footer-inner { position: relative; z-index: 1; }

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
  display: flex; flex-direction: column; gap: 1.25rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2rem; letter-spacing: 0.04em;
  color: var(--white);
}
.footer-logo span { color: var(--yellow); }

.footer-tagline {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(255,255,255,0.32); font-weight: 300;
}

.footer-wa {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32); text-decoration: none;
  transition: color 0.2s; width: fit-content;
}
.footer-wa:hover { color: #25D366; }
.footer-wa svg   { width: 15px; height: 15px; flex-shrink: 0; }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.footer-col {
  display: flex; flex-direction: column; gap: 0.85rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.57rem; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,222,0,0.45);
  margin-bottom: 0.25rem;
}

.footer-link {
  font-size: 0.88rem; color: rgba(255,255,255,0.3);
  text-decoration: none; font-weight: 300;
  transition: color 0.2s; width: fit-content;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 2rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.75rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.57rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.17);
}

.footer-made {
  font-family: var(--font-mono);
  font-size: 0.57rem; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.12);
}

/* ══════════════════════════════════════════════════
   CTA AURORA ORBS
══════════════════════════════════════════════════ */
.cta-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}
.cta-aurora-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,222,0,0.11) 0%, transparent 70%);
  top: -180px; left: -160px;
}
.cta-aurora-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,30,255,0.13) 0%, transparent 70%);
  bottom: -140px; right: -100px;
}
.cta-aurora-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,120,0,0.08) 0%, transparent 70%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
}

/* ── KEYFRAMES ─────────────────────────────────── */
@keyframes scrollPulse {
  0%,100% { opacity:0.3;  transform:scaleY(1);   }
  50%     { opacity:1;    transform:scaleY(1.3); }
}
@keyframes marquee {
  from { transform:translateX(0); }
  to   { transform:translateX(-50%); }
}
@keyframes dotDrift {
  from { background-position: 0 0; }
  to   { background-position: 36px 36px; }
}
@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 48px 48px; }
}
@keyframes diagMove {
  from { transform: translate(0, 0); }
  to   { transform: translate(21px, 21px); }
}
@keyframes scanLine {
  0%   { left: -60%; }
  100% { left: 110%; }
}
@keyframes floatA {
  0%,100% { transform:translateY(0)     rotate(0deg);  }
  50%     { transform:translateY(-18px) rotate(6deg);  }
}
@keyframes floatB {
  0%,100% { transform:translateY(0)    rotate(45deg); }
  50%     { transform:translateY(14px) rotate(55deg); }
}
@keyframes blink {
  0%,100% { opacity:0.55; transform:scale(1);   }
  50%     { opacity:1;    transform:scale(1.6); }
}

/* ── RESPONSIVE ────────────────────────────────── */

/* ─ Laptop pequeno / tablet paisagem ─ */
@media (max-width: 1200px) {
  #navbar             { padding:1.4rem 2.5rem; }
  section             { padding:6rem 2.5rem; }
  #hero               { padding:8rem 2.5rem 5rem; }
  #cta                { padding:5rem 2.5rem; }
  footer              { padding:0 2.5rem; }
  .manifesto-grid     { gap:3.5rem; }
  .steps-grid         { grid-template-columns:repeat(2,1fr); }
  .servicos-inner     { grid-template-columns:280px 1fr; gap:4rem; }
  .footer-top         { gap:4rem; }
  .cta-card           { padding:4rem 3rem; }
}

/* ─ Tablet / mobile ─ */
@media (max-width: 900px) {
  #navbar             { padding:1.2rem 1.5rem; }
  section             { padding:5rem 1.5rem; }
  #hero               { padding:7rem 1.5rem 4rem; }
  #cta                { padding:5rem 1.5rem; }
  .manifesto-grid     { grid-template-columns:1fr; gap:3rem; }
  .steps-grid         { grid-template-columns:1fr; }
  .metodo-header      { flex-direction:column; align-items:flex-start; }
  .cta-card           { padding:3rem 1.5rem; }
  .hero-sub-row       { flex-direction:column; gap:2rem; }
  .hero-shape         { display:none; }
  #cursor             { display:none; }
  body                { cursor:auto; }
  .numeros-inner      { flex-direction:column; }
  .numero-divider     { width:auto; height:1px; margin:0 2rem; }
  #numeros            { padding:0; }
  /* Serviços: empilhar */
  .servicos-inner     { grid-template-columns:1fr; gap:2.5rem; }
  .servicos-header    { position:static; }
  /* Footer: empilhar */
  footer              { padding:0 1.5rem; }
  .footer-top         { grid-template-columns:1fr; gap:3rem; padding-top:3.5rem; }
  .footer-nav         { grid-template-columns:repeat(2,1fr); }
}

@media (max-width: 600px) {
  .servico-tag        { display:none; }
  .cta-card           { border-radius:12px; }
  .footer-nav         { grid-template-columns:1fr; }
}

/* ─ Reduzir movimento (acessibilidade) ─ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.1s !important;
  }
  .marquee-track { animation: none; }
}
