:root {
  --orange: #ff6a00;
  --orange-dark: #e05a00;
  --orange-light: #ffe8d6;
  --black: #15151a;
  --gray-900: #1f1f24;
  --gray-700: #45454c;
  --gray-300: #d8d8de;
  --gray-100: #f5f5f7;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --font-heading: "Poppins", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  z-index: 999;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 106, 0, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-300);
}
.btn-outline:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.btn-whatsapp {
  background: var(--black);
  color: var(--white);
}
.btn-whatsapp:hover { background: var(--orange); }

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.2s ease;
}
.header.is-scrolled { box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 76px;
}

.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; border-radius: 10px; }
.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--black);
  letter-spacing: 0.5px;
}
.logo-text strong { color: var(--orange); }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav a { color: var(--gray-700); transition: color 0.15s ease; }
.nav a:hover { color: var(--orange); }

.header .btn-whatsapp { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  width: 100%;
  height: 2px;
  background: var(--black);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.25), transparent 55%), var(--black);
  color: var(--white);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.eyebrow {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-sub {
  color: var(--gray-300);
  font-size: 1.05rem;
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-outline { color: var(--white); border-color: rgba(255, 255, 255, 0.35); }
.hero .btn-outline:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--orange-dark);
}

.hero-foto {
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.hero-foto img { width: 100%; height: 100%; object-fit: cover; }
.hero-foto.sem-foto::before,
.moto-foto.sem-foto::before,
.moto-foto:empty::before {
  content: "📷 Foto em breve";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  font-size: 0.95rem;
  text-align: center;
}
.moto-foto.sem-foto::before { color: var(--gray-700); }

.trust-bar {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 18px 24px;
  background: var(--gray-900);
  color: var(--gray-300);
  font-size: 0.88rem;
  font-weight: 500;
}

.section { padding: 88px 0; }
.section-alt { background: var(--gray-100); }

.section-tag {
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 0.82rem;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 960px;
}
.section-sub {
  color: var(--gray-700);
  font-size: 1.05rem;
  max-width: min(100%, 960px);
  margin-bottom: 32px;
  text-align: justify;
  text-wrap: pretty;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.sobre-texto { font-size: 1.05rem; color: var(--gray-700); }

.stats { display: flex; flex-direction: column; gap: 20px; }
.stat-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
}
.stat-item strong { font-size: 1.6rem; color: var(--orange); font-family: var(--font-heading); }
.stat-item span { color: var(--gray-700); font-size: 0.9rem; }

.bloco-grid {
  display: grid;
  grid-template-columns: minmax(0, 740px) minmax(300px, 340px);
  justify-content: space-between;
  gap: 48px;
  align-items: center;
}
.bloco-texto .section-title { max-width: none; }
.bloco-sub { color: var(--gray-700); margin-bottom: 22px; font-size: 1.02rem; }

.bloco-video {
  aspect-ratio: 9 / 16;
  max-width: 340px;
  width: 100%;
  margin: 0 0 0 auto;
  background: var(--black);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bloco-video iframe { width: 100%; height: 100%; border: 0; display: block; }

.lista-check { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; }
.lista-check li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
}
.lista-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.locacao-intro {
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
  max-width: 820px;
}
.locacao-intro p { color: var(--gray-900); font-size: 1.02rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding-left: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 26px 20px;
}

.steps li::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}

.steps h3 { font-size: 1.05rem; margin-bottom: 6px; }
.steps p { color: var(--gray-700); font-size: 0.92rem; }

.disclaimer {
  color: var(--gray-700);
  font-size: 0.85rem;
  font-style: italic;
  margin-top: 18px;
}

.tabela-wrap { overflow-x: auto; }
.tabela-comparativa {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 620px;
}
.tabela-comparativa th, .tabela-comparativa td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-300);
  font-size: 0.95rem;
}
.tabela-comparativa thead th {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-heading);
}
.tabela-comparativa thead th:nth-child(3) { color: var(--orange); }
.tabela-comparativa tbody td:first-child { font-weight: 600; color: var(--gray-700); }
.tabela-comparativa tbody tr:last-child td { border-bottom: none; }

.decisao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.decisao-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, color 0.25s ease;
}
.decisao-card--destaque {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.decisao-card--destaque .lista-check li { color: var(--gray-300); }
.decisao-card h3 { font-size: 1.4rem; margin-bottom: 18px; transition: color 0.25s ease; }
.decisao-card .btn { margin-top: auto; align-self: flex-start; }

.decisao-card:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-4px);
}
.decisao-card:hover h3,
.decisao-card:hover .decisao-icone { color: var(--white); stroke: var(--white); }
.decisao-card:hover .lista-check li,
.decisao-card:hover .lista-check li::before { color: var(--white); }
.decisao-card:hover .btn-primary {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: none;
}
.decisao-card:hover .btn-primary:hover { background: var(--gray-100); }

.showroom-filtros {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px);
  gap: 14px;
  margin-bottom: 24px;
}
.showroom-filtros input, .showroom-filtros select {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  color: var(--gray-900);
  font: inherit;
  padding: 13px 16px;
  width: 100%;
}
.motos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.showroom-ver-mais {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 4px;
}

.showroom-stack {
  display: grid;
  gap: 56px;
}

.showroom-bloco {
  scroll-margin-top: 96px;
}

.showroom-cta {
  text-align: center;
  margin-top: 32px;
}

/* Links de SEO puros para o Googlebot indexar /motos/:slug direto; não são conteúdo para o visitante humano. */
.showroom-seo-links {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.moto-card--highlight {
  border-color: var(--orange);
  box-shadow: 0 18px 40px rgba(255, 106, 0, 0.22);
  transform: translateY(-4px);
}

.motos-grid-status {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-700);
}
.estoque-vazio {
  grid-column: 1 / -1;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 56px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.estoque-vazio-icone { display: block; width: 52px; height: 52px; margin: 0 auto 16px; }
.estoque-vazio h3 { font-size: 1.2rem; margin-bottom: 10px; }
.estoque-vazio p { color: var(--gray-700); margin-bottom: 22px; }
.moto-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.moto-card-link-completo {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.moto-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.13);
  border-color: var(--orange);
}
.moto-foto {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.moto-foto img { width: 100%; height: 100%; object-fit: cover; object-position: var(--foto-x, 50%) var(--foto-y, 50%); transform: scale(var(--foto-escala, 1)); transform-origin: var(--foto-x, 50%) var(--foto-y, 50%); transition: transform 0.25s ease; }

.moto-card h3 { font-size: 1.1rem; margin: 16px 20px 0; }
.moto-badge {
  margin: 16px 20px 0;
  align-self: flex-start;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.moto-specs {
  display: flex;
  gap: 12px;
  margin: 10px 20px 0;
  color: var(--gray-700);
  font-size: 0.85rem;
  flex-wrap: wrap;
}
.moto-specs li::after { content: "•"; margin-left: 12px; color: var(--gray-300); }
.moto-specs li:last-child::after { content: ""; }
.moto-preco {
  margin: 16px 20px 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 1rem;
}
.moto-preco strong { color: var(--orange-dark); font-size: 1.2rem; }
.moto-preco span { display: block; color: var(--gray-700); font-size: 0.82rem; }
.moto-card .btn { margin: 18px 20px 20px; position: relative; z-index: 2; }


.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.diferencial-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-300);
}
.icon-diferencial {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.decisao-icone {
  display: block;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.decisao-card--destaque .decisao-icone { stroke: var(--orange); }
.whatsapp-float svg { display: block; width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.diferencial-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.diferencial-item p { color: var(--gray-700); font-size: 0.92rem; }

.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 760px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 700;
  margin-left: 12px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { color: var(--gray-700); margin-top: 12px; font-size: 0.95rem; }

.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contato-info p { color: var(--gray-700); }
.contato-info strong { color: var(--black); }
.contato-info a.js-wa { color: var(--orange-dark); font-weight: 600; transition: color 0.15s ease; }
.contato-info a.js-wa:hover { color: var(--black); }
.contato-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}
.contato-icone {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 50%;
  background: var(--orange-light);
  color: var(--orange-dark);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.redes { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; font-weight: 600; }
.redes a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange-dark);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.redes a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.redes svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.redes a[href*="facebook"] svg { fill: currentColor; stroke: none; }

.mapa-embed {
  aspect-ratio: 4 / 3;
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  overflow: hidden;
}
.mapa-embed iframe { width: 100%; height: 100%; display: block; }

.footer { background: var(--black); color: var(--gray-300); padding: 56px 0 0; }
.footer .logo-text { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--white); margin-bottom: 6px; font-size: 1rem; }
.footer-col p { font-size: 0.9rem; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--gray-700);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.whatsapp-float:hover { background: var(--black); color: #25d366; transform: scale(1.08); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 48px; }
  .hero-foto { order: -1; }
  .sobre-grid, .bloco-grid, .contato-grid { grid-template-columns: 1fr; }
  .bloco-video { order: -1; margin: 0 auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .decisao-grid { grid-template-columns: 1fr; }
  .motos-grid { grid-template-columns: repeat(2, 1fr); }
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 24px 22px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 10px 0; width: 100%; }
  .header .btn-whatsapp { display: none; }
  .nav-toggle { display: flex; }

  .steps { grid-template-columns: 1fr; }
  .showroom-filtros { grid-template-columns: 1fr; }
  .motos-grid { grid-template-columns: 1fr; }
  .diferenciais-grid { grid-template-columns: 1fr; }
  .trust-bar { gap: 16px; font-size: 0.8rem; }
  .section { padding: 64px 0; }
}


@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .header-inner { height: 68px; gap: 14px; }
  .logo-img { height: 44px; border-radius: 9px; }
  .nav { top: 68px; padding: 14px 20px 18px; }
  .nav-toggle { margin-left: auto; }
  .hero-inner { gap: 28px; padding-top: 34px; padding-bottom: 36px; }
  .hero h1 { font-size: clamp(1.85rem, 9vw, 2.35rem); }
  .hero-sub, .section-sub { font-size: 1rem; }
  .hero-ctas, .showroom-cta { align-items: stretch; display: flex; flex-direction: column; }
  .btn { width: 100%; white-space: normal; text-align: center; }
  .trust-bar { justify-content: flex-start; padding: 16px 20px; }
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(1.45rem, 7vw, 2rem); }
  .showroom-stack { gap: 42px; }
  .showroom-bloco { scroll-margin-top: 82px; }
  .estoque-vazio { padding: 34px 18px; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 54px; height: 54px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .section { padding: 42px 0; }
  .hero-inner { padding-top: 28px; }
  .moto-card .btn { margin: 16px 16px 18px; }
  .moto-card h3, .moto-badge, .moto-specs, .moto-preco { margin-left: 16px; margin-right: 16px; }
}

.moto-preco .moto-preco-principal {
  color: var(--orange-dark);
  display: block;
  font-size: clamp(1.45rem, 4vw, 1.9rem);
  font-weight: 900;
  line-height: 1.15;
}
.moto-preco .moto-preco-prefixo { color: var(--gray-900); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.moto-preco .moto-preco-parcelado {
  color: var(--gray-900);
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: 4px;
}
.moto-preco .moto-preco-parcelado-destaque {
  color: var(--orange-dark);
  display: block;
  font-size: clamp(1.35rem, 3.6vw, 1.75rem);
  font-weight: 900;
  line-height: 1.15;
}
@media (max-width: 480px) {
  .motos-grid { grid-template-columns: 1fr; gap: 22px; }
  .moto-card { min-width: 0; width: 100%; }
  .moto-card .btn { box-sizing: border-box; margin-left: 20px; margin-right: 20px; width: calc(100% - 40px); }
  .moto-specs, .moto-preco, .moto-card h3 { min-width: 0; overflow-wrap: anywhere; }
}

.moto-landing-seo {
  padding: 104px 0 42px;
  background: linear-gradient(180deg, #fff 0%, var(--gray-100) 100%);
}
.moto-landing-seo-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}
.moto-landing-seo-media {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--gray-900), var(--black));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  min-height: 280px;
}
.moto-landing-seo-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  pointer-events: none;
}
.moto-landing-seo-media img {
  width: 100%;
  height: 100%;
  max-height: 440px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.moto-landing-seo-media span {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  text-align: center;
  padding: 28px;
}
.moto-landing-seo-content { max-width: 560px; }
.moto-landing-seo-content h1 { font-size: clamp(2.2rem, 5vw, 4.4rem); margin: 8px 0 16px; letter-spacing: -0.05em; }
.moto-landing-seo-content p { color: var(--gray-700); font-size: 1.08rem; margin-bottom: 24px; }
.moto-landing-seo-content dl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 28px; }
.moto-landing-seo-content dl div { background: var(--white); border: 1px solid var(--gray-300); border-radius: 16px; padding: 14px 16px; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04); }
.moto-landing-seo-content dt { color: var(--gray-700); font-size: 0.78rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.moto-landing-seo-content dd { font-weight: 800; color: var(--gray-900); }
@keyframes motoHighlightPulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(255, 106, 0, 0.22); transform: translateY(-4px) scale(1); }
  50% { box-shadow: 0 26px 70px rgba(255, 106, 0, 0.44); transform: translateY(-8px) scale(1.025); }
}
.moto-card--highlight { animation: motoHighlightPulse 1s ease-in-out 5; }

@media (max-width: 860px) {
  .moto-landing-seo-card { grid-template-columns: 1fr; }
  .moto-landing-seo-content dl { grid-template-columns: 1fr; }
}
