:root {
  --bg: #14161a;
  --bg-alt: #1c1f25;
  --card: #20242b;
  --border: #2c313a;
  --text: #f2f1ec;
  --text-dim: #a6acb8;
  --orange: #f5901e;
  --orange-dark: #d9740f;
  --navy: #1a1d24;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; margin-bottom: 8px; }
p { margin: 0 0 12px; color: var(--text-dim); }

.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.lead { font-size: 1.05rem; }

.section-lead { max-width: 560px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(20, 22, 26, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo { height: 44px; width: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #14161a;
  box-shadow: 0 6px 18px rgba(245, 144, 30, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245, 144, 30, 0.38); }
.btn-ghost {
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-sm { padding: 8px 16px; font-size: 0.9rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* Hero */
.hero { padding: 72px 0 48px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-art {
  background: radial-gradient(circle at 50% 45%, rgba(245,144,30,0.16), transparent 70%);
  border-radius: var(--radius);
  padding: 24px;
}
.hero-icons { border-radius: var(--radius); }

/* Diff */
.diff { padding: 56px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.diff-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.diff-icon { width: 56px; height: 56px; object-fit: contain; margin-bottom: 14px; border-radius: 10px; background: #fff; padding: 6px; }

/* How it works */
.how { padding: 64px 0; }
.steps {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.steps li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: #14161a;
  font-weight: 800;
  margin-bottom: 14px;
}

/* Prestadores */
.prestadores { padding: 64px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prestadores-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.check-list { list-style: none; margin: 0 0 24px; padding: 0; }
.check-list li {
  color: var(--text);
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
}
.check-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  position: absolute;
  left: 0;
}
.prestadores-art { border-radius: var(--radius); background: #fff; padding: 20px; }

/* CTA */
.cta { padding: 72px 0; text-align: center; }
.cta-inner { max-width: 520px; margin: 0 auto; }
.cta-logo { width: 72px; margin: 0 auto 20px; }
.cta p { margin-bottom: 28px; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 40px; }
.footer-inner p { margin: 0; font-size: 0.9rem; }

@media (max-width: 760px) {
  .hero-inner, .prestadores-inner { grid-template-columns: 1fr; }
  .hero-art, .prestadores-art { order: -1; }
}
