:root {
  --bg: #0f1216;
  --bg-soft: #151a20;
  --surface: #1b222b;
  --text: #f6f7f8;
  --text-soft: #c5ced8;
  --brand: #f97316;
  --brand-strong: #ea580c;
  --line: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: radial-gradient(circle at 0% 0%, #202833 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(1120px, calc(100vw - 64px));
  margin: 0 auto;
}

.section {
  padding: 78px 0;
}

.muted {
  padding: 22px 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #ffd8b7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.bg-orb-one {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 120px;
  background: rgba(249, 115, 22, 0.45);
}

.bg-orb-two {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 40%;
  background: rgba(251, 146, 60, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 18, 22, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  max-width: 34vw;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(249, 115, 22, 0.18));
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  color: var(--text-soft);
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: #fff !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 26px;
  align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-image: url("./assets/bg-carros.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 20, 0.82) 0%, rgba(10, 14, 20, 0.72) 44%, rgba(10, 14, 20, 0.62) 100%),
    radial-gradient(circle at 12% 20%, rgba(249, 115, 22, 0.34), transparent 45%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.18), rgba(10, 14, 20, 0.44));
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  max-width: 18ch;
}

.hero-copy {
  color: var(--text-soft);
  max-width: 55ch;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}


.lead-form-card {
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(16, 22, 30, 0.9), rgba(12, 18, 24, 0.92));
  padding: 20px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.25);
}

.lead-form-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.lead-form-card p {
  margin: 0 0 14px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.lead-form {
  display: grid;
  gap: 9px;
}

.lead-form label {
  font-size: 0.82rem;
  color: #f7dbc1;
  font-weight: 600;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(11, 16, 22, 0.85);
  color: #f6f7f8;
  padding: 11px 12px;
  font: inherit;
}

.lead-form input::placeholder {
  color: #9ca7b5;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.lead-form .btn {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-primary {
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 18px 30px rgba(249, 115, 22, 0.28);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.4) 50%, transparent 65%);
  transform: translateX(-120%) rotate(6deg);
  transition: transform 0.55s ease;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  filter: saturate(1.12);
  box-shadow: 0 24px 44px rgba(249, 115, 22, 0.5), 0 0 0 1px rgba(255, 188, 138, 0.35) inset;
}

.btn-primary:hover::before {
  transform: translateX(120%) rotate(6deg);
}

.btn-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-primary:focus-visible {
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 188, 138, 0.3), 0 18px 30px rgba(249, 115, 22, 0.35);
}

.ticker-wrap {
  position: relative;
  z-index: 6;
  margin: -20px 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(249, 115, 22, 0.35);
  border-bottom: 1px solid rgba(249, 115, 22, 0.35);
  background: linear-gradient(90deg, #ea580c 0%, #f97316 52%, #fb923c 100%);
  transform: none;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-move 24s linear infinite;
}

.ticker-track p {
  margin: 0;
  padding: 11px 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-track span {
  font-family: "Sora", sans-serif;
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff8ef;
  padding: 0 26px;
}

.ticker-track span::after {
  content: "+";
  margin-left: 26px;
  opacity: 0.75;
}

/* Faixa de indicadores */
.stats-band {
  margin: 18px 0 0;
  background: linear-gradient(120deg, #ea580c 0%, #f97316 52%, #fb923c 100%);
  border-top: 1px solid rgba(255, 217, 191, 0.38);
  border-bottom: 1px solid rgba(255, 217, 191, 0.38);
}

.stats-grid {
  min-height: 220px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.stat-item {
  text-align: center;
  color: #fffaf5;
}

.stat-number {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1;
}

.stat-line {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin: 14px auto 12px;
  display: block;
  background: rgba(23, 12, 1, 0.58);
}

.stat-label {
  margin: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-weight: 600;
  color: #fff4ea;
}

@keyframes ticker-move {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  max-width: 20ch;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffd9bf;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card:hover .card-icon {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.25);
  background: linear-gradient(140deg, rgba(249, 115, 22, 0.35), rgba(249, 115, 22, 0.1));
}

.card h3 {
  font-size: 1.15rem;
}

.card p {
  color: var(--text-soft);
}

.feature {
  position: relative;
  overflow: hidden;
}

.feature::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -20px;
  top: -20px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.2), transparent 68%);
}

.service-lab {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.service-core {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  background:
    linear-gradient(150deg, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0.01) 55%),
    linear-gradient(180deg, #16202a, #121922);
  padding: 28px;
}

.service-core::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.03) 0 2px,
    transparent 2px 16px
  );
  pointer-events: none;
}

.core-label {
  display: inline-flex;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd7b5;
  border: 1px solid rgba(249, 115, 22, 0.45);
  border-radius: 999px;
  padding: 6px 10px;
  margin-bottom: 14px;
}

.service-core h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  max-width: 18ch;
}

.service-core p {
  color: var(--text-soft);
  max-width: 52ch;
}

.core-tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.core-tags span {
  font-size: 0.84rem;
  font-weight: 600;
  color: #f3c7a2;
  background: rgba(249, 115, 22, 0.14);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 999px;
  padding: 7px 11px;
}

.dashboard-shot {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.28);
  background: #ffffff;
  min-height: 360px;
}

.dashboard-shot::before {
  content: "Dashboard em tempo real";
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd7b5;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.4);
  background: rgba(10, 15, 24, 0.75);
}

.dashboard-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #ffffff;
  display: block;
}

.service-modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-module {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: linear-gradient(180deg, #141b24, #111822);
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.module-id {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  color: #fff3e8;
  background: linear-gradient(140deg, var(--brand), var(--brand-strong));
  margin-bottom: 12px;
}

.service-module h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.service-module p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.service-module:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 18px 26px rgba(0, 0, 0, 0.28);
}

.gradient-panel {
  background: linear-gradient(120deg, rgba(249, 115, 22, 0.11), rgba(255, 255, 255, 0));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 18, 22, 0.55);
  padding: 20px;
}

.step span {
  color: #ffc895;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
}

.step p {
  color: var(--text-soft);
  margin: 0;
}

.list-shell {
  background: #141a21;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.list-shell ul {
  margin: 0;
  padding-left: 20px;
}

.list-shell li {
  margin-bottom: 12px;
  color: var(--text-soft);
}

.faq-shell {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-shell details {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(19, 24, 30, 0.72);
}

.faq-shell details:last-child {
  border-bottom: 0;
}

.faq-shell summary {
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

.faq-shell p {
  margin-top: 10px;
  color: var(--text-soft);
}

.reviews-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-card {
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(249, 115, 22, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(18, 23, 31, 0.96), rgba(16, 21, 29, 0.96));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.review-head h3 {
  margin: 0;
  font-size: 1.03rem;
}

.review-head p {
  margin: 0;
  color: #ffcf57;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

.review-card p {
  margin: 0;
  color: var(--text-soft);
}

.review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.5);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.25);
}

.cta-box {
  text-align: center;
  border: 1px solid rgba(249, 115, 22, 0.26);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.14), rgba(15, 18, 22, 0.65));
  padding: 44px 20px;
}

.cta-box h2 {
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  max-width: 24ch;
  margin-inline: auto;
}

.cta-box p {
  color: var(--text-soft);
  max-width: 60ch;
  margin: 0 auto 20px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 54px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 26px;
  align-items: start;
}

.site-footer h3 {
  font-size: 1rem;
}

.site-footer p {
  color: var(--text-soft);
}

.social-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #ffe1c7;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link:hover {
  transform: translateY(-2px);
  border-color: rgba(249, 115, 22, 0.6);
  box-shadow: 0 12px 22px rgba(249, 115, 22, 0.18);
}

.copy {
  text-align: center;
  color: #9ba7b7;
  margin-top: 30px;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .container {
    width: min(1120px, calc(100vw - 32px));
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .stats-grid,
  .cards-3,
  .cards-2,
  .service-lab,
  .steps,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-shot {
    min-height: 280px;
  }

  .service-modules {
    grid-template-columns: 1fr;
  }

  .main-nav {
    position: absolute;
    right: 4vw;
    top: 80px;
    width: min(280px, 92vw);
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #11171e;
    flex-direction: column;
    align-items: flex-start;
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .main-nav.open {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero {
    background-position: 58% center;
  }

  .brand img {
    width: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}
