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

:root {
  --orange:      #F26522;
  --orange-dk:   #d95515;
  --green:       #22aa50;
  --navy:        #1B3050;
  --navy-lt:     #1E3A60;
  --gray-bg:     #EDEDED;
  --gray-card:   #EFEFEF;
  --text-muted:  #999;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

/* ─── TOP ACCENT BAR ─── */
.top-bar { height: 5px; background: var(--orange); }

/* ─── NAVBAR ─── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 48px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
}

.logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }

.logo-wordmark {
  font-size: 32px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-wordmark .logo-m { color: var(--orange); }

.logo-sub {
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #aaa;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  transition: color .2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  border-radius: 2px;
  transition: width .35s cubic-bezier(.22,.6,.36,1);
}

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

.nav-links a.active {
  color: var(--orange);
}

.nav-links a.active::after {
  width: 100%;
}

.btn-nav {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
}

.btn-nav:hover { background: var(--orange-dk); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 20px;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-top: 1px solid #f0f0f0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s;
}

.mobile-menu a:hover { color: var(--orange); }

.mobile-menu .btn-nav {
  margin-top: 4px;
  text-align: center;
  justify-content: center;
  border-bottom: none;
  padding: 10px 20px;
}

/* ─── HERO ─── */
.hero {
  background: #fff;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 0;
  isolation: isolate;
  z-index: 0;
}

.hero-inner {
  display: flex;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px 0;
  width: 100%;
}

.hero-arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.arrow-shape {
  width: 48px;
  height: 52px;
  background: var(--orange);
  clip-path: polygon(0 0, 58% 0, 100% 50%, 58% 100%, 0 100%);
}

.hero-text {
  flex: 0 0 42%;
  position: relative;
  z-index: 3;
  padding-left: 72px;
  padding-bottom: 32px;
}

.hero-text h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  text-wrap: balance;
  margin-bottom: 20px;
}

.hero-text h1 .orange { color: var(--orange); }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.badge {
  background: rgba(242,101,34,0.08);
  border: 1px solid rgba(242,101,34,0.2);
  color: var(--orange);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  align-self: stretch;
  position: relative;
}

.hero-moto-wrap {
  width: 100%;
  max-width: 100%;
  position: relative;
  margin-left: -48px;
}

.hero-moto-bg {
  width: 100%;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: visible;
  position: relative;
}

.hero-price-pill {
  position: absolute;
  right: 36px;
  bottom: 38px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2px;
  box-shadow: 0 12px 26px rgba(242,101,34,0.28);
  white-space: nowrap;
}

.hero-moto-svg {
  width: 85%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.12));
  position: relative;
  z-index: 1;
}

.hero-moto-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: left bottom;
  display: block;
}

/* ─── HERO FOOTER ─── */
.hero-footer {
  background: #fff;
  display: flex;
  justify-content: center;
  padding: 18px 0 20px;
}

.btn-hero {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 36px;
  border-radius: 26px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .2s, box-shadow .2s;
  text-decoration: none;
  display: inline-block;
  min-height: 44px;
}

.btn-hero:hover {
  background: var(--orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(242,101,34,0.35);
}

.orange-divider {
  height: 11px;
  background: var(--orange);
}

/* ─── NOSSAS MOTOS ─── */
.motos-section {
  background: #fff;
  padding: 52px 48px 28px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 34px;
}

.motos-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 560px;
  margin: -22px auto 36px;
  line-height: 1.6;
}

/* ─── ONDE ESTAMOS ─── */
.cidades-section {
  background: transparent;
  padding: 0 48px 48px;
  position: relative;
  overflow: hidden;
}

.cidades-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 560px;
  margin: -22px auto 32px;
  line-height: 1.6;
}

.cidades-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto 18px;
  padding: 12px 0;
}

.cidades-slider {
  flex: 1;
  background: transparent;
  overflow: hidden;
  padding: 28px 0;
}

.cidades-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: cidades-marquee 45s linear infinite;
}

.cidades-slider-wrap:hover .cidades-track {
  animation-play-state: paused;
}

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

.cidades-arrow,
.cidades-dots {
  display: none !important;
}

.cidades-track .oe-card {
  width: 260px;
  min-width: 260px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: 3px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-sizing: border-box;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.cidades-track .oe-card.on {
  border-color: rgba(31,157,77,0.2);
  border-top-color: #1f9d4d;
  box-shadow: 0 6px 24px rgba(31,157,77,0.1);
}

.cidades-track .oe-card.soon {
  border-top-color: rgba(242,101,34,0.4);
}

.cidades-track .oe-card:hover { transform: translateY(-4px); box-shadow: 0 6px 18px rgba(0,0,0,0.07); }
.cidades-track .oe-card.on:hover { box-shadow: 0 6px 18px rgba(0,0,0,0.07); }
.cidades-track .oe-card.on .oe-card-btn.primary { background: #1f9d4d; }
.cidades-track .oe-card.on .oe-card-btn.primary:hover { background: #178a40; box-shadow: 0 6px 14px rgba(31,157,77,0.35); }

.oe-card-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 14px;
  align-self: flex-start;
}
.oe-card-status.on   { background: rgba(34,170,80,0.1); color: #1f9d4d; }
.oe-card-status.soon { background: rgba(242,101,34,0.1); color: var(--orange); }

.oe-card-status .pulse {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 1.8s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.85); }
}

.oe-card-name {
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}
.oe-card-name .uf {
  color: var(--orange);
  font-size: 12px;
  margin-left: 4px;
  font-weight: 800;
}

.oe-card-note {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.45;
  flex: 1;
}

.oe-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 11px;
  text-decoration: none;
  margin-top: 4px;
  transition: background .2s, transform .2s, box-shadow .2s, color .2s;
  min-height: 34px;
  border: none;
  cursor: pointer;
}
.oe-card-btn.primary { background: var(--orange); color: #fff; }
.oe-card-btn.primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 6px 14px rgba(242,101,34,0.32); }
.oe-card-btn.secondary { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.oe-card-btn.secondary:hover { background: var(--orange); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 14px rgba(242,101,34,0.22); }

.cidades-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s, transform .15s;
}
.cidades-arrow:hover:not(:disabled) { border-color: var(--orange); background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(242,101,34,0.25); transform: scale(1.08); cursor: pointer; }
.cidades-arrow svg { width: 16px; height: 16px; }
.cidades-arrow:disabled { opacity: 0.28; cursor: default; }

.cidades-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}
.cidades-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  transition: background .2s, transform .2s;
}
.cidades-dot.active { background: var(--orange); transform: scale(1.2); }

.cidades-cta-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.btn-cidades-info {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(242,101,34,0.35);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn-cidades-info:hover {
  background: rgba(242,101,34,0.08);
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(242,101,34,0.18);
}

.btn-cidades-info svg {
  width: 13px;
  height: 13px;
  transition: transform .25s ease;
}

.btn-cidades-info:hover svg {
  transform: translateX(3px);
}

.cidades-ticker {
  position: relative;
  overflow: hidden;
  padding: 14px 0;
  background: rgba(242,101,34,0.06);
  border-top: 1px solid rgba(242,101,34,0.18);
  border-bottom: 1px solid rgba(242,101,34,0.18);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.cidades-ticker-strip {
  background: #fff;
  overflow: hidden;
}

.cidades-ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.cidades-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.cidades-ticker-item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.cidades-ticker-item.active {
  color: var(--green);
}

.cidades-ticker-item.active .dot {
  background: var(--green);
}

.cidades-ticker-item.muted {
  color: var(--text-muted);
  font-weight: 700;
}

.cidades-ticker-item.muted .dot {
  background: var(--orange);
}

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

/* ── Carousel de Motos ── */
.motos-carousel {
  max-width: 1120px;
  margin: 0 auto;
}

.carousel-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 14px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-track .moto-card {
  flex: 0 0 calc((100% - 14px) / 2);
  min-width: 0;
  cursor: pointer;
}

.carousel-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s, border-color .2s, transform .18s;
  padding: 0;
}

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #ddd;
  cursor: pointer;
  transition: background .25s, width .25s, border-radius .25s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--orange);
  width: 26px;
  border-radius: 5px;
}

/* ── Galeria de imagens interna do card ── */
.moto-img-multi .moto-photo {
  width: 80%;
  height: 80%;
  transition: opacity 0.25s ease;
}

.moto-img-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.moto-img-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background .2s, width .2s, border-radius .2s;
}

.moto-img-dot.active {
  background: #fff;
  width: 14px;
  border-radius: 3px;
}

/* ── Specs do card ── */
.moto-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  font-size: 9px;
  color: #555;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 6px;
}

.moto-specs li {
  padding-left: 11px;
  position: relative;
  line-height: 1.45;
}

.moto-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 8px;
}

.moto-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 18px;
}

.moto-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.moto-card-img svg {
  width: 78%;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.1));
}

.moto-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity .2s;
}

/* ─── Card duo (duas motos sobrepostas) ─── */
.moto-card-img.duo {
  overflow: visible;
}

.duo-photo {
  position: absolute;
  width: 90%;
  height: 96%;
  object-fit: contain;
  transition: transform .7s cubic-bezier(.4,0,.2,1),
              opacity .7s ease,
              filter .7s ease;
}

.duo-photo.duo-front {
  z-index: 2;
  opacity: 1;
  transform: translateX(-12%) translateY(-3%) scale(1.18);
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.18));
}

.duo-photo.duo-back {
  z-index: 1;
  opacity: 0.5;
  transform: translateX(14%) translateY(5%) scale(0.95);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
}

.moto-name-duo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.duo-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.3;
  transition: color .5s, font-size .5s, font-weight .3s;
}

.duo-label.active {
  font-size: 13.5px;
  font-weight: 900;
  color: var(--navy);
}

.moto-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}

.moto-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #333;
  text-align: center;
  line-height: 1.45;
}

.moto-price {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.moto-price strong {
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.btn-moto {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .18s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 108px;
  min-height: 40px;
}

.btn-moto:hover {
  background: var(--orange-dk);
  transform: translateY(-1px);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.transition-loader {
  width: min(210px, 76vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  transform: scale(.92);
  transition: transform .32s ease;
}

.transition-loader::before {
  content: '';
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(242,101,34,0.14);
  border-top-color: var(--orange);
  animation: loaderSpin .78s linear infinite;
}

.transition-loader::after {
  content: '';
  width: 88px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: loaderBar .9s ease-in-out infinite;
}

.transition-mark {
  color: var(--navy);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.2px;
}

.transition-mark span {
  color: var(--orange);
}

body.is-transitioning .page-transition {
  opacity: 1;
  pointer-events: auto;
}

body.is-transitioning .transition-loader {
  transform: scale(1);
}

body.is-transitioning .moto-card {
  transform: translateY(-2px);
}

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

@keyframes loaderBar {
  0%, 100% { opacity: .32; transform: scaleX(.45); }
  50% { opacity: 1; transform: scaleX(1); }
}

.motos-deco {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 22px 48px 0;
}

.deco-bar { height: 8px; border-radius: 4px; background: var(--orange); }
.deco-bar.left  { width: 160px; }
.deco-bar.right { width: 110px; }

/* ─── COMO FUNCIONA ─── */
.como-section {
  background: #fff;
  padding: 56px 48px 60px;
}

.como-section .section-title {
  color: var(--navy);
  margin-bottom: 10px;
}

.como-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* ── Flow layout (horizontal) ── */
.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 960px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  gap: 12px;
  padding: 0 4px;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(242,101,34,0.32);
}

.step-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.35;
}

.step-desc {
  font-size: 11px;
  color: #777;
  line-height: 1.6;
}

/* ── Pencil connector (horizontal) ── */
.connector-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 20px; /* align with icon center */
}

.connector-svg { display: block; overflow: visible; }

.connector-path {
  stroke: var(--orange);
  stroke-width: 2.6;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.connector-path-2 {
  stroke: var(--orange-dk);
  stroke-width: 1.3;
  stroke-linecap: round;
  fill: none;
  opacity: 0.32;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.connector-wrap.line-visible .connector-path {
  animation: drawLine 0.65s cubic-bezier(.4,0,.2,1) forwards;
}

.connector-wrap.line-visible .connector-path-2 {
  animation: drawLine 0.65s cubic-bezier(.4,0,.2,1) 0.07s forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* ── Snake (3 + 3) layout ── */
.steps-snake {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.steps-row-h {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.steps-snake .step-item {
  opacity: 0;
  transform: translateY(20px);
  transition: none;
}
.steps-snake .step-item.step-visible {
  animation: fadeUp 0.55s cubic-bezier(.22,.6,.36,1) forwards;
}

.steps-turn { width: 100%; display: block; }

.turn-path {
  stroke: var(--orange);
  stroke-width: 2.6;
  stroke-linecap: round;
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.turn-path-2 {
  stroke: var(--orange-dk);
  stroke-width: 1.3;
  stroke-linecap: round;
  fill: none;
  opacity: 0.32;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
.steps-turn.line-visible .turn-path {
  animation: drawLine 1.05s cubic-bezier(.4,0,.2,1) forwards;
}
.steps-turn.line-visible .turn-path-2 {
  animation: drawLine 1.05s cubic-bezier(.4,0,.2,1) 0.08s forwards;
}

/* ─── POR QUE A LOCMUSE ─── */
.porque-section {
  background: var(--orange);
  padding: 56px 48px 60px;
  position: relative;
  overflow: hidden;
}

.porque-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.porque-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.porque-section .section-title {
  color: #fff;
  margin-bottom: 10px;
}

.porque-subtitle {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 44px;
}

.porque-list {
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.porque-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.porque-item:last-child { border-bottom: none; }

/* Icon: starts scaled-down; pops in when parent gets .visible */
.porque-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transform: scale(0);
  box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
}

@keyframes iconPop {
  0%   { transform: scale(0);    opacity: 0; }
  55%  { transform: scale(1.18); opacity: 1; }
  75%  { transform: scale(0.94);            }
  100% { transform: scale(1);               }
}

@keyframes iconPulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,255,255,0.45); }
  70%  { box-shadow: 0 0 0 12px rgba(255,255,255,0);   }
  100% { box-shadow: 0 0 0 0   rgba(255,255,255,0);    }
}

.porque-item.visible .porque-icon {
  animation:
    iconPop   0.52s cubic-bezier(.34,1.56,.64,1) 0.18s forwards,
    iconPulse 2.4s  ease                         0.75s infinite;
}

.porque-text { flex: 1; padding-top: 4px; }

.porque-title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 3px;
}

.porque-title span {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  text-decoration-color: rgba(255,255,255,0.5);
}

.porque-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* ─── VANTAGENS ─── */
.vantagens-section {
  background: #0a0a0a;
  padding: 56px 48px 60px;
}

.vantagens-section .section-title {
  color: var(--orange);
  margin-bottom: 10px;
}

.vantagens-subtitle {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 40px;
}

.vantagens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  margin: 0 auto;
}

.vantagem-card {
  background: #181818;
  border-radius: 16px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(242,101,34,0.22);
  border-top: 3px solid var(--orange);
  transition: box-shadow .25s, border-color .25s;
}

.vantagem-card:hover {
  box-shadow: 0 8px 28px rgba(242,101,34,0.18);
  border-color: rgba(242,101,34,0.55);
  border-top-color: var(--orange-dk);
}

.vantagem-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.vantagem-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

.vantagem-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ─── FAQ ─── */
.faq-section {
  background: var(--gray-bg);
  padding: 56px 80px 64px;
}

.faq-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.faq-subtitle {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 34px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .2s;
}

.faq-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.07); }

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  gap: 14px;
}

.faq-question {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.faq-icon {
  flex-shrink: 0;
  color: #777;
  transition: transform .3s ease;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-item.open .faq-header { border-bottom: 1px solid #f0f0f0; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .36s ease;
}

.faq-item.open .faq-body { max-height: 220px; }

.faq-answer {
  padding: 14px 20px 18px;
  font-size: 12px;
  color: #666;
  line-height: 1.75;
}

/* ─── CTA ─── */
.cta-section {
  background: var(--orange);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  margin-bottom: 30px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.btn-assinar {
  background: #fff;
  color: var(--orange);
  border: none;
  padding: 14px 50px;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.btn-assinar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
}

/* ─── RODAPÉ ─── */
.footer {
  background: var(--navy);
  padding: 52px 48px 0;
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 38px;
}

.footer-logo {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.4px;
  line-height: 1;
  margin-bottom: 3px;
}

.footer-logo span { color: var(--orange); }

.footer-logo-sub {
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 240px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links li,
.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover { color: var(--orange); }

.footer-divider {
  max-width: 900px;
  margin: 0 auto;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.footer-legal {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px 0 30px;
}

.footer-legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  margin-bottom: 18px;
}

.footer-legal-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.legal-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.legal-value {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.2px;
}

.footer-legal-line {
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 16px;
  letter-spacing: 0.1px;
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
  text-align: center;
}

.footer-social {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.6);
  transition: color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none;
  box-sizing: border-box;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  display: block;
}

.footer-social a:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  transform: translateY(-2px);
}

.footer-social-soon {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  z-index: 900;
  transition: transform .2s, box-shadow .2s;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 24px rgba(37,211,102,0.55);
}

.whatsapp-btn svg { width: 28px; height: 28px; }

/* ─── MODAL CIDADE ─── */
.cidade-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cidade-modal-overlay.open { display: flex; }
.cidade-modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modalIn .25s cubic-bezier(.4,0,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(.94) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cidade-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f3f3f3;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background .2s, color .2s;
}
.cidade-modal-close:hover { background: #e0e0e0; color: #111; }
.cidade-modal-close svg { width: 16px; height: 16px; }
.cidade-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1db954;
}
.cidade-modal-badge.on { color: #1db954; }
.cidade-modal-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
}
.cidade-modal-uf { font-weight: 400; color: var(--text-muted); font-size: 18px; }
.cidade-modal-addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.cidade-modal-addr svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; color: var(--orange); }
.cidade-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.cidade-modal-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.cidade-modal-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cidade-modal-btn.maps { background: var(--orange); color: #fff; }
.cidade-modal-btn.maps:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,101,34,0.3); }
.cidade-modal-btn.wa { background: #25d366; color: #fff; }
.cidade-modal-btn.wa:hover { background: #1aab53; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(37,211,102,0.35); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .navbar { padding: 10px 28px; }
  .nav-links { gap: 18px; }
  .hero-inner { padding: 42px 28px 0; }
  .hero-text {
    flex-basis: 45%;
    padding-left: 34px;
  }
  .hero-text h1 { font-size: 34px; }
  .hero-moto-wrap { margin-left: -28px; }
  .motos-grid { max-width: 760px; }
  .footer-inner,
  .footer-divider,
  .footer-legal { max-width: 820px; }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 18px;
    min-height: 60px;
  }
  .logo-wordmark { font-size: 28px; }
  .logo-sub { font-size: 6.8px; letter-spacing: 1.35px; }
  .nav-links, .btn-nav.desktop { display: none; }
  .hamburger { display: flex; }
  .hamburger {
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #f7f7f7;
  }
  .mobile-menu {
    top: 65px;
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom));
    border-radius: 0 0 22px 22px;
  }
  .mobile-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    flex-direction: column;
    padding: 0;
    min-height: auto;
  }
  .hero-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 18px 0;
  }
  .hero-arrows { display: none; }
  .hero-text {
    padding: 0;
    flex: unset;
    width: 100%;
  }
  .hero-text h1 {
    font-size: 31px;
    line-height: 1.08;
    margin-bottom: 16px;
  }
  .hero-badges {
    gap: 8px;
    margin-top: 14px;
  }
  .badge {
    font-size: 10px;
    padding: 6px 10px;
  }
  .hero-visual {
    width: 100%;
    padding-top: 18px;
    justify-content: center;
  }
  .hero-moto-wrap {
    max-width: 100%;
    margin-left: 0;
  }
  .hero-moto-bg {
    min-height: 210px;
    align-items: center;
    justify-content: center;
  }
  .hero-price-pill {
    right: 10px;
    bottom: 24px;
    min-height: 36px;
    padding: 8px 12px;
    font-size: 11.5px;
  }
  .hero-moto-img {
    max-height: 280px;
    object-position: center bottom;
  }
  .hero-footer {
    padding: 12px 18px 22px;
  }
  .btn-hero {
    width: min(100%, 360px);
    text-align: center;
    padding: 14px 22px;
    border-radius: 16px;
    font-size: 13px;
  }

  .motos-section { padding: 36px 20px 18px; }
  /* 2 cards já é o padrão desktop — sem override necessário */
  .section-title { font-size: 22px; margin-bottom: 24px; }

  .cidades-section { padding: 0 16px 28px; }
  .cidades-slider-wrap { gap: 8px; padding: 8px 0; }
  .cidades-track .oe-card { width: 220px; min-width: 220px; }
  .cidades-track { animation-duration: 32s; }
  .moto-card {
    gap: 10px;
  }
  .moto-card-img {
    border-radius: 14px;
  }
  .btn-moto {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 14px;
  }

  .motos-deco { padding: 16px 20px 0; }
  .deco-bar.left  { width: 100px; }
  .deco-bar.right { width: 70px; }

  .como-section { padding: 44px 20px 40px; }
  .steps-row-h { flex-direction: column; align-items: center; gap: 24px; }
  .steps-row-h .connector-wrap { display: none; }
  .steps-turn { display: none; }

  .porque-section { padding: 44px 20px 48px; }
  .porque-list { max-width: 100%; }
  .porque-icon { width: 46px; height: 46px; }

  .vantagens-section { padding: 44px 20px 48px; }
  .vantagens-grid { grid-template-columns: 1fr 1fr; }

  .faq-section { padding: 44px 20px 52px; }
  .faq-title { font-size: 20px; }
  .faq-list { max-width: 100%; }

  .cta-section { padding: 52px 20px; }
  .cta-section h2 { font-size: 28px; }
  .cta-section p { font-size: 13px; }

  .footer { padding: 44px 20px 0; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding-bottom: 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-desc { max-width: 100%; }
  .footer-legal-grid { flex-direction: column; gap: 14px; }
  .footer-legal-line { text-align: left; }
  .whatsapp-btn {
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 640px) {
  .motos-section {
    padding: 34px 16px 18px;
  }
  .carousel-btn {
    width: 32px;
    height: 32px;
  }
  .carousel-btn svg {
    width: 14px;
    height: 14px;
  }
  .carousel-track .moto-card {
    flex: 0 0 100%;
  }
  .moto-card-img {
    aspect-ratio: 16 / 11;
  }
  .moto-name {
    font-size: 14px;
  }
  .moto-price {
    font-size: 12px;
  }
  .moto-price strong {
    font-size: 15px;
  }
  .btn-moto {
    width: 100%;
  }
  .porque-item {
    gap: 14px;
    padding: 16px 0;
  }
  .faq-header {
    padding: 15px 16px;
  }
  .faq-answer {
    padding: 13px 16px 17px;
  }
}

@media (max-width: 480px) {
  .hero-inner { padding: 24px 16px 0; }
  .hero-text h1 { font-size: 29px; }
  .vantagens-grid { grid-template-columns: 1fr; }
  .hero-badges { gap: 6px; }
  .cta-section h2 { font-size: 26px; }
  .btn-assinar {
    width: min(100%, 340px);
    padding: 14px 22px;
  }
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-links a,
  .footer-links li {
    font-size: 12.5px;
  }
}

/* ─── ANIMAÇÕES DE SCROLL ─── */
@keyframes fadeUp {
  from { opacity: 0; filter: blur(8px); transform: translate3d(0, 30px, 0) scale(.985); }
  to   { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; filter: blur(6px); }
  to   { opacity: 1; filter: blur(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; filter: blur(8px); transform: translate3d(-28px, 0, 0) scale(.99); }
  to   { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes fadeRight {
  from { opacity: 0; filter: blur(8px); transform: translate3d(28px, 0, 0) scale(.99); }
  to   { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes typingCursor {
  0%, 45% { opacity: 1; }
  46%, 100% { opacity: 0; }
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0);
  will-change: opacity, filter, transform;
}

.reveal.up   { opacity: 0; transform: translate3d(0, 28px, 0); }
.reveal.left { opacity: 0; transform: translate3d(-24px, 0, 0); }
.reveal.right{ opacity: 0; transform: translate3d(24px, 0, 0); }
.reveal.fade { opacity: 0; transform: none; }

.reveal.visible.up {
  animation: fadeUp .72s cubic-bezier(.16, 1, .3, 1) forwards;
}
.reveal.visible.left {
  animation: fadeLeft .72s cubic-bezier(.16, 1, .3, 1) forwards;
}
.reveal.visible.right {
  animation: fadeRight .72s cubic-bezier(.16, 1, .3, 1) forwards;
}
.reveal.visible.fade {
  animation: fadeIn .72s ease forwards;
}

.typewrite {
  position: relative;
}

.typewrite.is-typing::after {
  background: currentColor;
  border-radius: 999px;
  content: "";
  display: inline-block;
  height: .92em;
  margin-left: .08em;
  transform: translateY(.12em);
  width: 2px;
  animation: typingCursor .9s steps(1) infinite;
}

.typewrite.type-done::after {
  display: none;
}

.reveal { transition: none; }

/* ── Hero moto intro ── */
.moto-passando {
  position: absolute;
  bottom: 8px;
  left: 0;
  height: clamp(220px, 32vw, 380px);
  width: auto;
  z-index: 10;
  pointer-events: none;
  transform: translateX(-110%);
  will-change: transform, opacity;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.18));
}

.moto-passando.moto-run {
  animation: motoPassBy 2.2s cubic-bezier(0.2, 0.55, 0.4, 1) forwards;
}

@keyframes motoPassBy {
  0%   { transform: translateX(-110%); opacity: 1; }
  90%  { transform: translateX(calc(100vw + 60px)); opacity: 1; }
  100% { transform: translateX(calc(100vw + 60px)); opacity: 0; }
}

@media (max-width: 768px) {
  .moto-passando { display: none; }
}

.hero-visual { z-index: 3; }

.hero-footer {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.hero-footer.visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .typewrite::after {
    display: none !important;
  }
}
