:root {
  --bg: #081120;
  --bg-soft: #0f172a;
  --card: rgba(15, 23, 42, 0.75);
  --card-strong: rgba(15, 23, 42, 0.92);
  --line: rgba(148, 163, 184, 0.16);
  --text: #e5eefb;
  --muted: #94a3b8;
  --primary: #38bdf8;
  --primary-2: #22d3ee;
  --accent: #8b5cf6;
  --success: #34d399;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
  --radius: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(139, 92, 246, 0.16), transparent 24%),
    linear-gradient(180deg, #07101d 0%, #0b1324 48%, #081120 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  color: #c8efff;
  background: rgba(56, 189, 248, 0.08);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.75);
}

.title-block {
  max-width: 760px;
  margin-bottom: 28px;
}

.title-block h1,
.title-block h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.title-block p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(8, 17, 32, 0.72);
  border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
  flex-shrink: 0;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: #d8e5f5;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.hero {
  padding: 74px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 20px 0 24px;
  max-width: 11ch;
}

.hero-copy p,
.page-intro p {
  color: #bfd0e6;
  font-size: 1.1rem;
  max-width: 62ch;
}

.hero-cta,
.inline-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  color: #081120;
  background: linear-gradient(135deg, #e0f2fe, #67e8f9);
  box-shadow: 0 14px 28px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(34, 211, 238, 0.28);
}

.btn-secondary {
  border-color: rgba(148, 163, 184, 0.22);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(148, 163, 184, 0.35);
}

.hero-points,
.stats-grid,
.services-grid,
.portfolio-grid,
.contact-grid,
.process-grid,
.two-col,
.cards-grid {
  display: grid;
  gap: 22px;
}

.hero-points,
.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.hero-point,
.stat-card,
.service-card,
.portfolio-card,
.contact-card,
.info-card,
.process-card,
.mini-card,
.about-card,
.highlight-card,
.chart-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.hero-point,
.stat-card,
.service-card,
.portfolio-card,
.contact-card,
.info-card,
.process-card,
.about-card,
.highlight-card,
.chart-card {
  padding: 28px;
}

.hero-point strong,
.stat-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.hero-point span,
.stat-card span,
.service-card p,
.portfolio-card p,
.contact-card p,
.info-card p,
.process-card p,
.about-card p,
.highlight-card p,
.chart-card p {
  color: var(--muted);
}

.hero-card {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.82), rgba(8, 17, 32, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25), transparent 62%);
  pointer-events: none;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.dashboard-top span,
.small-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

.badge-live,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d1fae5;
  font-size: 0.88rem;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.22);
}

.badge-live::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.8);
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.mini-card {
  padding: 18px;
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 8px;
}

.mini-card strong {
  font-size: 1.5rem;
  letter-spacing: -0.04em;
}

.mini-card small {
  display: inline-block;
  margin-top: 10px;
  color: #d6f5ff;
  background: rgba(56, 189, 248, 0.09);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 6px 10px;
  border-radius: 999px;
}

.chart-card h3,
.service-card h3,
.portfolio-card h3,
.contact-card h3,
.info-card h3,
.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.bars {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 55px;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
}

.bar-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.page-hero {
  padding: 72px 0 18px;
}

.page-intro {
  max-width: 820px;
}

.two-col {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.highlight-stack {
  display: grid;
  gap: 18px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.15);
  color: #ccfbf1;
  font-size: 0.88rem;
  margin-top: 2px;
}

.services-grid,
.portfolio-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(139, 92, 246, 0.18));
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: #d8e6f7;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}

.portfolio-status {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(56, 189, 248, 0.1);
  color: #cbf4ff;
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.portfolio-metric {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.portfolio-metric strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.process-card span.number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #dff7ff;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(139, 92, 246, 0.22));
}

.contact-meta {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-item {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.contact-item a:hover {
  color: white;
}

.contact-note {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.18);
  color: #d2faea;
}

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 1080px) {
  .hero-grid,
  .two-col,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .portfolio-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 780px) {
  .nav {
    align-items: flex-start;
    padding: 18px 0;
    flex-direction: column;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .page-hero {
    padding-top: 44px;
  }

  .hero-points,
  .stats-grid,
  .services-grid,
  .portfolio-grid,
  .contact-grid,
  .mini-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .title-block h1,
  .title-block h2 {
    font-size: 2rem;
  }

  .bar-row {
    grid-template-columns: 72px 1fr 42px;
    gap: 8px;
  }
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 16px 40px;
  background: linear-gradient(90deg, #0b1220, #1a1f3a);
  color: white;
  z-index: 1000;
}

/* ESQUERDA (LOGO) */
.header-left {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* CENTRO (FRASE) */
.header-center {
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

/* DIREITA (MENU) */
.header-right {
  display: flex;
  justify-content: flex-end;
}

.header-right a {
  color: white;
  margin-left: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.header-right a:hover {
  color: #9f7aea;
}
