﻿:root {
  --bg: #060d18;
  --text: #f3f6fb;
  --muted: #9eafc4;
  --cyan: #2ec4ff;
  --cyan-2: #1496d4;
  --amber: #f0a202;
  --amber-2: #e85d04;
  --ok: #3ddc97;
  --font-d: "Outfit", system-ui, sans-serif;
  --font-b: "Sora", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; background: transparent; }

/* ===== COLUNA DIVIDIDA (tela cheia) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 100vh;
  position: relative;
}
.pane {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  position: relative;
}
.pane-imperio {
  background:
    radial-gradient(700px 420px at 20% 15%, rgba(46,196,255,0.22), transparent 60%),
    linear-gradient(160deg, #071428 0%, #0a1a30 50%, #06101f 100%);
}
.pane-carros {
  background:
    radial-gradient(700px 420px at 80% 20%, rgba(240,162,2,0.22), transparent 55%),
    linear-gradient(200deg, #1a1006 0%, #241508 45%, #0e0a06 100%);
}
.pane-inner {
  width: min(420px, 100%);
  text-align: center;
}
.pane-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
.pane-carros .pane-kicker { color: #e8c27a; }
.pane-logo-link {
  display: inline-flex;
  margin: 0 auto 1rem;
  transition: transform .2s ease;
}
.pane-logo-link:hover { transform: scale(1.04); }
.pane-logo {
  width: clamp(120px, 22vw, 180px);
  height: auto;
  object-fit: contain;
  background: transparent !important;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.35));
}
.pane-logo-carros { width: clamp(140px, 24vw, 210px); }
.pane-brand {
  font-family: var(--font-d);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}
.pane-lead {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}
.pane-list {
  list-style: none;
  text-align: left;
  display: grid;
  gap: 0.4rem;
  margin: 0 auto 1.5rem;
  max-width: 280px;
  color: var(--muted);
  font-size: 0.95rem;
}
.pane-list li::before {
  content: "✓ ";
  color: var(--ok);
  font-weight: 700;
}
.pane-carros .pane-list li::before { color: var(--amber); }
.pane-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.split-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-divider span {
  position: absolute;
  background: var(--bg);
  border: 1px solid rgba(255,255,255,0.15);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-imperio {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #041018;
}
.btn-carros {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #1a0f00;
}
.btn-ghost {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.btn-ghost-dark {
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(255,255,255,0.7);
  color: #1a1208;
}
.btn-plan {
  width: 100%;
  margin-top: auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-plan-main {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #041018;
  border: none;
}

/* ===== POR QUE (IMPERIO / CARROS) ===== */
.why {
  padding: 4rem 1.25rem;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(240,162,2,0.12), transparent 70%),
    #0a121f;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.why-imperio {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(46,196,255,0.14), transparent 70%),
    #071428;
}
.why-inner { max-width: 1040px; margin: 0 auto; }
.why-eyebrow {
  color: var(--amber);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: 0.82rem;
  margin-bottom: 0.6rem;
}
.why-eyebrow .brand {
  letter-spacing: 0.02em;
  font-weight: 800;
}
.why-eyebrow-cyan { color: var(--cyan); }
.why h2,
.plans-band h2 {
  font-family: var(--font-d);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  max-width: 28ch;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.why-sub {
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.why-grid article {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.why-grid h3 {
  font-family: var(--font-d);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.why-grid p { color: var(--muted); font-size: 0.92rem; line-height: 1.5; }
.why-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.plans-band {
  padding: 3.5rem 1.25rem 4rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #07111f;
}
.plans-band-imperio {
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(46,196,255,0.1), transparent 65%),
    #06101f;
}
.plans-band-carros {
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(240,162,2,0.12), transparent 65%),
    #120e08;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  align-items: stretch;
}
.plans-carros {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
}
.plan {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 1.25rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  position: relative;
}
.plan-featured {
  border-color: rgba(46,196,255,0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(46,196,255,0.08);
}
.plan-featured-carros {
  border-color: rgba(240,162,2,0.55);
  box-shadow: 0 12px 40px rgba(240,162,2,0.1);
}
.plan-badge {
  position: absolute;
  top: -0.65rem;
  left: 1rem;
  background: var(--cyan);
  color: #041018;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.plan-badge-carros {
  background: var(--amber);
  color: #1a0f00;
}
.plan h3 { font-family: var(--font-d); font-size: 1.2rem; }
.plan-price strong { font-family: var(--font-d); font-size: 1.7rem; }
.plan-price span { color: var(--muted); margin-left: 0.2rem; font-size: 0.9rem; }
.plan-price-note {
  color: #e8c27a;
  font-size: 0.88rem;
  line-height: 1.4;
}
.plan-for {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}
.plan-why {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.06);
}
.plan-why strong { color: var(--text); font-weight: 700; }
.plan ul {
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  display: grid;
  gap: 0.35rem;
  margin: 0.25rem 0 0.5rem;
  flex: 1;
}
.plan ul li::before { content: "✓ "; color: var(--ok); }
.plan-featured-carros ul li::before,
.plans-band-carros .plan ul li::before { color: var(--amber); }
.btn-plan-carros {
  background: linear-gradient(135deg, var(--amber), var(--amber-2));
  color: #1a0f00;
  border: none;
}
.btn-plan-carros-outline {
  border-color: rgba(240,162,2,0.45);
  background: rgba(240,162,2,0.1);
  color: #fde68a;
}

.foot {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.9rem;
}
.foot-copy { margin-top: 0.45rem; font-size: 0.82rem; opacity: 0.85; }
.foot-copy strong {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .split-divider {
    width: 100%;
    height: 1px;
  }
  .split-divider span {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .pane { min-height: 70vh; padding: 3rem 1.25rem; }
  .why-grid, .plans, .plans-carros { grid-template-columns: 1fr; }
  .plan-featured { transform: none; }
}
