/* ═══════════════════════════════════════════════════════════
   LIMIAR AETHER — main.css
   Design System: Dark Space · Mint · Electric Blue · Purple
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --void:    #090E1A;
  --deep:    #0B1120;
  --space:   #0F0620;
  --abyss:   #060B14;
  --surface: rgba(255,255,255,.04);
  --glass-bg:rgba(255,255,255,.055);
  --glass-sm-bg:rgba(255,255,255,.035);
  --border:  rgba(255,255,255,.08);
  --border-hover:rgba(255,255,255,.18);
  --mint:    #00F2A8;
  --mint2:   #00C98A;
  --blue:    #1A6BFF;
  --purple:  #8B31E0;
  --white:   #F0F4FF;
  --muted:   rgba(240,244,255,.5);
  --muted2:  rgba(240,244,255,.35);
  --font:    'Red Hat Display', system-ui, sans-serif;
  --ease:    cubic-bezier(.16,1,.3,1);
  --ease-in: cubic-bezier(.4,0,1,1);
  --nav-h:   72px;
  --dock-h:  72px;
  --radius:  20px;
  --radius-sm:12px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--void);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font-family: var(--font); border: none; outline: none; background: none; cursor: none; }
ul { list-style: none; }
canvas { display: block; }
::selection { background: rgba(0,242,168,.15); color: var(--mint); }

/* Cursor pointer on touch */
@media (hover: none) { body, button, a { cursor: auto !important; } }

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 9000;
  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='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .022; mix-blend-mode: overlay;
}

/* ── CURSOR ── */
#limiar-cursor-dot, #limiar-cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; transform: translate(-50%,-50%); z-index: 9999;
}
#limiar-cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  transition: width .3s var(--ease), height .3s var(--ease);
}
#limiar-cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(0,242,168,.45);
  transition: width .4s var(--ease), height .4s var(--ease), border-color .3s;
}
body.cursor-hover #limiar-cursor-dot  { width: 14px; height: 14px; }
body.cursor-hover #limiar-cursor-ring { width: 56px; height: 56px; border-color: var(--mint); }
@media (hover: none) { #limiar-cursor-dot, #limiar-cursor-ring { display: none; } }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--blue));
  z-index: 10000; transform-origin: left; transform: scaleX(0);
}

/* ── LAYOUT ── */
.container { width: min(1240px, 100% - 48px); margin-inline: auto; }
.section    { padding-block: clamp(72px, 9vw, 120px); }
.section-divider { border: none; height: 1px; background: var(--border); margin: 0; }
@media (max-width: 768px) {
  .container { width: calc(100% - 36px); }
}

/* ── GLASSMORPHISM ── */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius);
}
.glass-sm {
  background: var(--glass-sm-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -.03em; font-weight: 900; }
h1 { font-size: clamp(36px, 6.5vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
p  { line-height: 1.7; color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted2);
  margin-bottom: 16px;
}
.eyebrow svg { flex-shrink: 0; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px;
}
.section-head > div { max-width: 600px; }
.section-head .eyebrow { display: block; margin-bottom: 10px; }
.section-head h2 { margin: 0; }
.section-head > p { max-width: 380px; font-size: 16px; color: var(--muted); }
@media (max-width: 768px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head > p { max-width: 100%; }
}

/* gradient text */
.gradient-tech {
  background: linear-gradient(120deg, var(--mint), var(--blue));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-tech--cyan   { color: var(--mint); }
.gradient-tech--violet { color: var(--purple); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 14px; font-weight: 700; letter-spacing: -.01em;
  transition: all .35s var(--ease); position: relative;
  overflow: hidden; cursor: none; white-space: nowrap;
}
.btn--primary {
  background: var(--mint); color: var(--void);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,242,168,.35);
}
.btn--outline {
  background: var(--glass-bg); color: var(--white);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn--outline:hover {
  border-color: var(--border-hover);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn--small { padding: 10px 20px; font-size: 13px; }
.btn svg { flex-shrink: 0; }
@media (hover: none) { .btn { cursor: pointer; } }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal-order="2"] { transition-delay: .1s; }
.reveal[data-reveal-order="3"] { transition-delay: .2s; }
.reveal[data-reveal-order="4"] { transition-delay: .3s; }
.reveal[data-reveal-order="5"] { transition-delay: .4s; }
.reveal[data-reveal-order="6"] { transition-delay: .5s; }

/* ══════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 800;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
}
.site-header.scrolled .nav-shell {
  background: rgba(9,14,26,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
}

.nav-shell {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid transparent;
  background: transparent;
  backdrop-filter: none;
  transition: background .4s, border-color .4s;
}

/* topline */
.topline {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 12px; color: var(--muted2);
}
.brand img { height: 36px; width: auto; }
.brand-mobile { display: none; }
.top-icons {
  display: flex; align-items: center; gap: 16px;
}
.top-icons a { transition: color .25s; }
.top-icons a:hover { color: var(--mint); }

/* nav main */
.nav-main {
  display: flex; align-items: center; justify-content: space-between;
  height: 56px; padding: 0 24px; gap: 20px;
}
.site-nav {
  display: flex; gap: 2px;
}
.site-nav li a {
  padding: 7px 13px;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.site-nav li a:hover,
.site-nav li a.active {
  color: var(--white); background: rgba(255,255,255,.08);
}
.site-nav li a.active { color: var(--mint); }

.nav-actions {
  display: flex; align-items: center; gap: 10px;
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center;
  gap: 5px; width: 42px; height: 42px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border); border-radius: 10px;
  padding: 0 11px; cursor: pointer;
  transition: background .25s;
}
.nav-toggle span {
  display: block; height: 1.5px;
  background: var(--white);
  transition: transform .35s var(--ease), opacity .35s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; background: var(--deep); z-index: 790;
  display: flex; flex-direction: column; padding: 88px 32px 100px;
  transform: translateX(100%); transition: transform .5s var(--ease);
}
.nav-drawer.open { transform: none; }
.nav-drawer a {
  font-size: 34px; font-weight: 900; letter-spacing: -.03em;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  color: var(--muted); transition: color .25s, padding .25s;
}
.nav-drawer a:hover { color: var(--mint); padding-left: 6px; }
.nav-drawer .drawer-cta {
  margin-top: 28px; display: flex; flex-direction: column; gap: 12px;
}
.nav-drawer .btn { justify-content: center; font-size: 16px; padding: 16px; }

@media (max-width: 900px) {
  .site-nav, .topline .top-icons > span { display: none; }
  .quick-icon { display: none; }
  .nav-toggle { display: flex; }
  .brand-mobile { display: flex; }
  .topline .brand { display: none; }
}
@media (max-width: 768px) {
  body { padding-bottom: var(--dock-h); }
  .topline { display: none; }
  .nav-main { padding: 0 16px; height: 60px; }
}

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-h) + 16px);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 56px; align-items: center;
  padding-block: 60px;
}

/* Hero copy */
.hero-copy {
  display: flex; flex-direction: column; padding: 48px;
}
.hero-copy .eyebrow { margin-bottom: 20px; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-pain {
  font-size: clamp(17px, 1.6vw, 20px); font-weight: 700;
  color: var(--white); line-height: 1.45; margin-bottom: 12px;
}
.hero-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--muted); line-height: 1.7; margin-bottom: 32px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px;
}

/* Metrics */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--radius-sm);
  overflow: hidden;
}
.metric-card {
  padding: 18px 16px; text-align: center;
  background: var(--surface); border-radius: 0;
  transition: background .3s;
}
.metric-card:hover { background: rgba(0,242,168,.05); }
.metric-card strong {
  display: block; font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900; letter-spacing: -.04em;
  color: var(--mint); line-height: 1;
}
.metric-card span {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--muted2); letter-spacing: .05em;
  text-transform: uppercase; margin-top: 5px;
}

/* Hero visual */
.hero-visual {
  position: relative; height: 520px;
  display: flex; align-items: center; justify-content: center;
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-glow--a {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,242,168,.14), transparent 70%);
  top: -10%; right: -10%;
  animation: glow-float 8s ease-in-out infinite;
}
.hero-glow--b {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,107,255,.12), transparent 70%);
  bottom: 0; left: 10%;
  animation: glow-float 6s ease-in-out infinite reverse;
}
@keyframes glow-float {
  0%,100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(12px,-18px) scale(1.05); }
}

.hero-art {
  position: relative; z-index: 2;
  width: 280px; height: 280px;
  display: flex; align-items: center; justify-content: center;
}
.hero-art img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(0,242,168,.4)) drop-shadow(0 0 80px rgba(26,107,255,.25));
  animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
  0%,100% { filter: drop-shadow(0 0 40px rgba(0,242,168,.4)) drop-shadow(0 0 80px rgba(26,107,255,.25)); }
  50%      { filter: drop-shadow(0 0 70px rgba(0,242,168,.65)) drop-shadow(0 0 130px rgba(26,107,255,.4)); }
}

.hero-timeline {
  position: absolute; right: -16px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px 16px; z-index: 3; min-width: 120px;
}
.hero-timeline span {
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted2);
  transition: color .3s;
}
.hero-timeline span.active { color: var(--mint); }

.phone-preview {
  position: absolute; bottom: 20px; left: -20px; z-index: 3;
  width: 120px; overflow: hidden;
  animation: float-phone 5s ease-in-out infinite;
}
.phone-preview img { width: 100%; border-radius: var(--radius-sm); }
@keyframes float-phone {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Orbital rings when no 3D image */
.vis-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.ring {
  position: absolute; border-radius: 50%; border: 1px solid;
  animation: spin 20s linear infinite;
}
.ring:nth-child(1) { width: 340px; height: 340px; border-color: rgba(0,242,168,.12); animation-duration: 22s; }
.ring:nth-child(2) { width: 250px; height: 250px; border-color: rgba(26,107,255,.14); animation-direction: reverse; animation-duration: 16s; }
.ring:nth-child(3) { width: 170px; height: 170px; border-color: rgba(139,49,224,.12); animation-duration: 12s; }
@keyframes spin { to { transform: rotate(360deg); } }
.ring::before {
  content: ''; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint); box-shadow: 0 0 12px var(--mint);
}
.ring:nth-child(2)::before { background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.ring:nth-child(3)::before { background: var(--purple); box-shadow: 0 0 12px var(--purple); }

.vis-letter {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 180px; font-weight: 900; letter-spacing: -.05em; z-index: 2;
  background: linear-gradient(145deg, var(--mint) 0%, var(--blue) 45%, var(--purple) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: breathe 4s ease-in-out infinite;
}

@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
}
@media (max-width: 768px) {
  .hero-copy { padding: 28px; }
  .hero-actions { flex-direction: column; }
  .hero-visual { display: none; }
  .metrics { grid-template-columns: repeat(2,1fr); }
}

/* ══════════════════════════════════════════════════
   PARTNER STRIP
══════════════════════════════════════════════════ */
.partner-strip { padding-block: 28px 32px; }
.partner-bar {
  display: flex; align-items: center; gap: 32px;
  padding: 18px 28px; flex-wrap: wrap;
  justify-content: center;
}
.partner-bar strong {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted2); white-space: nowrap;
}
.partner-bar span {
  font-size: 13px; font-weight: 600; color: rgba(240,244,255,.25);
  transition: color .3s; white-space: nowrap;
}
.partner-bar span:hover { color: rgba(240,244,255,.55); }

/* ══════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════ */
.services {
  background: linear-gradient(180deg, var(--space) 0%, #0A0418 100%);
  position: relative; overflow: hidden;
}
.services::after {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,49,224,.07), transparent 70%);
  left: -150px; top: 50%; transform: translateY(-50%);
  pointer-events: none;
}

.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,.04);
  border-radius: var(--radius); overflow: hidden;
  position: relative; z-index: 1;
}
.service-card {
  padding: 36px 30px;
  background: rgba(15,6,32,.65);
  position: relative; overflow: hidden;
  transition: background .4s var(--ease), transform .3s var(--ease);
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,242,168,.05), transparent 55%);
  opacity: 0; transition: opacity .4s;
}
.service-card:hover { background: rgba(20,8,42,.85); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }

.service-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--service-image);
  background-size: cover; background-position: center;
  opacity: .04; transition: opacity .4s;
}
.service-card:hover .service-bg { opacity: .08; }

.service-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.service-index {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(240,244,255,.25);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0,242,168,.08); border: 1px solid rgba(0,242,168,.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--mint); transition: transform .4s var(--ease), background .3s;
}
.service-card:hover .service-icon { transform: scale(1.1); background: rgba(0,242,168,.14); }
.service-icon svg { width: 22px; height: 22px; }

.service-body { position: relative; z-index: 1; }
.service-body h3 { font-size: 18px; margin-bottom: 10px; }
.service-body p  { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.service-body small {
  display: block; font-size: 11px; font-weight: 700;
  color: var(--mint); letter-spacing: .05em; text-transform: uppercase;
}

@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; gap: 0; }
}

/* ══════════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════════ */
.process {
  background: var(--deep); position: relative; overflow: hidden;
}
.process::before {
  content: ''; position: absolute;
  width: 700px; height: 350px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,107,255,.06), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.process-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 56px; align-items: start; position: relative; z-index: 1;
}
.process-copy .eyebrow { display: block; margin-bottom: 12px; }
.process-copy h2 { font-size: clamp(24px, 3vw, 40px); }

.process-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  position: relative; padding: 32px;
}
/* connector line */
.process-track::before {
  content: ''; position: absolute;
  top: calc(32px + 28px); left: calc(12.5% + 14px);
  width: calc(75% - 28px); height: 2px;
  background: linear-gradient(90deg, var(--mint), var(--blue), var(--purple), rgba(139,49,224,.3));
}
.process-step-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px; position: relative; z-index: 1;
}
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--deep); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--muted);
  margin-bottom: 20px; transition: all .4s var(--ease);
  box-shadow: 0 0 0 6px var(--deep);
}
.process-step-card.active .step-number,
.process-step-card:hover .step-number {
  background: linear-gradient(135deg, var(--mint), var(--blue));
  border-color: transparent; color: var(--void);
  box-shadow: 0 0 0 6px var(--deep), 0 0 28px rgba(0,242,168,.3);
}
.process-step-card h3 { font-size: 15px; font-weight: 800; margin-bottom: 8px; color: var(--muted); }
.process-step-card p  { font-size: 12.5px; color: var(--muted2); line-height: 1.55; }
.process-step-card.active h3,
.process-step-card:hover h3 { color: var(--white); }

@media (max-width: 1000px) {
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-track { grid-template-columns: 1fr 1fr; }
  .process-track::before { display: none; }
}
@media (max-width: 520px) {
  .process-track { grid-template-columns: 1fr; gap: 24px; }
}

/* ══════════════════════════════════════════════════
   WHY LIMIAR
══════════════════════════════════════════════════ */
.why {
  background: linear-gradient(180deg, #150A28 0%, var(--space) 100%);
  position: relative; overflow: hidden;
}
.why::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,49,224,.4), transparent);
}
.why::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,242,168,.3), transparent);
}
.why-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 56px; align-items: start; position: relative; z-index: 1;
}
.why-copy .eyebrow { display: block; margin-bottom: 12px; }
.why-copy h2 { font-size: clamp(24px, 3vw, 40px); }
.why-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: rgba(255,255,255,.03);
  border-radius: var(--radius); overflow: hidden;
}
.why-card {
  padding: 40px 32px;
  background: rgba(21,10,40,.5);
  transition: background .3s;
}
.why-card:hover { background: rgba(28,14,52,.8); }
.why-card h3 { font-size: 18px; margin-bottom: 12px; }
.why-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   MANIFESTO
══════════════════════════════════════════════════ */
.manifesto {
  background: linear-gradient(135deg, #00C98A 0%, #0A8BFF 50%, #8B31E0 100%);
  padding-block: 100px; position: relative; overflow: hidden;
}
.manifesto::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.manifesto-card {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px;
  padding: 52px 56px;
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2);
  max-width: 900px; margin-inline: auto;
}
.manifesto-card .eyebrow { color: rgba(255,255,255,.65); }
.manifesto-card h2  { color: #fff; margin-bottom: 14px; font-size: clamp(24px,3vw,38px); }
.manifesto-card p   { color: rgba(255,255,255,.75); font-size: 16px; }
.manifesto-card .btn--primary { background: var(--void); color: var(--white); flex-shrink: 0; }
.manifesto-card .btn--primary:hover { box-shadow: 0 20px 50px rgba(0,0,0,.4); transform: translateY(-3px); }
@media (max-width: 768px) {
  .manifesto-card { flex-direction: column; align-items: flex-start; padding: 36px 28px; }
}

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact { background: var(--abyss); position: relative; overflow: hidden; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 64px; align-items: center;
}
.contact-copy .eyebrow { display: block; margin-bottom: 12px; }
.contact-copy h2 { margin-bottom: 16px; }
.contact-copy > p { font-size: 16px; margin-bottom: 32px; }
.contact-list {
  display: flex; flex-direction: column; gap: 10px;
}
.contact-list > div {
  padding: 12px 16px; font-size: 13.5px; color: var(--muted);
}
.contact-panel {
  padding: 36px 32px;
}
.contact-panel .eyebrow { display: block; margin-bottom: 10px; color: var(--mint); }
.contact-panel h3 { margin-bottom: 10px; }
.contact-panel p  { font-size: 14px; margin-bottom: 24px; }
.contact-panel small { display: block; font-size: 11.5px; color: var(--muted2); margin-top: 14px; }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.site-footer {
  background: var(--abyss);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}
.footer-shell {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; align-items: start;
  background: transparent; border: none; border-radius: 0;
  backdrop-filter: none;
}
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p   { font-size: 13.5px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; max-width: 260px; }
.footer-brand small { font-size: 11.5px; color: var(--muted2); }
.footer-links {
  display: flex; flex-direction: column; gap: 10px; padding-top: 4px;
}
.footer-links a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  transition: color .25s;
}
.footer-links a:hover { color: var(--mint); }
.footer-copy {
  grid-column: 1 / -1;
  padding-top: 28px; border-top: 1px solid var(--border);
  text-align: center;
}
.footer-copy small { font-size: 12px; color: var(--muted2); }
@media (max-width: 700px) {
  .footer-shell { grid-template-columns: 1fr; gap: 28px; }
}

/* ══════════════════════════════════════════════════
   MOBILE DOCK (App-like bottom nav)
══════════════════════════════════════════════════ */
.mobile-dock {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  height: calc(var(--dock-h) + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(6,11,20,.94);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  z-index: 850;
  align-items: flex-start; padding-top: 8px;
}
.dock-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: 4px; padding: 4px 8px;
  font-family: var(--font); font-size: 9.5px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(240,244,255,.4);
  transition: color .25s; background: none; border: none; cursor: pointer;
}
.dock-item.active, .dock-item:hover { color: var(--mint); }
.dock-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}
.dock-icon svg { width: 22px; height: 22px; transition: transform .3s var(--ease); }
.dock-item.active .dock-icon svg { transform: scale(1.15); }
.dock-label { line-height: 1; }

/* Elevated CTA button */
.dock-item--cta {
  flex: 0 0 64px;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  width: 54px; height: 54px; border-radius: 50%;
  color: var(--void) !important;
  margin-top: -22px; flex-direction: column;
  box-shadow: 0 8px 28px rgba(0,242,168,.35);
  transition: all .3s var(--ease) !important;
  flex: unset; padding: 0;
}
.dock-item--cta:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,242,168,.5); }
.dock-item--cta .dock-icon { width: 54px; height: 54px; }
.dock-item--cta .dock-icon svg { width: 24px; height: 24px; }
.dock-item--cta .dock-label { display: none; }

/* WhatsApp item */
.dock-item--whatsapp svg { fill: currentColor; }

@media (max-width: 768px) {
  .mobile-dock { display: flex !important; }
}

/* ══════════════════════════════════════════════════
   LIMIA AGENT — Chat interface
══════════════════════════════════════════════════ */
.agent-fab-wrap {
  position: fixed; bottom: 28px; right: 28px; z-index: 700;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.agent-bubble-hint {
  background: var(--deep); border: 1px solid var(--border);
  border-radius: 14px 14px 0 14px;
  padding: 11px 15px; font-size: 13px; font-weight: 600;
  color: rgba(240,244,255,.7); max-width: 200px;
  text-align: right; line-height: 1.4;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: float-hint 4s ease-in-out infinite;
}
@keyframes float-hint { 0%,100%{transform:translateY(0)}50%{transform:translateY(-5px)} }
.agent-fab {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--mint); color: var(--void);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,242,168,.35);
  transition: all .3s var(--ease); cursor: none; border: none;
  animation: fab-pulse 3s ease-in-out infinite;
}
.agent-fab:hover { transform: scale(1.1); box-shadow: 0 14px 50px rgba(0,242,168,.55); }
@keyframes fab-pulse {
  0%,100% { box-shadow: 0 8px 32px rgba(0,242,168,.35), 0 0 0 0 rgba(0,242,168,.1); }
  50%      { box-shadow: 0 8px 32px rgba(0,242,168,.45), 0 0 0 16px rgba(0,242,168,.03); }
}
@media (max-width: 768px) { .agent-fab-wrap { display: none; } }

/* Overlay + panel */
.agent-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .4s var(--ease);
  pointer-events: none;
}
.agent-overlay.open { opacity: 1; pointer-events: all; }

.agent-sheet {
  position: fixed; bottom: 0; right: 0;
  width: min(430px, 100vw);
  height: 100vh;
  background: rgba(9,14,26,.97);
  border-left: 1px solid var(--border);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .5s var(--ease);
  border-radius: 0;
  z-index: 901;
}
.agent-overlay.open .agent-sheet { transform: none; }
@media (max-width: 768px) {
  .agent-sheet {
    width: 100vw; height: 100vh;
    border-left: none;
  }
}

/* Agent head */
.agent-header {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  background: rgba(15,22,38,.6); flex-shrink: 0;
}
.agent-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  color: var(--void); display: flex; align-items: center;
  justify-content: center; font-size: 16px; font-weight: 900;
  flex-shrink: 0;
}
.agent-info { flex: 1; }
.agent-info .agent-name { font-size: 15px; font-weight: 800; letter-spacing: -.01em; }
.agent-info .agent-status {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: var(--muted);
}
.status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #00D97E; box-shadow: 0 0 6px #00D97E;
  animation: status-pulse 2s infinite;
}
@keyframes status-pulse { 0%,100%{box-shadow:0 0 6px #00D97E}50%{box-shadow:0 0 12px #00D97E,0 0 20px rgba(0,217,126,.3)} }
.agent-close {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer;
  transition: all .25s;
}
.agent-close:hover { background: rgba(255,255,255,.15); color: var(--white); }

/* Messages */
.agent-messages {
  flex: 1; overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  scroll-behavior: smooth;
}
.agent-messages::-webkit-scrollbar { width: 3px; }
.agent-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.agent-msg {
  display: flex; gap: 9px;
  animation: msg-in .4s var(--ease) both;
}
@keyframes msg-in { from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none} }
.agent-msg--user { flex-direction: row-reverse; }

.msg-av {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  margin-top: 4px; display: flex; align-items: center;
  justify-content: center; font-size: 12px; font-weight: 800;
}
.agent-msg--bot .msg-av { background: linear-gradient(135deg, var(--mint), var(--blue)); color: var(--void); }
.agent-msg--user .msg-av { background: rgba(255,255,255,.08); color: var(--muted); border: 1px solid var(--border); }

.msg-bubble {
  max-width: 85%; padding: 11px 15px; border-radius: 16px;
  font-size: 13.5px; line-height: 1.6; font-weight: 500;
}
.agent-msg--bot .msg-bubble {
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  color: rgba(240,244,255,.8); border-bottom-left-radius: 4px;
}
.agent-msg--user .msg-bubble {
  background: var(--mint); color: var(--void); font-weight: 700;
  border-bottom-right-radius: 4px;
}

/* Typing indicator */
.agent-typing { display: flex; gap: 10px; }
.typing-bubble {
  display: flex; align-items: center; gap: 4px;
  padding: 12px 16px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border); border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.typing-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(240,244,255,.4); animation: typing 1.4s infinite;
}
.typing-dot:nth-child(2) { animation-delay: .2s; }
.typing-dot:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%,60%,100%{transform:none;opacity:.4}30%{transform:translateY(-5px);opacity:1} }

/* Options */
.agent-opts {
  display: flex; flex-wrap: wrap; gap: 7px;
  padding: 0 20px 12px;
  animation: msg-in .4s var(--ease) both;
}
.agent-opt {
  padding: 9px 15px; border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 12.5px; font-weight: 700;
  color: rgba(240,244,255,.8); background: transparent;
  transition: all .25s; cursor: pointer; font-family: var(--font);
}
.agent-opt:hover { border-color: var(--mint); color: var(--mint); background: rgba(0,242,168,.06); }
.agent-opt.selected { border-color: var(--mint); color: var(--void); background: var(--mint); }
.agent-opt:disabled { opacity: .45; pointer-events: none; }

/* Input row */
.agent-input-area {
  padding: 12px 20px 20px; border-top: 1px solid var(--border);
  background: rgba(9,14,26,.6); flex-shrink: 0;
}
.agent-input-row { display: flex; gap: 9px; align-items: center; }
.agent-input-row input {
  flex: 1; padding: 11px 16px;
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
  border-radius: 100px; color: var(--white); font-size: 13.5px; font-weight: 500;
  transition: border-color .25s;
}
.agent-input-row input:focus { border-color: rgba(0,242,168,.35); }
.agent-input-row input::placeholder { color: rgba(240,244,255,.3); }
.agent-input-row button[type="submit"] {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--mint); color: var(--void);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s; cursor: pointer; flex-shrink: 0;
}
.agent-input-row button[type="submit"]:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(0,242,168,.3); }
.agent-input-row button[type="submit"]:disabled { opacity: .4; pointer-events: none; }
.agent-input-row button[type="submit"] svg { width: 16px; height: 16px; }

#agentStatus { font-size: 11.5px; color: var(--muted2); margin-top: 8px; }

/* Progress bar */
.agent-progress-bar {
  width: 100%; height: 4px; background: var(--border);
  border-radius: 2px; overflow: hidden; margin-top: 10px;
}
.agent-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--mint), var(--blue));
  border-radius: 2px; width: 0%; transition: width .1s linear;
}

/* Report card */
.agent-report {
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px; max-width: 100%;
}
.report-section { margin-bottom: 16px; }
.report-section:last-child { margin-bottom: 0; }
.report-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--mint);
  padding-bottom: 6px; margin-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.report-item {
  display: flex; gap: 8px; font-size: 12.5px;
  color: rgba(240,244,255,.8); line-height: 1.55; margin-bottom: 4px;
}
.report-item::before { content: '→'; color: var(--mint); flex-shrink: 0; }
.report-insight { font-size: 12.5px; color: rgba(240,244,255,.8); line-height: 1.6; }
.report-cta {
  display: block; width: 100%; padding: 14px;
  background: var(--mint); color: var(--void);
  border-radius: var(--radius-sm); font-size: 14px; font-weight: 800;
  text-align: center; margin-top: 16px;
  transition: all .3s var(--ease); cursor: pointer;
}
.report-cta:hover { background: var(--mint2); transform: translateY(-2px); }
.report-note {
  font-size: 11px; color: var(--muted2);
  text-align: center; margin-top: 8px;
}

/* LGPD consent */
.agent-consent {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 0; border-top: 1px solid var(--border);
  margin-top: 12px; font-size: 11.5px; color: var(--muted2); line-height: 1.5;
  cursor: pointer;
}
.agent-consent input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.agent-consent a { color: var(--mint); text-decoration: underline; }

/* ══════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: calc(var(--dock-h) + 12px); left: 16px; right: 16px;
  max-width: 520px; margin-inline: auto;
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; z-index: 860;
  transform: translateY(12px); opacity: 0;
  transition: all .5s var(--ease);
}
.cookie-banner.visible { transform: none; opacity: 1; }
.cookie-banner p { font-size: 13px; color: var(--muted); margin: 0; }
.cookie-banner a { color: var(--mint); text-decoration: underline; }
@media (max-width: 768px) { .cookie-banner { flex-direction: column; align-items: flex-start; } }

/* ══════════════════════════════════════════════════
   WORDPRESS OVERRIDES
══════════════════════════════════════════════════ */
.wp-block-image, .wp-block-embed { margin: 0; }
.alignwide  { max-width: 1100px; margin-inline: auto; }
.alignfull  { width: 100%; }
.screen-reader-text {
  position: absolute !important; clip: rect(1px,1px,1px,1px);
  overflow: hidden; height: 1px; width: 1px;
}

/* ══════════════════════════════════════════════════
   SITE-MAIN (blog fallback)
══════════════════════════════════════════════════ */
.site-main { min-height: 60vh; padding-top: var(--nav-h); }
