:root {
  --black-950: #050505;
  --black-900: #0a0a0a;
  --black-800: #121212;
  --black-700: #191919;
  --black-600: #222222;
  --orange: #e8821f;
  --orange-bright: #ff9d2e;
  --white: #ffffff;
  --off-white: #f2efe9;
  --muted: #a7a29a;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.65);
  --radius: 16px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--black-950);
  color: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 48px;
  width: 48px;
  border-radius: 50%;
}

.brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--white);
}
.brand-name span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 1px;
}

/* ---------- Hero ---------- */
.pedido-hero {
  padding: 72px 0 56px;
  background: radial-gradient(120% 140% at 80% 0%, var(--black-700) 0%, var(--black-900) 55%, var(--black-950) 100%);
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-bright);
  background: rgba(232, 130, 31, 0.12);
  border: 1px solid rgba(232, 130, 31, 0.35);
  padding: 6px 16px;
  border-radius: 999px;
  margin: 0 0 24px;
}

.pedido-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 20px;
  max-width: 760px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.pedido-hero-text {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 0 0 40px;
}
.pedido-hero-text strong { color: var(--white); }

/* Download card */
.download-card {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--black-800), var(--black-900));
  border: 1px solid var(--border);
  max-width: 900px;
  box-shadow: var(--shadow);
}

.download-icon {
  width: 68px;
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(232, 130, 31, 0.14);
  color: var(--orange-bright);
}
.download-icon svg { width: 34px; height: 34px; }

.download-info { flex: 1; min-width: 240px; }
.download-info h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
}
.download-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.download-meta {
  display: inline-flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.download-meta span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

.download-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-download {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange) 70%);
  color: var(--black-950);
  box-shadow: 0 12px 30px -10px rgba(232, 130, 31, 0.55);
  gap: 10px;
}
.btn-download svg { width: 20px; height: 20px; }
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -8px rgba(232, 130, 31, 0.65); }

/* Install note */
.install-note {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: rgba(232, 130, 31, 0.08);
  border: 1px dashed rgba(232, 130, 31, 0.4);
  margin-top: 28px;
  max-width: 900px;
}
.install-note-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-bright);
}
.install-note-icon svg { width: 24px; height: 24px; }
.install-note h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.install-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.install-note ol {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}
.install-note li { margin-bottom: 4px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-950);
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.footer-logo { height: 44px; width: 44px; border-radius: 50%; opacity: 0.95; }
.footer-tag {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}
.footer-copy {
  color: rgba(167,162,154,0.6);
  font-size: 0.82rem;
  margin: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .pedido-hero { padding: 56px 0 40px; }
  .download-card { flex-direction: column; align-items: stretch; text-align: center; }
  .download-actions { width: 100%; }
  .install-note { flex-direction: column; }
  .brand-name { font-size: 0.95rem; }
}
