/* ═══════════════════════════════════════════════
   LIRYON — Stylesheet v3
   Fontes: locais · GSAP: local · Sem dependências CDN
   ═══════════════════════════════════════════════ */

/* ── @FONT-FACE LOCAL ────────────────────────── */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/bebas-neue-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/dm-sans-300i.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/space-mono-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Space Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/space-mono-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ── 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);
}

/* ── INNER CONTAINER (substituindo Tailwind) ─── */
.inner-container {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

/* ── CUSTOM SCROLLBAR ──────────────────────────── */
::-webkit-scrollbar              { width: 4px; }
::-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;
}

main { display: block; }

.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;
}

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

.splash-logo {
  opacity: 0;
  transform: scale(0.88) translateY(12px);
  margin-bottom: 2rem;
}

.splash-logo-img {
  height: clamp(44px, 10vw, 72px);
  width: auto; max-width: 65vw;
  object-fit: contain; display: block;
}

@media (max-width: 900px) {
  /* Logo 743×222 (3.35:1) — ocupa 70% da largura da tela no celular */
  .splash-logo-img  { width: min(70vw, 280px); height: auto; }
  /* Barra proporcional ao logo */
  .splash-bar-track { width: min(60vw, 240px); }
  /* Espaçamento vertical reduzido para o splash ficar proporcional */
  .splash-logo      { margin-bottom: 1.5rem; }
  .splash-sub       { margin-bottom: 1.75rem; font-size: 0.58rem; letter-spacing: 0.35em; }
}

.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;
}

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

#cursor-dot {
  position: absolute;
  width: 5px; height: 5px;
  background: #ffffff;
  border-radius: 50%;
  top: -2.5px; left: -2.5px;
  mix-blend-mode: difference;
  transition: transform 0.1s var(--ease-out), opacity 0.15s;
}

#cursor-ring {
  position: absolute;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  top: -17px; left: -17px;
  /* transform controlado pelo JS (elastic stretch) */
  transition: width 0.45s var(--ease-out), height 0.45s var(--ease-out),
              top 0.45s var(--ease-out), left 0.45s var(--ease-out),
              border-color 0.3s, background-color 0.3s;
  display: flex; align-items: center; justify-content: center;
  transform-origin: center center;
}

#cursor-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.46rem; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  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;
}

body.cursor-hover #cursor-ring {
  width: 64px; height: 64px;
  top: -32px; left: -32px;
  border-color: rgba(255,255,255,0.5);
  background-color: rgba(255,255,255,0.06);
}
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; text-decoration: none; }
.nav-logo-img {
  height: 36px; width: auto; object-fit: contain; display: block;
}

.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 7rem;
  position: relative; overflow: hidden;
}

.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;
}

.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-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(4.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-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
══════════════════════════════════════════════════ */
.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;
}

.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
══════════════════════════════════════════════════ */
.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);
  animation: cardBreath 6s ease-in-out infinite;
}
.pillar-card:nth-child(2) { animation-delay: 1.8s; }
.pillar-card:nth-child(3) { animation-delay: 3.6s; }
.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
══════════════════════════════════════════════════ */
#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;
  animation: cardBreath 7s ease-in-out infinite;
}
.step-card:nth-child(2) { animation-delay: 2s; }
.step-card:nth-child(3) { animation-delay: 4s; }
.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;
}
.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); }

.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(2.5rem, 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: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo-img { height: 40px; width: auto; object-fit: contain; display: block; }
.footer-tagline { font-size: 0.85rem; line-height: 1.7; 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.75rem; }
.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.2rem;
}
.footer-link {
  font-size: 0.85rem; 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: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.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%); }

/* ══════════════════════════════════════════════════
   CRIATIVO CTA STRIP
══════════════════════════════════════════════════ */
.criativo-strip {
  background: linear-gradient(135deg, rgba(255,222,0,0.06) 0%, rgba(0,30,255,0.04) 100%);
  border-top: 1px solid rgba(255,222,0,0.12);
  border-bottom: 1px solid rgba(255,222,0,0.12);
  padding: 2.25rem 4rem; position: relative; overflow: hidden;
}
.criativo-strip::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0px, transparent 80px, rgba(255,222,0,0.018) 80px, rgba(255,222,0,0.018) 81px);
  pointer-events: none;
}
.criativo-strip-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1; }
.criativo-strip-content { display: flex; flex-direction: column; gap: 0.4rem; }
.criativo-strip-tag {
  font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--yellow); opacity: 0.65;
}
.criativo-strip-text {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  letter-spacing: 0.02em; color: var(--white); line-height: 1.1;
}
.btn-criativo {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-mono); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); background: var(--yellow); text-decoration: none;
  padding: 0.95rem 2rem; border-radius: 3px; white-space: nowrap; flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-criativo:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,222,0,0.28); }
.btn-criativo svg { width: 14px; height: 14px; stroke: var(--black); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Magnetic */
.magnetic { display: inline-flex; }

/* ── KEYFRAMES ─────────────────────────────────── */
@keyframes cardBreath {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,222,0,0); }
  50%     { box-shadow: 0 4px 40px -6px rgba(255,222,0,0.1), 0 0 0 1px rgba(255,222,0,0.07); }
}
@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 ─ */
@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; }
  .criativo-strip { padding: 2.25rem 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: 1rem 1.25rem; }
  .nav-logo-img       { height: 28px; }
  section             { padding: 4rem 1.25rem; }
  #hero               { padding: 6.5rem 1.25rem 4rem; min-height: 100svh; }
  #cta                { padding: 4rem 1.25rem; }
  footer              { padding: 0 1.25rem; }
  .criativo-strip     { padding: 1.75rem 1.25rem; }

  /* Esconde scroll hint — não sobrepõe a descrição */
  .hero-scroll        { display: none; }
  .hero-headline      { font-size: clamp(3.5rem, 14vw, 5.5rem); margin-bottom: 2rem; }
  .hero-desc          { max-width: 100%; font-size: 0.95rem; }
  .hero-sub-row       { flex-direction: column; gap: 1.5rem; }
  .hero-shape         { display: none; }

  /* Manifesto */
  .manifesto-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-big-text { font-size: clamp(2.8rem, 12vw, 4.5rem); }

  /* Números */
  .numeros-inner      { flex-direction: column; }
  .numero-divider     { width: auto; height: 1px; margin: 0 2rem; }
  #numeros            { padding: 0; }
  .numero-item        { padding: 2.5rem 1.25rem; }

  /* Método */
  .steps-grid         { grid-template-columns: 1fr; gap: 1rem; }
  .metodo-header      { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem; }
  .step-card          { padding: 1.75rem 1.5rem; }

  /* Serviços */
  .servicos-inner     { grid-template-columns: 1fr; gap: 2rem; }
  .servicos-header    { position: static; }

  /* CTA */
  .cta-card           { padding: 2.5rem 1.25rem; }
  .cta-headline       { font-size: clamp(2rem, 9vw, 3rem); }
  .cta-desc           { font-size: 0.9rem; }

  /* Cursor off */
  #cursor             { display: none; }
  body                { cursor: auto; }

  /* Footer compacto */
  .footer-top         { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 0 2rem; }
  .footer-nav         { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-logo-img    { height: 32px; }
  .footer-tagline     { font-size: 0.8rem; }
  .footer-bottom      { padding: 1.25rem 0; }
  footer::before      { font-size: 32vw; }

  /* Criativo strip */
  .criativo-strip-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}

@media (max-width: 600px) {
  section             { padding: 3.5rem 1rem; }
  #hero               { padding: 6rem 1rem 3.5rem; }
  #navbar             { padding: 0.85rem 1rem; }
  .nav-logo-img       { height: 24px; }
  .criativo-strip     { padding: 1.5rem 1rem; }
  footer              { padding: 0 1rem; }
  .servico-tag        { display: none; }
  .cta-card           { border-radius: 12px; padding: 2rem 1rem; }
  /* Footer: mantém 2 colunas no rodapé para não empilhar tudo */
  .footer-nav         { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .footer-col         { gap: 0.5rem; }
  .footer-top         { padding: 1.75rem 0 1.25rem; gap: 1.5rem; }
  .footer-link        { font-size: 0.78rem; }
  .footer-bottom      { padding: 1rem 0; flex-direction: column; gap: 0.3rem; }
}

/* ─ Reduzir movimento ─ */
@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; }
}
