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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #FBFAF8;
  color: #1A1A1A;
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: #E4B65B;
  color: #1A1A1A;
}

/* ── TOKENS ── */
:root {
  --gold: #E4B65B;
  --gold-dark: #B07D2A;
  --gold-hover: #eec272;
  --dark: #18181B;
  --text-muted: #6B6B72;
  --border: #E7E3DA;
  --bg-light: #F4F2ED;
  --radius-card: 16px;
  --max-w: 1180px;
  --px: 28px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3 {
  font-family: 'Inter Tight', sans-serif;
  margin: 0;
}

h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(38px, 4.6vw, 68px);
}

.hero h1 .text-gold {
  background: linear-gradient(135deg, #fff 0%, #fff 35%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  line-height: 1.6;
}

.text-gold {
  color: var(--gold-dark);
}

.text-white {
  color: #FDFDFD;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.eyebrow-gold {
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all .22s;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
}

.btn-gold {
  background: var(--gold);
  color: #1A1A1A;
  font-size: 13.5px;
  padding: 9px 18px;
}

.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 6px 18px -6px #E4B65Baa;
}

.btn-lg {
  font-size: 15.5px;
  padding: 14px 26px;
}

.btn-full {
  width: 100%;
}

.btn-outline {
  background: #fff;
  border: 1px solid var(--border);
  color: #1A1A1A;
  font-size: 13.5px;
  padding: 9px 18px;
}

.btn-outline:hover {
  border-color: #25D366;
  color: #128C40;
}

/* ── LAYOUT HELPERS ── */
.section-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px var(--px);
}

.section-bg-light {
  background: var(--bg-light);
  border-top: 1px solid #EAE7DF;
  border-bottom: 1px solid #EAE7DF;
}

.section-bg-light .section-container {
  margin: 0 auto;
}

.section-dark {
  background: var(--dark);
  color: #FDFDFD;
}

.section-dark .section-container {
  margin: 0 auto;
}

.section-header {
  margin-bottom: 56px;
  max-width: 640px;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16.5px;
  color: var(--text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── CARD ── */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 30px;
  box-shadow: 0 1px 3px #0000000a;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.card-hover:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 30px -18px #E4B65B66;
  transform: translateY(-2px);
}

.card-hover:hover .card-icon {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.06);
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: #E4B65B1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 18px;
  transition: background-color .2s, color .2s, transform .2s;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  font-size: 14.5px;
  color: var(--text-muted);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, .8, .3, 1), transform .7s cubic-bezier(.16, .8, .3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.diferenciais-grid>.reveal:nth-child(2) {
  transition-delay: .08s;
}

.diferenciais-grid>.reveal:nth-child(3) {
  transition-delay: .16s;
}

.diferenciais-grid>.reveal:nth-child(4) {
  transition-delay: .08s;
}

.diferenciais-grid>.reveal:nth-child(5) {
  transition-delay: .16s;
}

.diferenciais-grid>.reveal:nth-child(6) {
  transition-delay: .24s;
}

.timeline>.reveal:nth-child(2) {
  transition-delay: .1s;
}

.timeline>.reveal:nth-child(3) {
  transition-delay: .2s;
}

.timeline>.reveal:nth-child(4) {
  transition-delay: .3s;
}

.compare-grid>.reveal:nth-child(2) {
  transition-delay: .12s;
}

.contact-grid>.reveal:nth-child(2) {
  transition-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .hero-content .badge,
  .hero-content h1,
  .hero-content .hero-sub,
  .hero-content .hero-actions,
  .hero-glow,
  .hero-img,
  .hero-side,
  .hero-marquee-track {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-tag-ping-ripple {
    animation: none !important;
    display: none !important;
  }
}

/* ── NAV ── */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #A1A1AA;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .25s;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 68px);
  min-height: calc(100dvh - 68px);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(#0000000a 1px, transparent 1px), linear-gradient(90deg, #0000000a 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 90% 70% at 30% 0%, #000 30%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 30% 0%, #000 30%, transparent 78%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, #18181BE6 0%, #18181BB3 22%, #18181B80 42%, #18181B4D 62%, #18181B1A 82%, transparent 100%),
    linear-gradient(180deg, #18181B33 0%, transparent 25%, transparent 75%, #18181B4D 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  left: 18%;
  width: 760px;
  height: 420px;
  z-index: 3;
  background: radial-gradient(ellipse at center, #E4B65B2e, transparent 70%);
  pointer-events: none;
  animation: heroGlowPulse 7s ease-in-out infinite;
}

@keyframes heroGlowPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .82;
    transform: scale(1.08);
  }
}

.hero-inner {
  position: relative;
  z-index: 4;
  flex: 1 1 auto;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 96px var(--px) 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.hero-content {
  position: relative;
  z-index: 4;
  flex: 1 1 480px;
  max-width: 580px;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .badge,
.hero-content h1,
.hero-content .hero-sub,
.hero-content .hero-actions {
  animation: heroFadeUp .85s cubic-bezier(.16, .8, .3, 1) both;
}

.hero-content .badge {
  animation-delay: .05s;
}

.hero-content h1 {
  animation-delay: .16s;
}

.hero-content .hero-sub {
  animation-delay: .32s;
}

.hero-content .hero-actions {
  animation-delay: .48s;
}

.hero-side {
  position: relative;
  z-index: 5;
  flex: 0 0 auto;
  width: 340px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  animation: heroFadeUp .85s cubic-bezier(.16, .8, .3, 1) .55s both;
}

.hero-stats-card,
.hero-marquee-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  border-radius: 22px;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 48px -20px #000000b3;
}

.hero-stats-card {
  padding: 26px;
}

.hero-stats-glow {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #E4B65B26;
  filter: blur(40px);
  pointer-events: none;
}

.hero-stats-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-stats-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: #fff;
}

.hero-stats-icon svg {
  width: 22px;
  height: 22px;
}

.hero-stats-value {
  font-family: 'Inter Tight', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-stats-label {
  font-size: 13px;
  color: #A8A6A0;
}

.hero-progress {
  position: relative;
  margin-bottom: 22px;
}

.hero-progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #A8A6A0;
  margin-bottom: 9px;
}

.hero-progress-value {
  color: #fff;
  font-weight: 600;
}

.hero-progress-track {
  height: 7px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}

.hero-stats-divider {
  height: 1px;
  background: rgba(255, 255, 255, .1);
  margin-bottom: 20px;
}

.hero-mini-stats {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 22px;
}

.hero-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  padding: 0 4px;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

.hero-mini-stat:first-child {
  border-left: none;
}

.hero-mini-value {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.hero-mini-label {
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: #A8A6A0;
}

.hero-tags {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .05);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #D6D4CE;
}

.hero-tag-icon {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

.hero-tag-ping {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.hero-tag-ping-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
}

.hero-tag-ping-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  opacity: .75;
  animation: heroPing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes heroPing {
  75%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

.hero-marquee-card {
  padding: 24px 0;
}

.hero-marquee-card h3 {
  margin: 0 0 18px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 600;
  color: #A8A6A0;
}

.hero-marquee-mask {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.hero-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: heroMarquee 34s linear infinite;
}

.hero-brand-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: .55;
}

/* No opacity transition: while the track keeps moving, a fade would trail
   behind the cursor and appear to light up the neighbouring logo. Snapping
   instantly means only the logo actually under the cursor brightens. */
.hero-brand-item:hover {
  opacity: 1;
}

.hero-brand-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .35));
}

/* White dot separator between brands. Horizontal margin sets the spacing,
   and being part of every unit keeps the -50% loop perfectly even. */
.hero-brand-sep {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  margin: 0 26px;
  border-radius: 50%;
  background: #fff;
  opacity: .55;
}

.hero-brand-dot {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes heroMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #E4D7B4;
  background: transparent;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12.5px;
  color: #fff;
  margin-bottom: 26px;
  box-shadow: 0 1px 2px #0000000a;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 22px;
  color: #fff;
}

.hero-sub {
  font-size: 18.5px;
  color: #EDEDED;
  max-width: 540px;
  margin-bottom: 34px;
}

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

.hero-actions .btn-lg:first-child:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px #E4B65B88;
}

.icon-wa {
  width: 18px;
  height: 18px;
  color: #25D366;
  flex-shrink: 0;
}

.hero-img-box {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: repeating-linear-gradient(45deg, #F1EFE9, #F1EFE9 16px, #EAE7DF 16px, #EAE7DF 32px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-box picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  animation: heroKenBurns 20s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.02);
  }
}

.hero-placeholder {
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
}

.hero-placeholder span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12.5px;
  color: #9c968a;
  letter-spacing: 0.04em;
  padding: 9px 13px;
  border: 1px dashed #C9C3B5;
  border-radius: 6px;
  background: #ffffffcc;
}

/* ── FAIXA INSTITUCIONAL (single-line strip inside the hero) ── */
.hero-strip {
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  background: rgba(24, 24, 27, .82);
  border-top: 1px solid rgba(255, 255, 255, .08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 13px var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.strip-inner p {
  font-size: 14px;
  color: #EDEDED;
  font-weight: 500;
  line-height: 1.4;
  max-width: 820px;
}

.strip-icon {
  width: 17px;
  height: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── FLEET ── */
.fleet-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 1px 3px #0000000a;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.fleet-card:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 32px -18px #E4B65B66;
  transform: translateY(-5px);
}

.fleet-img {
  aspect-ratio: 16/11;
  background: repeating-linear-gradient(45deg, #F3F1EB, #F3F1EB 11px, #ECE9E1 11px, #ECE9E1 22px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  padding: 14px;
  position: absolute;
  inset: 0;
}

.fleet-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10.5px;
  font-weight: 600;
  color: #9a6c20;
  background: #fff;
  border: 1px solid #E4D7B4;
  padding: 3px 9px;
  border-radius: 999px;
  z-index: 1;
}

.fleet-ph {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: #a8a296;
}

.fleet-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  /* Fixed floor for the closed state (title + label + first version row) so
     every card lines up exactly, independent of font-metric/render nuances
     between cards — the open accordion still grows past this freely. */
  min-height: 128px;
}

.fleet-body h3 {
  font-size: 17px;
  margin-bottom: 4px;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fleet-versions-label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.fleet-versions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fleet-versions-toggle {
  appearance: none;
  background: none;
  border: none;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 5px;
  margin: 0 0 0 auto;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--gold);
  transition: color .2s;
}

.fleet-versions-toggle:hover {
  color: var(--gold-hover);
}

.fleet-versions-chevron {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.fleet-versions-toggle[aria-expanded="true"] .fleet-versions-chevron {
  transform: rotate(180deg);
}

.fleet-versions-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}

.fleet-versions-collapse.open {
  grid-template-rows: 1fr;
}

.fleet-versions-collapse .fleet-versions {
  overflow: hidden;
  min-height: 0;
  padding-top: 10px;
}

.fleet-versions li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #fff;
  line-height: 1.4;
}

.fleet-versions li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.fleet-versions li.fleet-versions-first {
  align-items: center;
  flex-wrap: nowrap;
}

.fleet-versions-first-text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
}

.fleet-note {
  text-align: center;
  font-size: 14px;
  color: #9c968a;
  margin-top: 36px;
}

.fleet-note a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
}

.fleet-note a:hover {
  text-decoration: underline;
}

/* ── FLEET TABS ── */
.fleet-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.fleet-tabs::-webkit-scrollbar {
  display: none;
}

.fleet-tab {
  flex: 0 0 auto;
  appearance: none;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  padding: 12px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
}

.fleet-tab:hover {
  color: #1A1A1A;
}

.fleet-tab.active {
  color: var(--gold-dark);
  border-bottom-color: var(--gold);
}

/* ── FLEET CAROUSEL ── */
.fleet-carousel {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fleet-track-viewport {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.fleet-track-viewport::-webkit-scrollbar {
  display: none;
}

.fleet-track-viewport.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.fleet-track {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 4px 4px 14px;
  transition: opacity .32s cubic-bezier(.16, .8, .3, 1), transform .32s cubic-bezier(.16, .8, .3, 1);
}

.fleet-track.switching {
  opacity: 0;
  transform: translateX(14px) scale(.98);
}

.fleet-carousel .fleet-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
}

.fleet-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s, opacity .2s;
}

.fleet-arrow svg {
  width: 20px;
  height: 20px;
}

.fleet-arrow:hover:not(:disabled) {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.fleet-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.fleet-arrow[hidden] {
  display: none;
}

/* ── STEPS ── */
.step-num {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700;
  font-size: 12px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  border: 2px solid #FBFAF8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -2px;
  right: -2px;
  z-index: 2;
  transition: transform .2s;
}

.tl-step:hover .step-num {
  transform: scale(1.1);
}

/* ── TIMELINE ── */
.timeline {
  display: flex;
  position: relative;
  padding-top: 8px;
}

.tl-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 16px;
  transition: transform .2s;
}

.tl-step:hover {
  transform: translateY(-3px);
}

.tl-step:nth-child(even) {
  margin-top: 28px;
}

.tl-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  width: 100%;
  height: 0;
  border-top: 2px dashed var(--gold-dark);
  z-index: 0;
}

.tl-step:not(:last-child)::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 100%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
  z-index: 0;
  box-shadow: 0 0 0 4px #FBFAF8;
}

.tl-icon-box {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 0 0 6px #E4B65B15;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: box-shadow .2s;
}

.tl-step:hover .tl-icon-box {
  box-shadow: 0 12px 28px -10px #E4B65B55, 0 0 0 6px #E4B65B1f;
}

.tl-icon-box svg {
  width: 28px;
  height: 28px;
}

.tl-step-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tl-step-body p {
  font-size: 15.5px;
  color: #27272A;
  font-weight: 500;
}

/* ── COMPARE ── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  border-radius: 18px;
  padding: 34px 30px;
}

.compare-bad {
  background: #1E1E22;
  border: 1px solid #2C2C30;
}

.compare-good {
  background: linear-gradient(#23200f, #1c1a10);
  border: 1px solid #E4B65B66;
  box-shadow: 0 20px 50px -24px #E4B65B55;
}

.compare-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.compare-title h3 {
  font-size: 20px;
}

.compare-bad .compare-title h3 {
  color: #D4D4D8;
}

.compare-icon-x {
  width: 22px;
  height: 22px;
  color: #8a8a92;
  flex-shrink: 0;
}

.compare-logo {
  height: 24px;
  width: auto;
}

.compare-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15px;
  line-height: 1.45;
}

.compare-bad li {
  color: #A1A1AA;
}

.compare-good li {
  color: #EDEDED;
  font-weight: 500;
}

.icon-x {
  color: #6f6f76;
  flex-shrink: 0;
  margin-top: 1px;
}

.icon-check {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── FAQ ── */
.faq-section {
  max-width: 840px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px #0000000a;
}

.faq-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Inter Tight', sans-serif;
}

.faq-q {
  font-size: 16.5px;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: -0.01em;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 18px;
  transition: transform .25s;
  line-height: 1;
}

.faq-icon.open {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}

.faq-answer.open {
  padding: 0 24px 22px;
  max-height: 400px;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 4px 16px -8px #00000018;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #27272A;
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: #1A1A1A;
  padding: 12px 14px;
  border: 1px solid #DDD8CC;
  border-radius: 9px;
  background: #FBFAF8;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #E4B65B22;
}

.form-group textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.icon-wa-sm {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-note {
  font-size: 12px;
  color: #9c968a;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 1px 3px #0000000a;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #E4B65B1f;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-label {
  font-size: 13px;
  color: #9c968a;
  font-weight: 500;
}

.info-value {
  font-size: 14.5px;
  color: #27272A;
  font-weight: 500;
  margin-top: 2px;
  line-height: 1.5;
}

.info-link {
  font-size: 14.5px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-top: 2px;
  text-decoration: none;
  display: block;
}

.info-link:hover {
  text-decoration: underline;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.address-item {
  font: inherit;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
  color: #27272A;
  background: none;
  border: none;
  border-radius: 8px;
  padding: 4px 6px 4px 0;
  margin: 2px -6px 0 -6px;
  text-align: left;
  cursor: pointer;
  transition: color .15s ease, background-color .15s ease;
}

.address-item:hover {
  color: var(--gold-dark);
}

.address-item.is-active {
  color: var(--gold-dark);
  background: #E4B65B1f;
  padding-left: 6px;
  margin-left: -6px;
}

.map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px -18px #00000033;
  min-height: 240px;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  height: 240px;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

/* ── FOOTER ── */
.footer {
  background: #161616;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px var(--px) 36px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand img {
  height: 100px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 13px;
  color: #8a8a92;
  line-height: 1.7;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #2c2c2c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.social-wa:hover {
  border-color: #25D366;
  color: #25D366;
}

.footer-bottom {
  border-top: 1px solid #272727;
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-bottom p {
  font-size: 12px;
  color: #5f5f66;
  line-height: 1.7;
  max-width: 760px;
}

.footer-bottom p:last-child {
  color: #4a4a50;
  white-space: nowrap;
}

/* ── FAB WHATSAPP ── */
@keyframes pulseWa {

  0%,
  100% {
    box-shadow: 0 8px 24px -6px #1faf5466, 0 0 0 0 #25D36655;
  }

  50% {
    box-shadow: 0 8px 24px -6px #1faf5488, 0 0 0 12px #25D36600;
  }
}

.fab-wa {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  animation: pulseWa 2.6s ease-in-out infinite;
  transition: background .2s, transform .2s;
}

.fab-wa svg {
  width: 30px;
  height: 30px;
}

.fab-wa:hover {
  background: #1faf54;
  transform: scale(1.06);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --px: 20px;
  }

  /* Timeline vertical no mobile */
  .timeline {
    flex-direction: column;
    padding-left: 16px;
  }

  .tl-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 36px 0;
    gap: 20px;
    margin-top: 0;
  }

  .tl-step:nth-child(even) {
    margin-top: 0;
  }

  .tl-step:not(:last-child)::after {
    top: 72px;
    bottom: 0;
    left: 36px;
    width: 2px;
    height: auto;
    border-top: none;
    background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  }

  .tl-step:not(:last-child)::before {
    content: none;
  }

  .tl-icon-box {
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .tl-step-body {
    align-items: flex-start;
    padding-top: 14px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px var(--px);
    width: 100%;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
    padding: 64px var(--px) 72px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-side {
    width: 100%;
  }

  .hero-stats-card {
    display: none;
  }

  .strip-inner p {
    font-size: 12.5px;
  }

  .hero-scrim {
    background:
      linear-gradient(180deg, #18181BE6 0%, #18181BB3 30%, #18181B80 55%, #18181B4D 75%, #18181B33 100%),
      linear-gradient(90deg, #18181B33 0%, transparent 25%, transparent 75%, #18181B33 100%);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .fleet-carousel {
    gap: 8px;
  }

  .fleet-carousel .fleet-card {
    flex-basis: 84%;
    min-width: 0;
    max-width: 84%;
  }

  .fleet-arrow {
    width: 36px;
    height: 36px;
  }

  .fleet-arrow svg {
    width: 16px;
    height: 16px;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-container {
    padding: 64px var(--px);
  }
}

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

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  .fleet-carousel .fleet-card {
    flex-basis: 88%;
    max-width: 88%;
  }
}