/* === 1898 Design — Static Site === */
:root {
  --bg: #0a0a0b;
  --bg-soft: #111113;
  --card: #15151a;
  --border: #25252c;
  --fg: #f5f5f7;
  --muted: #8b8b94;
  --primary: #e63956;
  --primary-2: #ff5478;
  --shadow-glow: 0 10px 40px -10px rgba(230,57,86,0.45);
  --grad: linear-gradient(135deg, #e63956, #ff5478);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; }
.small { font-size: 11px; }
.muted { color: var(--muted); }
.primary { color: var(--primary); }
.center { text-align: center; }
.mt-30 { margin-top: 30px; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 24px 0; transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10,10,11,0.75);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.logo-text { font-weight: 700; font-size: 18px; }
.nav-links { display: none; gap: 32px; }
.nav-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--fg); }
@media (min-width: 768px) { .nav-links { display: inline-flex; } }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 28px; border-radius: 999px; font-weight: 600;
  transition: all .4s cubic-bezier(0.22,1,0.36,1); cursor: pointer; border: none;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: scale(1.05); }
.btn-ghost {
  background: rgba(21,21,26,0.4); border: 1px solid var(--border);
  backdrop-filter: blur(12px); color: var(--fg);
}
.btn-ghost:hover { border-color: var(--primary); }
.arrow { display: inline-block; transition: transform .3s; }
.btn:hover .arrow { transform: rotate(45deg); }

/* HERO */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(ellipse at top, rgba(230,57,86,0.08), transparent 60%), var(--bg);
}
.orb { position: absolute; width: 384px; height: 384px; border-radius: 50%; filter: blur(80px); animation: glow 4s ease-in-out infinite; }
.orb-1 { top: 33%; left: -120px; background: rgba(230,57,86,0.18); }
.orb-2 { bottom: 25%; right: -120px; background: rgba(255,84,120,0.12); animation-delay: 1.5s; }
@keyframes glow { 0%,100% { opacity: .4; transform: scale(1); } 50% { opacity: .8; transform: scale(1.05); } }

.hero-inner { position: relative; z-index: 2; padding: 130px 24px 80px; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.1fr 1fr; } }

.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 999px;
  border: 1px solid var(--border); background: rgba(21,21,26,0.5);
  backdrop-filter: blur(10px); font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--muted); margin-bottom: 32px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.display {
  font-size: clamp(2.75rem, 7vw, 7rem);
  font-weight: 700; line-height: 0.9; letter-spacing: -0.02em;
}
.display .line { display: block; }
.display-2 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 0.95; letter-spacing: -0.02em;
}

.lead { margin-top: 32px; max-width: 560px; font-size: 18px; color: var(--muted); }
.cta-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; }

.hero-image { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-glow);
}
.hero-img-wrap img { width: 100%; height: 420px; object-fit: cover; }
@media (min-width: 768px) { .hero-img-wrap img { height: 560px; } }
.hero-img-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.4), transparent);
}
.floating-badge {
  position: absolute; bottom: -24px; left: -16px;
  background: rgba(21,21,26,0.9); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 20px; box-shadow: var(--shadow-glow);
}
@media (min-width: 768px) { .floating-badge { left: 24px; } }
.badge-title { font-weight: 700; font-size: 18px; margin-top: 4px; }

.stats {
  margin-top: 80px; display: grid; gap: 32px;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border); padding-top: 40px; max-width: 900px;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat-num { font-size: clamp(2.25rem, 4vw, 3rem); font-weight: 700; }
.stat-label { margin-top: 8px; font-size: 13px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: float 3s ease-in-out infinite;
}
.line-down { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--primary), transparent); }
@keyframes float { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -10px); } }

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(21,21,26,0.3); padding: 40px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap; animation: marquee 30s linear infinite;
  font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700;
}
.marquee-track span { padding-right: 40px; }
.marquee-track span:nth-child(2n) { color: var(--primary); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 130px 0; position: relative; }
.bg-soft { background: rgba(21,21,26,0.4); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
  display: flex; flex-direction: column; gap: 32px;
  margin-bottom: 64px; align-items: flex-start;
}
@media (min-width: 768px) { .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-head .muted { max-width: 420px; }

.big { font-size: 18px; }

/* SOBRE */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 768px) { .about-grid { grid-template-columns: 7fr 5fr; } }
.about-image { border-radius: 20px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.about-image img { width: 100%; height: 480px; object-fit: cover; }
.about-image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,11,0.7), transparent);
}
.about-grid p { margin-top: 24px; }

/* SERVIÇOS */
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; padding: 32px; border-radius: 20px;
  border: 1px solid var(--border); background: rgba(21,21,26,0.4);
  backdrop-filter: blur(8px); transition: all .5s; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: rgba(230,57,86,0.6); transform: translateY(-4px); }
.service-card .ico {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(230,57,86,0.12); border: 1px solid rgba(230,57,86,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 24px; transition: transform .4s;
}
.service-card:hover .ico { transform: scale(1.1); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; font-weight: 700; }
.service-card p { color: var(--muted); font-size: 14px; flex: 1; }
.service-card span { margin-top: 24px; }

/* CLIENTES */
.clients-grid {
  display: grid; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .clients-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .clients-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .clients-grid { grid-template-columns: repeat(6, 1fr); } }
.client-cell {
  background: var(--bg); aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; color: var(--muted);
  transition: all .3s;
}
.client-cell:hover {
  background: var(--card); color: var(--fg);
  background-image: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CONTATO */
.contact-inner { text-align: center; }
.contact-inner .mono { display: block; margin-bottom: 16px; }
.contact-cta { display: flex; justify-content: center; }
.contact-meta {
  margin-top: 80px; display: grid; gap: 32px;
  grid-template-columns: 1fr; padding-top: 40px;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .contact-meta { grid-template-columns: repeat(3, 1fr); } }
.contact-meta > div > div:last-child { margin-top: 8px; font-weight: 500; }

/* FOOTER */
.footer { padding: 40px 0; border-top: 1px solid var(--border); }
.footer-inner {
  display: flex; flex-direction: column; gap: 16px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(0.22,1,0.36,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
