/* E-Transporte.pro — design tokens & layout (dark, âmbar) */

:root {
  --bg-deep: #0a0a0b;
  --bg-base: #0f0f12;
  --bg-raised: #121214;
  --bg-elevated: #18181c;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-mid: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4f5;
  --text-muted: #a1a1aa;
  --text-faint: #8b8b96;
  --primary: #e8a317;
  --primary-hover: #f0b32e;
  --primary-muted: rgba(232, 163, 23, 0.14);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-soft: rgba(255, 255, 255, 0.045);
  --glass-bg-strong: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --maxw: 1160px;
  --gutter: 24px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur: 180ms;
  --header-blur: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--dur) var(--ease);
}

a:hover {
  color: var(--primary-hover);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.field__input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--primary);
  color: #0a0a0b;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 720px;
}

@media (max-width: 640px) {
  :root {
    --gutter: 16px;
  }
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-mid);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--header-blur)) saturate(1.2);
  -webkit-backdrop-filter: blur(var(--header-blur)) saturate(1.2);
  transition:
    padding var(--dur) var(--ease),
    background var(--dur) var(--ease),
    backdrop-filter var(--dur) var(--ease);
}

.site-header.is-scrolled {
  padding-block: 0.35rem;
  background: rgba(15, 15, 18, 0.82);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}

.site-header:not(.is-scrolled) {
  padding-block: 0.65rem;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1160px;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--text);
}

.brand__mark {
  height: 32px;
  width: auto;
  max-width: min(120px, 28vw);
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand--footer .brand__mark {
  height: 28px;
  max-width: min(100px, 26vw);
}

.brand__dot {
  color: var(--text-muted);
  font-weight: 500;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__list {
  display: flex;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

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

.nav__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-mobile {
  display: none;
  border-top: 1px solid var(--border-mid);
  padding: 1rem var(--gutter) 1.25rem;
  background: var(--bg-raised);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile__list a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform var(--dur) var(--ease),
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.btn--sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
}

.btn--nav-cta {
  box-shadow: 0 0 0 1px rgba(232, 163, 23, 0.35), 0 4px 14px rgba(232, 163, 23, 0.12);
}

.btn--block {
  width: 100%;
}

.btn--primary {
  background: var(--primary);
  color: #0c0c0e;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  background: var(--primary-hover);
  color: #0c0c0e;
}

.btn--primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--border-mid);
}

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-strong);
}

.btn .btn__spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(12, 12, 14, 0.25);
  border-top-color: #0c0c0e;
  border-radius: 50%;
  animation: spin 0.65s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn .btn__spinner {
    animation: none;
    border-top-color: transparent;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Sections —— */
.section {
  padding-block: clamp(3rem, 6vw, 5rem);
  position: relative;
}

.section--tight {
  padding-block: 2rem;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-base) 0%, var(--bg-deep) 100%);
}

.section__head {
  max-width: 38rem;
  margin-bottom: 2.25rem;
}

.section__head--tight {
  margin-bottom: 1.5rem;
}

.section__head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 36rem;
}

.section__head--center .section__sub {
  margin-inline: auto;
}

.section__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.62;
}

.eyebrow {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin: 0 0 0.75rem;
  font-weight: 500;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.62;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.lead strong {
  color: var(--text);
  font-weight: 600;
}

/* —— Glass (backdrop só onde combinado: header, painel hero, CTA final) —— */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.glass--soft {
  background: var(--glass-bg-soft);
  box-shadow: none;
}

.glass--strong {
  background: var(--glass-bg-strong);
}

.glass--hero {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

/* —— Hero —— */
.hero {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(232, 163, 23, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-base) 0%, var(--bg-deep) 100%);
  pointer-events: none;
}

.hero__mock-glow {
  position: absolute;
  width: min(100%, 640px);
  height: min(88%, 440px);
  left: 50%;
  right: auto;
  top: 42%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(232, 163, 23, 0.08) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__trust-inline {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
  line-height: 1.45;
}

.hero__trust-inline li {
  margin: 0;
  padding-left: 0.85rem;
  border-left: 1px solid var(--border-mid);
}

.hero__trust-inline li:first-child {
  padding-left: 0;
  border-left: none;
}

.hero__trust-inline strong {
  color: var(--text-muted);
  font-weight: 600;
}

.hero__lgpd {
  color: var(--text-muted);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  align-items: stretch;
  max-width: 52rem;
  margin-inline: auto;
}

.hero__copy {
  grid-column: 1;
  order: 2;
  text-align: center;
}

.hero__copy .eyebrow,
.hero__copy .lead,
.hero__copy h1 {
  margin-inline: auto;
  max-width: 40rem;
}

.hero__copy .hero__ctas {
  justify-content: center;
}

.hero__copy .hero__trust-inline {
  justify-content: center;
}

.hero__visual {
  position: relative;
  z-index: 1;
  grid-column: 1;
  order: 1;
  width: 100%;
  max-width: 56rem;
  margin-inline: auto;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-marquee {
  margin-top: 2.25rem;
  text-align: center;
}

.trust-marquee__headline {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 36rem;
  margin-inline: auto;
}

.trust-marquee__headline strong {
  color: var(--text);
}

.trust-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-marquee__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2.5rem;
  width: max-content;
  padding-block: 0.35rem;
  animation: trust-marquee 48s linear infinite;
  will-change: transform;
}

.trust-marquee:hover .trust-marquee__track {
  animation-play-state: paused;
}

.trust-marquee__item {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

@media (prefers-reduced-motion: reduce) {
  .trust-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 40rem;
    margin-inline: auto;
    gap: 0.65rem 1.25rem;
  }

  .trust-marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 900px) {
  .hero__grid {
    max-width: none;
  }

  .hero__mock-glow {
    width: min(110%, 520px);
    top: 38%;
  }
}

/* Mock do painel + skeleton (evita “salto” visual no carregamento) */
.panel-mock-wrap {
  position: relative;
  min-height: 260px;
  border-bottom: 1px solid rgba(232, 163, 23, 0.5);
}

.panel-mock-skeleton {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: rgba(20, 20, 24, 0.85);
  overflow: hidden;
  transition: opacity 0.35s var(--ease);
}

.panel-mock-skeleton::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  animation: skeleton-shimmer 1.1s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}

.panel-mock-skeleton__bar {
  height: 40px;
  margin: 0.65rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.panel-mock-skeleton__grid {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.65rem;
  padding: 0 1rem 1rem;
  min-height: 180px;
}

.panel-mock-skeleton__rail {
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.panel-mock-skeleton__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  align-content: start;
}

.panel-mock-skeleton__kpi {
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
}

.panel-mock-skeleton__row {
  grid-column: 1 / -1;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
}

.panel-mock-wrap.is-loaded .panel-mock-skeleton {
  opacity: 0;
  pointer-events: none;
}

.panel-mock-wrap.is-loaded .panel-mock-skeleton::after {
  animation: none;
}

.panel-mock {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-mid);
  background: rgba(18, 18, 22, 0.72);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  max-width: 100%;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.panel-mock-wrap.is-loaded .panel-mock {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .panel-mock-skeleton::after {
    animation: none;
  }

  .panel-mock {
    opacity: 1;
  }

  .panel-mock-skeleton {
    opacity: 0;
    pointer-events: none;
  }
}

.panel-mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.2);
}

.panel-mock__dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #3f3f46;
}

.panel-mock__dot:nth-child(1) {
  background: #52525b;
}

.panel-mock__dot:nth-child(2) {
  background: #71717a;
}

.panel-mock__title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}

.panel-mock__body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 220px;
}

.panel-mock__rail {
  padding: 0.85rem;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.panel-mock__nav {
  font-size: 0.75rem;
  color: var(--text-faint);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
}

.panel-mock__nav.is-active {
  background: var(--primary-muted);
  color: var(--primary);
  font-weight: 600;
}

.panel-mock__main {
  padding: 1rem;
}

.panel-mock__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.panel-mock__kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  text-align: center;
}

.panel-mock__kpi-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.panel-mock__kpi-val {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.panel-mock__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.panel-mock__list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 0.45rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.panel-mock__list em {
  margin-left: auto;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--text-faint);
  font-variant-numeric: tabular-nums;
}

.tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 6px;
  background: var(--primary-muted);
  color: var(--primary);
}

.tag--muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}

@media (max-width: 520px) {
  .panel-mock__body {
    grid-template-columns: 1fr;
  }

  .panel-mock__rail {
    flex-direction: row;
    flex-wrap: wrap;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }
}

/* Context */
.context-card {
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.context-card__text {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.62;
}

/* Bento */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.bento__card {
  grid-column: span 4;
  padding: 1.35rem 1.4rem;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.bento__card:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 163, 23, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(232, 163, 23, 0.12);
}

.bento__card--wide {
  grid-column: span 8;
}

.bento__card h3 {
  margin-top: 0.85rem;
  color: var(--text);
}

.bento__card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.58;
}

.bento__more {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
}

.bento__more:hover {
  color: var(--primary-hover);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .bento__card,
  .bento__card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .bento__card,
  .bento__card--wide {
    grid-column: span 12;
  }
}

.feat-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.03);
}

.feat-icon--sm {
  width: 36px;
  height: 36px;
}

/* Timeline */
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 163, 23, 0.25) 15%,
    rgba(232, 163, 23, 0.35) 50%,
    rgba(232, 163, 23, 0.25) 85%,
    transparent
  );
  z-index: 0;
}

.timeline__item {
  position: relative;
  z-index: 1;
  padding: 1.35rem 1.25rem;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.timeline__item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.timeline__node {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.timeline__item h3 {
  color: var(--text);
  font-size: 1rem;
}

.timeline__item p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.58;
}

.timeline__cta {
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 27px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(
      180deg,
      transparent,
      rgba(232, 163, 23, 0.3) 20%,
      rgba(232, 163, 23, 0.3) 80%,
      transparent
    );
  }

  .timeline__item {
    padding-left: 3.5rem;
  }

  .timeline__node {
    position: absolute;
    left: 0.5rem;
    top: 1.25rem;
    margin-bottom: 0;
  }
}

/* Trilha do ecossistema (banners + texto + CTA) */
.section--banners {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 45%, var(--bg-deep) 100%);
}

.promo-banners {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.promo-trilha {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
  position: relative;
  padding-left: clamp(0, 2vw, 0.35rem);
}

.promo-trilha::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(232, 163, 23, 0.5),
    rgba(232, 163, 23, 0.12) 45%,
    rgba(232, 163, 23, 0.35)
  );
  border-radius: 2px;
  opacity: 0.9;
}

.promo-stack {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  padding: 0;
  align-items: stretch;
  margin-left: 1.35rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-mid);
  background: var(--bg-raised);
  box-shadow: var(--shadow-card);
  transition:
    border-color var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.promo-stack:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
}

.promo-stack__media {
  position: relative;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid rgba(232, 163, 23, 0.5);
  background: var(--bg-deep);
  line-height: 0;
}

.promo-stack__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  vertical-align: bottom;
  max-height: none;
}

.promo-stack__orbit {
  position: absolute;
  inset: -25%;
  background: radial-gradient(circle at 32% 38%, rgba(232, 163, 23, 0.14), transparent 52%);
  pointer-events: none;
}

.promo-stack__body {
  position: relative;
  padding: clamp(1.1rem, 2.5vw, 1.5rem) clamp(1rem, 2.5vw, 1.45rem)
    clamp(1.15rem, 2.5vw, 1.55rem);
}

.promo-stack__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--primary);
  margin-bottom: 0.45rem;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-sm);
  background: var(--primary-muted);
  border: 1px solid rgba(232, 163, 23, 0.28);
}

.promo-stack__title {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin: 0 0 0.75rem;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.promo-stack__steps {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.promo-stack__steps li {
  margin-bottom: 0.4rem;
}

.promo-stack__steps li::marker {
  color: var(--primary);
  font-weight: 600;
}

.promo-stack__hint {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-faint);
  font-style: italic;
}

.promo-stack__cta {
  width: fit-content;
}

.promo-operacao {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid var(--border-mid);
}

.promo-operacao__head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 1.75rem;
}

.promo-operacao__title {
  font-size: clamp(1.32rem, 2.5vw, 1.78rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .promo-trilha::before {
    display: none;
  }

  .promo-stack {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-stack {
    transition: none;
  }
}

/* Plans — carrossel (3 visíveis no desktop) */
.plans-carousel {
  --plan-check-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  --plan-na-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E");
  position: relative;
  isolation: isolate;
  padding-inline: clamp(0.5rem, 2vw, 1rem);
  margin-inline: calc(var(--gutter) * -0.35);
}

.plans-carousel__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.35rem, 1.5vw, 0.65rem);
  width: 100%;
}

.plans-carousel__viewport {
  position: relative;
  z-index: 0;
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  min-width: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.plans-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.plans-carousel__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gutter);
  align-items: stretch;
  width: max-content;
}

.plans-carousel__btn {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  touch-action: manipulation;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
  background: rgba(18, 18, 22, 0.92);
  color: var(--text);
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    border-color var(--dur) var(--ease),
    opacity var(--dur) var(--ease);
}

.plans-carousel__btn:hover:not(:disabled) {
  border-color: rgba(232, 163, 23, 0.45);
  color: var(--primary);
  background: rgba(24, 24, 28, 0.98);
}

.plans-carousel__btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.plans-carousel__btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.plans-carousel__btn svg {
  pointer-events: none;
}

/* Cards compactos: lista única, check SVG (mask), “Ver mais” opcional */
.plans-carousel .plan {
  flex: 0 0 auto;
  width: var(--carousel-slide-w, 31%);
  min-width: 0;
  padding: 0.85rem 1rem;
  min-height: 0;
  box-sizing: border-box;
}

.plans-carousel .plan h3 {
  font-size: 1.02rem;
}

.plans-carousel .plan__hint {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
}

.plans-carousel .plan__list {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  margin: 0 0 0.35rem;
  padding: 0;
  font-size: 0.76rem;
  line-height: 1.38;
  flex: 0 1 auto;
}

.plans-carousel .plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.plans-carousel .plan__list li::before {
  content: "";
  position: static;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.1em;
  border-radius: 0;
  opacity: 1;
  background-color: var(--primary);
  -webkit-mask: var(--plan-check-mask) center / contain no-repeat;
  mask: var(--plan-check-mask) center / contain no-repeat;
}

.plans-carousel .plan__list li.is-na {
  color: var(--text-faint);
  font-size: 0.72rem;
}

.plans-carousel .plan__list li.is-na::before {
  background-color: var(--text-faint);
  opacity: 0.55;
  -webkit-mask: var(--plan-na-mask) center / contain no-repeat;
  mask: var(--plan-na-mask) center / contain no-repeat;
}

.plans-carousel .plan__list--collapsible:not(.plan__list--expanded) .plan__list__extra {
  display: none;
}

.plans-carousel .plan__list__more {
  display: block;
  width: fit-content;
  margin: 0 0 0.55rem;
  padding: 0.2rem 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.plans-carousel .plan__list__more:hover {
  color: var(--primary-hover);
}

.plans-carousel .plan__list__more:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.plans-carousel .plan .btn {
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  margin-top: auto;
}

.plans-carousel .plan__badge {
  top: 0.55rem;
  right: 0.55rem;
  font-size: 0.6rem;
}

.plans-carousel .plan--highlight {
  transform: none;
  z-index: 2;
}

.plans-carousel .plan--highlight:hover {
  transform: translateY(-2px);
}

.plan {
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.plan:hover:not(.plan--highlight) {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.plan--highlight:hover {
  transform: scale(1.02) translateY(-2px);
}

.plan h3 {
  color: var(--text);
  margin-bottom: 0.25rem;
}

.plan__hint {
  font-size: 0.8125rem;
  color: var(--text-faint);
  margin: 0 0 1rem;
}

.plan__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  flex: 1;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.plan__list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}

.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 2px;
  background: var(--primary);
  opacity: 0.85;
}

.plan--free .plan__list li.is-lock::before {
  background: var(--text-faint);
}

.plan__list li.is-na {
  color: var(--text-faint);
  font-size: 0.86rem;
  padding-left: 0;
}

.plan__list li.is-na::before {
  display: none;
}

.plan--highlight {
  border: 1px solid rgba(232, 163, 23, 0.55);
  outline: 1px solid rgba(232, 163, 23, 0.22);
  outline-offset: 3px;
  box-shadow: 0 0 0 1px rgba(232, 163, 23, 0.1), 0 16px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.02);
  z-index: 2;
}

.plan--highlight:hover {
  border-color: rgba(232, 163, 23, 0.65);
  box-shadow: 0 0 0 1px rgba(232, 163, 23, 0.18), 0 20px 48px rgba(0, 0, 0, 0.38);
}

.plan__badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  background: var(--primary-muted);
  color: var(--primary);
  border: 1px solid rgba(232, 163, 23, 0.35);
}

.plan-note {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: var(--text-faint);
  text-align: center;
}

.plan-note a {
  color: var(--primary);
}

/* FREE block — superfície sem backdrop extra (limite GPU) */
.free-block {
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gutter);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .free-grid {
    grid-template-columns: 1fr;
  }
}

.free-item h3 {
  color: var(--text);
  margin-top: 0.65rem;
  font-size: 1rem;
}

.free-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
}

.free-close {
  margin: 0;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
}

.free-close strong {
  color: var(--text);
}

/* O painel — conteúdo detalhado (mesmos tokens, sem mudar tema) */
.painel-intro {
  padding: 1.25rem 1.4rem;
  margin-bottom: 1.75rem;
}

.painel-intro__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--text);
}

.painel-intro p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.painel-intro strong {
  color: var(--text);
}

.painel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
}

@media (max-width: 768px) {
  .painel-grid {
    grid-template-columns: 1fr;
  }
}

.painel-mod {
  padding: 1.2rem 1.25rem;
}

.painel-mod h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  color: var(--text);
}

.painel-mod ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  line-height: 1.52;
  color: var(--text-muted);
}

.painel-mod li {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.45rem;
  border-left: 2px solid rgba(232, 163, 23, 0.35);
}

.painel-mod li:last-child {
  margin-bottom: 0;
}

.painel-mod strong {
  color: var(--text-muted);
}

.painel-mod--note {
  grid-column: 1 / -1;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.12);
}

.painel-mod__note {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.painel-mod__note strong {
  color: var(--text);
}

.painel-cta {
  margin: 1.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-faint);
}

.painel-cta a {
  font-weight: 600;
}

/* Bloco FREE + CTA (âncora #captura) */
.solicitar-acesso-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#captura,
#free-detalhes {
  scroll-margin-top: 5.5rem;
}

/* CTA */
.cta-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.cta-banner__text .section__sub {
  margin-top: 0.35rem;
}

.lead-form {
  position: relative;
  margin-top: var(--gutter);
  padding: 1.5rem 1.35rem;
}

.lead-form__success {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232, 163, 23, 0.35);
  background: rgba(232, 163, 23, 0.08);
}

.lead-form__success p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.lead-form__success strong {
  color: var(--text);
}

.field--honeypot {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  opacity: 0;
  pointer-events: none;
}

.lead-form__title {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.lead-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 560px) {
  .lead-form__grid {
    grid-template-columns: 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field__label {
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.field__input {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  transition: border-color var(--dur) var(--ease);
}

.field__input:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.field__textarea {
  min-height: 5.5rem;
  resize: vertical;
}

.field__hint {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin: 0;
}

.field__hint--above {
  margin-bottom: 0.35rem;
}

.field__optional {
  font-weight: 400;
  color: var(--text-faint);
}

.field--full {
  grid-column: 1 / -1;
}

/* Modal lead — captura (largo, sem scroll duplo, responsivo) */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: max(0.75rem, env(safe-area-inset-top)) max(0.75rem, env(safe-area-inset-right))
    max(0.75rem, env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-left));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s var(--ease),
    visibility 0.28s var(--ease);
}

.lead-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-modal.is-open .lead-modal__dialog {
  transform: translateY(0) scale(1);
}

.lead-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lead-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: min(96vw, 880px);
  margin: max(0.5rem, env(safe-area-inset-top)) auto max(1rem, env(safe-area-inset-bottom));
  flex: 0 0 auto;
  overflow-x: hidden;
  overflow-y: visible;
  display: flex;
  flex-direction: column;
  padding: clamp(1.1rem, 2.5vw, 1.85rem);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-soft), 0 0 0 1px rgba(232, 163, 23, 0.06);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.32s var(--ease);
  box-sizing: border-box;
  min-width: 0;
  /* Painel opaco: sem vidro/blur — não vê a LP atrás do formulário */
  background: var(--bg-elevated);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  isolation: isolate;
}

/* Campos e seletores: fundo escuro + texto claro (incl. lista nativa onde o browser permitir) */
.lead-modal__dialog .field__input,
.lead-modal__dialog select.field__input,
.lead-modal__dialog textarea.field__input {
  background: var(--bg-deep);
  color: var(--text);
  border-color: var(--border-mid);
}

.lead-modal__dialog select.field__input {
  color-scheme: dark;
  cursor: pointer;
}

.lead-modal__dialog select.field__input option {
  background: var(--bg-elevated);
  color: var(--text);
}

.lead-modal__dialog .field__input::placeholder {
  color: var(--text-faint);
}

/* Autofill do navegador não fica “azul claro” em cima do tema escuro */
.lead-modal__dialog .field__input:-webkit-autofill,
.lead-modal__dialog .field__input:-webkit-autofill:hover,
.lead-modal__dialog .field__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--text);
  transition: background-color 99999s ease-out;
  box-shadow: 0 0 0 1000px var(--bg-deep) inset;
}

.lead-modal__dialog .field__input:focus {
  border-color: rgba(232, 163, 23, 0.45);
}

@media (prefers-reduced-motion: reduce) {
  .lead-modal {
    transition: none;
  }

  .lead-modal__dialog {
    transition: none;
    transform: none;
  }
}

.lead-modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--dur) var(--ease),
    color var(--dur) var(--ease);
}

.lead-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.lead-modal__header {
  padding-right: 2.75rem;
  margin-bottom: 1rem;
  min-width: 0;
}

.lead-modal__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.35rem;
}

.lead-modal__header h2 {
  margin-bottom: 0.4rem;
}

.lead-modal__lede {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.lead-modal__form {
  overflow: visible;
  min-width: 0;
  width: 100%;
}

.lead-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  margin-bottom: 1rem;
  min-width: 0;
}

.lead-modal__grid .field {
  min-width: 0;
}

.lead-modal__grid .field__input,
.lead-modal__grid select.field__input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 560px) {
  .lead-modal {
    padding-inline: max(0.65rem, env(safe-area-inset-left)) max(0.65rem, env(safe-area-inset-right));
  }

  .lead-modal__dialog {
    max-width: 100%;
    padding: 1rem 1rem 1.15rem;
    border-radius: var(--radius-md);
  }

  .lead-modal__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.lead-modal__fieldset {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
  width: 100%;
}

.lead-modal__radios {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.45rem 0.75rem;
  margin-top: 0.35rem;
  min-width: 0;
  width: 100%;
}

@media (max-width: 420px) {
  .lead-modal__radios {
    grid-template-columns: 1fr;
  }
}

.lead-modal__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
  min-width: 0;
  word-break: break-word;
}

.lead-modal__radio input {
  accent-color: var(--primary);
  width: 1rem;
  height: 1rem;
}

.city-field {
  min-width: 0;
}

.city-combo__filter {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.city-combo__list {
  margin-top: 0.35rem;
  max-height: 7.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
  background: var(--bg-deep);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 561px) {
  .city-combo__list {
    max-height: 9rem;
  }
}

.city-combo__option {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.5rem 0.65rem;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
  text-align: left;
  cursor: pointer;
  line-height: 1.35;
  transition: background var(--dur) var(--ease);
}

.city-combo__option:last-child {
  border-bottom: none;
}

.city-combo__option:hover,
.city-combo__option:focus-visible {
  background: rgba(232, 163, 23, 0.12);
  outline: none;
}

.city-combo__empty {
  margin: 0;
  padding: 0.65rem 0.75rem;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

.lead-modal__fonte-outro {
  margin-top: 0.75rem;
}

.lead-modal__error {
  margin: 0 0 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: #fecaca;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.lead-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
  margin-top: 0.35rem;
  min-width: 0;
  width: 100%;
}

@media (max-width: 480px) {
  .lead-modal__actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .lead-modal__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.lead-modal__submit-wait {
  display: inline;
}

.lead-modal__success {
  text-align: center;
  padding: 1rem 0 0.25rem;
}

.lead-modal__success-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.lead-modal__success-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.lead-modal__success[hidden],
.lead-modal__form[hidden] {
  display: none !important;
}

/* Accordion */
.accordion__item {
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--dur) var(--ease);
}

.accordion__trigger:hover {
  background: rgba(255, 255, 255, 0.04);
}

.accordion__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform var(--dur) var(--ease);
}

.accordion__icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform var(--dur) var(--ease);
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
}

.accordion__panel {
  padding: 0 1.1rem 1.1rem;
  border-top: 1px solid var(--border-subtle);
}

.accordion__panel p {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.accordion__panel strong {
  color: var(--text);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border-mid);
  padding-block: 3rem 1.5rem;
  background: var(--bg-base);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr 1.05fr;
  gap: var(--gutter);
  max-width: 1160px;
}

.footer__contact {
  list-style: none;
  margin: 0 0 0.65rem;
  padding: 0;
}

.footer__contact li {
  margin-bottom: 0.5rem;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer__contact-link:hover {
  color: var(--primary);
}

.footer__contact-icon {
  display: flex;
  color: var(--primary);
  opacity: 0.9;
}

.footer__site {
  margin: 0 0 0.65rem;
  font-size: 0.875rem;
}

.footer__site a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer__site a:hover {
  color: var(--primary);
}

.faq__footer-help {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.faq__footer-help a {
  font-weight: 600;
  margin-left: 0.25rem;
}

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.brand--footer {
  margin-bottom: 0.65rem;
}

.footer__pitch {
  font-size: 0.875rem;
  color: var(--text-faint);
  line-height: 1.55;
  margin: 0;
  max-width: 22rem;
}

.footer__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.45rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer__col p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.footer__col a {
  word-break: break-all;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.footer__social a {
  display: flex;
  color: var(--text-muted);
  padding: 0.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-mid);
  transition:
    color var(--dur) var(--ease),
    border-color var(--dur) var(--ease);
}

.footer__social a:hover {
  color: var(--primary);
  border-color: rgba(232, 163, 23, 0.35);
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-faint);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

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

.reveal--delay {
  transition-delay: 80ms;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .bento__card:hover,
  .plan:hover:not(.plan--highlight),
  .plan--highlight:hover,
  .timeline__item:hover {
    transform: none;
  }

  .plan--highlight {
    transform: none;
  }

  .axus-chat__panel {
    transition: none;
  }

  .axus-chat__launcher {
    transition: none;
  }
}

/* AxusChat — canto inferior direito */
.axus-chat {
  position: fixed;
  right: clamp(0.75rem, 3vw, 1.25rem);
  bottom: clamp(0.75rem, 3vw, 1.25rem);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
  font-family: var(--font);
}

.axus-chat__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.axus-chat__panel {
  order: 1;
  width: min(100vw - 2rem, 380px);
  max-height: min(72vh, 520px);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-mid);
  background: var(--bg-elevated);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    visibility 0.22s;
  pointer-events: none;
}

.axus-chat--open .axus-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.axus-chat__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-raised);
}

.axus-chat__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
}

.axus-chat__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.axus-chat__close:hover {
  background: var(--glass-bg);
  color: var(--text);
}

.axus-chat__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.axus-chat__body {
  flex: 1;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.axus-chat__iframe {
  flex: 1;
  width: 100%;
  min-height: 280px;
  border: 0;
  background: var(--bg-deep);
}

.axus-chat__fallback {
  padding: 1.1rem 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.axus-chat__fallback p {
  margin: 0 0 1rem;
}

.axus-chat__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.axus-chat__action {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
  text-align: center;
}

.axus-chat__launcher {
  order: 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(232, 163, 23, 0.45);
  background: linear-gradient(145deg, var(--primary) 0%, #c98a12 100%);
  color: #0c0c0e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(232, 163, 23, 0.28);
  transition:
    transform var(--dur) var(--ease),
    box-shadow var(--dur) var(--ease);
}

.axus-chat__launcher:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(232, 163, 23, 0.38);
}

.axus-chat__launcher:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.axus-chat__launcher-icon {
  display: flex;
  line-height: 0;
}
