:root {
  --black: #0a0a0a;
  --yellow: #F5C100;
  --yellow-dim: #c49a00;
  --white: #f0f0f0;
  --gray: #1a1a1a;
  --gray2: #2a2a2a;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
  transform: translate(-50%, -50%);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 60px;
  backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.7);
  border-bottom: 1px solid rgba(245,193,0,0.08);
  transition: all 0.3s;
}
.nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow); color: var(--black);
  padding: 10px 24px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--yellow-dim); transform: scale(1.04); }

/* HERO */
#hero {
  height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: flex-start;
  overflow: hidden;
  padding: 0 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(245,193,0,0.08) 0%, transparent 70%),
    linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,193,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,193,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 20s linear infinite;
}
@keyframes gridScroll {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245,193,0,0.1);
  border: 1px solid rgba(245,193,0,0.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.2} }

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: 0.92;
  letter-spacing: -1px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(--yellow); }
.hero-title .outline {
  -webkit-text-stroke: 2px var(--yellow);
  color: transparent;
}
.hero-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 18px; font-weight: 400;
  color: rgba(240,240,240,0.6);
  line-height: 1.6; margin: 28px 0 44px;
  max-width: 480px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 20px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-primary {
  background: var(--yellow); color: var(--black);
  padding: 16px 36px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--yellow-dim); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(240,240,240,0.25); color: var(--white);
  padding: 16px 36px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); }

.hero-right {
  position: absolute; right: 0; top: 0; height: 100%;
  width: 45%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-visual {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(245,193,0,0.04) 0%, transparent 60%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-moto-icon {
  font-size: 220px; opacity: 0.06;
  animation: float 6s ease-in-out infinite;
  user-select: none;
}
@keyframes float {
  0%,100%{transform:translateY(0) rotate(-3deg)}
  50%{transform:translateY(-20px) rotate(3deg)}
}

.hero-stat-row {
  position: absolute; bottom: 50px; left: 60px; right: 60px;
  display: flex; gap: 60px; z-index: 2;
  border-top: 1px solid rgba(245,193,0,0.1);
  padding-top: 30px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px; color: var(--yellow); line-height: 1;
}
.hero-stat .label {
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(240,240,240,0.4);
  margin-top: 4px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* MARQUEE */
.marquee-wrap {
  background: var(--yellow);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 0;
  animation: marquee 18s linear infinite;
}
.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 15px;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--black);
  padding: 0 40px;
}
.marquee-dot { color: rgba(0,0,0,0.3); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTION BASE */
section { padding: 120px 60px; }
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before {
  content: ''; width: 30px; height: 1.5px; background: var(--yellow);
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  margin-bottom: 20px;
}

/* SOBRE */
#sobre {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px;
  align-items: center;
}
.sobre-left .section-title .accent { color: var(--yellow); }
.sobre-text {
  font-size: 17px; line-height: 1.8;
  color: rgba(240,240,240,0.65);
  margin-top: 24px;
}
.sobre-text p + p { margin-top: 16px; }
.sobre-right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.sobre-card {
  background: var(--gray);
  border: 1px solid rgba(245,193,0,0.08);
  padding: 28px 24px; border-radius: 4px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.sobre-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.sobre-card:hover { border-color: rgba(245,193,0,0.25); transform: translateY(-4px); }
.sobre-card:hover::before { transform: scaleX(1); }
.sobre-card .icon { font-size: 32px; margin-bottom: 14px; }
.sobre-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 8px;
}
.sobre-card p {
  font-size: 13px; color: rgba(240,240,240,0.5);
  line-height: 1.6;
}

/* LIBERDADE (SEM CNH) */
#liberdade {
  background: var(--gray);
  text-align: center;
  border-top: 1px solid rgba(245,193,0,0.07);
  border-bottom: 1px solid rgba(245,193,0,0.07);
}
#liberdade .section-label { justify-content: center; }
#liberdade .section-label::before { display: none; }
#liberdade .section-label::after {
  content: ''; width: 30px; height: 1.5px; background: var(--yellow);
}
#liberdade .section-title { color: var(--white); }
#liberdade .section-title .accent { color: var(--yellow); }
.liberdade-sub {
  font-size: 18px; color: rgba(240,240,240,0.55);
  max-width: 580px; margin: 0 auto 60px; line-height: 1.7;
}
.liberdade-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.lib-card {
  background: var(--black);
  border: 1px solid rgba(245,193,0,0.1);
  border-radius: 4px; padding: 40px 30px;
  text-align: left; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.lib-card:hover { border-color: var(--yellow); transform: translateY(-6px); }
.lib-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px; color: rgba(245,193,0,0.07);
  position: absolute; top: 10px; right: 20px;
  line-height: 1;
}
.lib-icon { font-size: 36px; margin-bottom: 18px; }
.lib-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); margin-bottom: 12px;
}
.lib-card p { font-size: 14px; color: rgba(240,240,240,0.5); line-height: 1.7; }

/* GARANTIA */
#garantia {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.garantia-visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.garantia-circle {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(245,193,0,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  position: relative;
  animation: spinBorder 12s linear infinite;
}
@keyframes spinBorder {
  0% { box-shadow: 0 0 0 0 rgba(245,193,0,0.05), inset 0 0 0 0 rgba(245,193,0,0.05); }
  50% { box-shadow: 0 0 60px 10px rgba(245,193,0,0.06), inset 0 0 40px 0 rgba(245,193,0,0.03); }
  100% { box-shadow: 0 0 0 0 rgba(245,193,0,0.05), inset 0 0 0 0 rgba(245,193,0,0.05); }
}
.garantia-icon { font-size: 80px; }
.garantia-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px; color: var(--yellow); letter-spacing: 3px;
}
.garantia-ring {
  position: absolute; inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(245,193,0,0.08);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.garantia-dot {
  position: absolute; width: 10px; height: 10px;
  background: var(--yellow); border-radius: 50%;
  top: 4px; left: 50%; transform: translateX(-50%);
}

.garantia-right .section-title .accent { color: var(--yellow); }
.garantia-text {
  font-size: 17px; color: rgba(240,240,240,0.6);
  line-height: 1.8; margin: 24px 0 40px;
}
.garantia-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.garantia-list li {
  display: flex; align-items: center; gap: 16px;
  font-size: 15px; font-weight: 600;
  color: rgba(240,240,240,0.8);
}
.garantia-list li::before {
  content: '✓';
  width: 28px; height: 28px; min-width: 28px;
  background: rgba(245,193,0,0.1);
  border: 1px solid rgba(245,193,0,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow); font-size: 12px; font-weight: 900;
}

/* CURITIBA */
#curitiba {
  text-align: center;
  background: var(--black);
  padding: 100px 60px;
  position: relative; overflow: hidden;
}
.curitiba-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(245,193,0,0.05) 0%, transparent 70%);
}
#curitiba .section-label { justify-content: center; }
#curitiba .section-label::before { display: none; }
.curitiba-text {
  font-size: 19px; max-width: 620px;
  margin: 0 auto 60px; line-height: 1.8;
  color: rgba(240,240,240,0.6);
}
.curitiba-values {
  display: flex; justify-content: center; gap: 80px;
  flex-wrap: wrap;
}
.curitiba-val {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.curitiba-val .val-icon { font-size: 44px; }
.curitiba-val .val-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--yellow);
}
.curitiba-val .val-desc {
  font-size: 13px; color: rgba(240,240,240,0.4);
  max-width: 140px; text-align: center; line-height: 1.6;
}

/* CTA FINAL */
#cta {
  background: var(--yellow);
  text-align: center;
  padding: 100px 60px;
  position: relative; overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
#cta .section-title {
  color: var(--black); font-size: clamp(48px, 7vw, 100px);
  position: relative; z-index: 1;
}
.cta-sub {
  font-size: 18px; color: rgba(0,0,0,0.6);
  margin: 16px auto 44px; max-width: 480px; line-height: 1.6;
  position: relative; z-index: 1;
}
.btn-dark {
  background: var(--black); color: var(--yellow);
  padding: 18px 48px; border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  transition: all 0.25s;
  position: relative; z-index: 1;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

/* FOOTER */
footer {
  background: #050505;
  padding: 50px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(245,193,0,0.08);
  flex-wrap: wrap; gap: 24px;
}
footer img { height: 36px; }
.footer-text {
  font-size: 12px; color: rgba(240,240,240,0.25);
  letter-spacing: 1px;
}
.footer-links { display: flex; gap: 30px; }
.footer-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,240,240,0.3); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--yellow); }

/* CATÁLOGO */
#catalogo {
  background: var(--black);
  text-align: center;
  padding: 120px 60px;
}
#catalogo .section-label { justify-content: center; }
#catalogo .section-label::before { display: none; }
#catalogo .section-label::after {
  content: ''; width: 30px; height: 1.5px; background: var(--yellow);
}
#catalogo .section-title .accent { color: var(--yellow); }
.catalogo-sub {
  font-size: 18px; color: rgba(240,240,240,0.5);
  max-width: 500px; margin: 0 auto 60px; line-height: 1.7;
}
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.moto-card {
  background: var(--gray);
  border: 1px solid rgba(245,193,0,0.08);
  border-radius: 6px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.moto-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,193,0,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.moto-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--yellow); color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
  z-index: 2;
}
.moto-img-wrap {
  width: 100%; height: 220px;
  background: var(--gray2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.moto-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s;
}
.moto-card:hover .moto-img-wrap img { transform: scale(1.05); }
.moto-placeholder {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #222);
}
.moto-placeholder .ph-icon { font-size: 64px; opacity: 0.25; }
.moto-placeholder .ph-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(240,240,240,0.2);
}
.moto-body { padding: 24px; }
.moto-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 1px;
  color: var(--white); margin-bottom: 4px;
}
.moto-desc {
  font-size: 13px; color: rgba(240,240,240,0.45);
  line-height: 1.6; margin-bottom: 20px;
}
.moto-specs {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 22px;
}
.spec-item {
  background: rgba(245,193,0,0.05);
  border: 1px solid rgba(245,193,0,0.08);
  border-radius: 4px; padding: 10px 12px;
}
.spec-label {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,240,240,0.3); margin-bottom: 4px;
}
.spec-value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 15px;
  color: var(--yellow);
}
.moto-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(245,193,0,0.08);
}
.moto-preco {
  display: flex; flex-direction: column;
}
.moto-preco .label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(240,240,240,0.3);
}
.moto-preco .valor {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px; color: var(--yellow); line-height: 1;
}
.btn-wpp {
  background: #25D366; color: #fff;
  padding: 10px 18px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-wpp:hover { background: #1ebe5d; transform: scale(1.04); }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  section { padding: 80px 24px; }
  #hero { padding: 0 24px; }
  #sobre, #garantia { grid-template-columns: 1fr; gap: 50px; }
  .sobre-right { grid-template-columns: 1fr 1fr; }
  .liberdade-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-stat-row { left: 24px; right: 24px; gap: 30px; }
  .curitiba-values { gap: 40px; }
  .catalogo-grid { grid-template-columns: 1fr; }
  #catalogo { padding: 80px 24px; }
  footer { flex-direction: column; text-align: center; }
  .hero-title { font-size: 60px; }
}
