/* institucional_product.css — exclusive styles for the Zigou flagship site
   (zigou.com.br). Premium, editorial, commercial. */

.app-shell { min-height: 100vh; }

/* Top nav layout */
.nav-wrap { position: sticky; top: 0; z-index: 1030; }
.nav-links { display: flex; gap: 0.15rem; }
.nav-cta { display: flex; gap: 0.6rem; align-items: center; }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  background-image: var(--xbyte-radial);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(circle at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero-inner { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  line-height: 0.98; font-weight: 600;
}
.hero-lead { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--xbyte-muted); max-width: 38ch; }

/* Hero device / map mock */
.hero-visual {
  position: relative; border-radius: 2rem; overflow: hidden;
  border: 1px solid var(--xbyte-border-strong);
  background: var(--xbyte-surface);
  box-shadow: 0 60px 120px -50px rgba(0,0,0,0.95), var(--xbyte-glow-blue);
  aspect-ratio: 4/5;
}
.map-mock {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 70% 20%, rgba(56,189,248,0.18), transparent 60%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 38px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 38px),
    var(--xbyte-navy);
}
.map-route { position: absolute; left: 18%; top: 28%; width: 60%; height: 44%; }
.pin {
  position: absolute; width: 14px; height: 14px; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); box-shadow: 0 6px 16px rgba(0,0,0,0.5);
}
.pin.start { background: var(--xbyte-cyan); left: 18%; top: 30%; }
.pin.end { background: var(--xbyte-gold); right: 18%; bottom: 30%; }
.hero-card-float {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem;
  background: rgba(11,18,32,0.82); backdrop-filter: blur(14px);
  border: 1px solid var(--xbyte-border-strong); border-radius: 1.2rem;
  padding: 1rem 1.1rem;
}

/* Stat strip */
.stat-num { font-family: var(--bs-font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 600; }
.stat-num.text-gradient { line-height: 1.1; }

/* Section rhythm */
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section-head { max-width: 60ch; }
.section h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }

/* Feature cards */
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(56,189,248,0.10); border: 1px solid rgba(56,189,248,0.25);
}
.feature-icon svg { width: 24px; height: 24px; stroke: var(--xbyte-cyan); }

/* Steps */
.step-num {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--bs-font-display); font-weight: 700; font-size: 1.1rem;
  background: var(--xbyte-gradient); color: #fff;
}

/* Split cards (passengers / drivers) */
.split-card { padding: clamp(1.8rem, 3vw, 2.6rem); height: 100%; }
.bullet-row { display: flex; gap: 0.7rem; align-items: flex-start; padding: 0.5rem 0; }
.bullet-row svg { flex: 0 0 auto; margin-top: 2px; }

/* City list */
.city-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border: 1px solid var(--xbyte-border);
  border-radius: 1rem; background: var(--xbyte-surface);
  transition: border-color .15s ease, transform .15s ease;
}
.city-row:hover { border-color: rgba(56,189,248,0.35); transform: translateX(4px); }

/* CTA band */
.cta-band {
  border-radius: 2rem; padding: clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(700px 300px at 85% 10%, rgba(56,189,248,0.22), transparent 60%),
    linear-gradient(135deg, #0a1530, #0b1220);
  border: 1px solid var(--xbyte-border-strong);
  position: relative; overflow: hidden;
}

/* Play store badge */
.store-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.2rem; border-radius: 0.9rem;
  background: #000; border: 1px solid var(--xbyte-border-strong); color: #fff;
}
.store-badge small { color: var(--xbyte-muted); display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; }
.store-badge strong { font-size: 1.05rem; line-height: 1; }

/* Privacy / tech grids */
.mini-card { padding: 1.4rem; height: 100%; }
.tech-tag { font-family: "JetBrains Mono", monospace; font-size: 0.78rem; }

/* Footer */
.site-footer { border-top: 1px solid var(--xbyte-border); padding: 3rem 0 2rem; }
.footer-link { color: var(--xbyte-muted); display: block; padding: 0.25rem 0; font-size: 0.92rem; }
.footer-link:hover { color: var(--xbyte-text); }

/* Mobile nav */
@media (max-width: 991px) {
  .nav-links { display: none; }
}
