  :root {
    --black: #080808;
    --dark: #111111;
    --card: #181818;
    --border: #2a2a2a;
    --orange: #f97316;
    --orange-dim: #7c3a10;
    --orange-glow: rgba(249,115,22,0.15);
    --cream: #f0ebe0;
    --muted: #888;
    --white: #f5f5f5;
  }

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

  html { scroll-behavior: smooth; }

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

  /* GRAIN OVERLAY */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 0 5vw;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(8,8,8,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: 0.08em;
    color: var(--white);
  }
  .logo span { color: var(--orange); }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }
  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--orange); }

  .nav-cta {
    background: var(--orange);
    color: #000;
    border: none;
    padding: 9px 22px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }
  .nav-cta:hover { background: #ff8c3a; transform: translateY(-1px); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
  }

  .hero-divider {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--orange);
    transform: skewX(-3deg);
    z-index: 10;
    box-shadow: 0 0 30px rgba(249,115,22,0.5);
  }

  .hero-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 6vw;
    min-height: calc(100vh - 64px);
  }

  .hero-panel-left {
    background:
      linear-gradient(135deg, rgba(249,115,22,0.06) 0%, transparent 60%),
      var(--dark);
  }

  .hero-panel-right {
    background:
      linear-gradient(225deg, rgba(249,115,22,0.04) 0%, transparent 60%),
      #0f0f0f;
  }

  /* Geometric background shapes */
  .hero-panel-left::before {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(249,115,22,0.1);
    transform: rotate(45deg);
  }

  .hero-panel-right::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 20px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(249,115,22,0.06);
    transform: rotate(15deg);
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards;
  }
  .hero-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--orange);
  }

  .hero-headline {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(52px, 6vw, 88px);
    line-height: 0.92;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
  }

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

  .hero-sub {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 360px;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.2s forwards;
  }

  .hero-actions {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.3s forwards;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #000;
    padding: 16px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.2s;
    width: fit-content;
  }
  .btn-primary:hover {
    background: #ff8c3a;
    transform: translateX(4px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--white);
    padding: 15px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid var(--border);
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.2s;
    width: fit-content;
  }
  .btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateX(4px);
  }

  .hero-comision {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.4s forwards;
  }
  .comision-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--orange);
  }
  .comision-label {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
    font-weight: 300;
  }

  /* STATS BAR */
  .stats-bar {
    background: var(--orange);
    padding: 16px 5vw;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
  }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 26px;
    line-height: 1;
  }
  .stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.3;
  }
  .stat-sep {
    width: 1px;
    height: 32px;
    background: rgba(0,0,0,0.2);
  }

  /* SECTIONS */
  section {
    padding: 100px 5vw;
  }

  .section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }
  .section-tag::after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--orange);
  }

  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
  }

  .section-title em {
    font-style: italic;
    color: var(--orange);
  }

  .section-sub {
    font-size: 16px;
    color: var(--muted);
    font-weight: 300;
    max-width: 480px;
    line-height: 1.65;
  }

  /* HOW IT WORKS — SELLERS */
  .how-it-works {
    background: var(--dark);
    position: relative;
    overflow: hidden;
  }

  .how-it-works::before {
    content: 'VENDE';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 200px;
    color: rgba(249,115,22,0.04);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
  }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .step {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    cursor: default;
    transition: padding-left 0.3s;
  }
  .step:hover { padding-left: 8px; }
  .step:first-child { padding-top: 0; }
  .step:last-child { border-bottom: none; }

  .step-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: var(--orange-dim);
    line-height: 1;
    flex-shrink: 0;
    width: 52px;
    transition: color 0.3s;
  }
  .step:hover .step-num { color: var(--orange); }

  .step-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 6px;
    color: var(--white);
  }
  .step-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  .highlight-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 40px;
    position: relative;
    overflow: hidden;
  }

  .highlight-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--orange);
  }

  .highlight-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: var(--orange-glow);
    border-radius: 50%;
    pointer-events: none;
  }

  .highlight-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
  }

  .highlight-card h3 span { color: var(--orange); }

  .perks {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }

  .perk {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.5;
  }
  .perk-icon {
    width: 28px;
    height: 28px;
    background: var(--orange-glow);
    border: 1px solid var(--orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
  }

  /* BUYERS SECTION */
  .buyers {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .buyers::before {
    content: 'COMPRA';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 180px;
    color: rgba(249,115,22,0.03);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    pointer-events: none;
    line-height: 1;
  }

  .buyers-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }

  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px;
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
  }
  .benefit-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
  }

  .benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }
  .benefit-card:hover::after { transform: scaleX(1); }

  .benefit-icon {
    font-size: 28px;
    margin-bottom: 14px;
    display: block;
  }

  .benefit-card h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: var(--white);
  }

  .benefit-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 300;
  }

  /* SERVICES */
  .services {
    background: var(--dark);
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2px;
    margin-top: 60px;
    border: 1px solid var(--border);
  }

  .service-item {
    background: var(--card);
    padding: 36px 28px;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-item:hover { background: #1f1f1f; }

  .service-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
  }
  .service-item:hover::before { transform: scaleX(1); }

  .service-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: block;
  }

  .service-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: var(--white);
  }

  .service-item p {
    font-size: 13px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--orange);
    padding: 80px 5vw;
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,0.04) 20px,
      rgba(0,0,0,0.04) 21px
    );
  }

  .cta-section h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 80px);
    line-height: 0.95;
    text-transform: uppercase;
    color: #000;
    position: relative;
    letter-spacing: -0.01em;
  }

  .cta-section p {
    color: rgba(0,0,0,0.6);
    font-size: 16px;
    margin: 20px auto;
    max-width: 440px;
    font-weight: 300;
    position: relative;
  }

  .cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-top: 32px;
  }

  .btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 16px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.2s;
  }
  .btn-dark:hover {
    background: #111;
    transform: translateY(-2px);
  }

  .btn-outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #000;
    padding: 15px 32px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(0,0,0,0.4);
    cursor: pointer;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: all 0.2s;
  }
  .btn-outline-dark:hover {
    border-color: #000;
    transform: translateY(-2px);
  }

  /* CONTACT */
  .contact {
    background: var(--black);
    padding: 80px 5vw;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
  }

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

  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
  }
  .contact-item:last-child { border-bottom: none; }

  .contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--orange-glow);
    border: 1px solid var(--orange-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-item-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .contact-item-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
  }

  .contact-item-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-item-value a:hover { color: var(--orange); }

  /* WHATSAPP CARD */
  .whatsapp-card {
    background: #075e54;
    border: 1px solid #128c7e;
    padding: 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .whatsapp-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
  }

  .whatsapp-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .whatsapp-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    font-weight: 300;
  }

  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #000;
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-whatsapp:hover {
    background: #1ebe5b;
    transform: scale(1.03);
  }

  /* FOOTER */
  footer {
    background: var(--dark);
    border-top: 1px solid var(--border);
    padding: 40px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: 0.08em;
    color: var(--white);
  }
  .footer-logo span { color: var(--orange); }

  .footer-copy {
    font-size: 12px;
    color: var(--muted);
    text-align: right;
    line-height: 1.6;
  }

  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .footer-links a:hover { color: var(--orange); }

  /* CATÁLOGO */
  .catalogo {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .catalogo::before {
    content: 'STOCK';
    position: absolute;
    right: -10px;
    top: 40px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 160px;
    color: rgba(249,115,22,0.03);
    letter-spacing: -0.05em;
    pointer-events: none;
    line-height: 1;
  }

  .filter-bar {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 32px 0 40px;
  }

  .filter-btn {
    padding: 8px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all 0.2s;
  }
  .filter-btn:hover, .filter-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #000;
  }

  .motos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 2px;
  }

  .moto-card {
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s, transform 0.25s;
    position: relative;
    overflow: hidden;
  }
  .moto-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    z-index: 2;
  }
  .moto-card.vendida { opacity: 0.45; pointer-events: none; }
  .moto-card.hidden { display: none !important; }

  .moto-img {
    background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }

  .moto-img svg {
    width: 200px;
    opacity: 0.75;
    transition: opacity 0.3s, transform 0.3s;
    filter: drop-shadow(0 4px 16px rgba(249,115,22,0.2));
  }
  .moto-card:hover .moto-img svg {
    opacity: 1;
    transform: scale(1.04) translateX(6px);
  }

  .moto-img-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 60% 70%, rgba(249,115,22,0.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .moto-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 4px 10px;
    clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  }
  .badge-disponible { background: #22c55e; color: #000; }
  .badge-reservada  { background: var(--orange); color: #000; }
  .badge-vendida    { background: #555; color: #fff; }

  .moto-tipo {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(0,0,0,0.6);
    padding: 4px 8px;
    border: 1px solid var(--border);
  }

  .moto-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .moto-marca {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 4px;
  }

  .moto-nombre {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
  }

  .moto-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .moto-spec {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .moto-spec-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
  }
  .moto-spec-label {
    font-size: 10px;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .moto-sep { height: 1px; background: var(--border); margin: 0 0 16px; }

  .moto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
  }

  .moto-precio {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
  }
  .moto-precio span {
    font-size: 16px;
    color: var(--muted);
    font-weight: 400;
  }

  .btn-moto-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--orange);
    color: #000;
    padding: 10px 16px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .btn-moto-wa:hover { background: #ff8c3a; }

  .catalogo-aviso {
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--orange);
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
  }
  .catalogo-aviso strong { color: var(--white); }

  /* ── FORMULARIO VENTA ── */
  .vende-section { background: var(--dark); position: relative; overflow: hidden; }
  .vende-section::before { content: 'VENDE'; position: absolute; right: -10px; top: 30px; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 160px; color: rgba(249,115,22,0.03); letter-spacing: -0.05em; pointer-events: none; line-height: 1; }
  .form-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; margin-top: 50px; align-items: start; }
  .form-info-box { position: sticky; top: 80px; }
  .form-info-box h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 28px; text-transform: uppercase; line-height: 1.05; margin-bottom: 16px; }
  .form-info-box h3 span { color: var(--orange); }
  .form-info-step { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .form-info-step:last-child { border-bottom: none; }
  .step-circle { width: 32px; height: 32px; border-radius: 50%; background: var(--orange-glow); border: 1px solid var(--orange-dim); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 15px; color: var(--orange); flex-shrink: 0; }
  .step-circle.done { background: #22c55e22; border-color: #22c55e; color: #22c55e; }
  .step-circle.active { background: var(--orange); border-color: var(--orange); color: #000; }
  .step-text h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
  .step-text p { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.5; }
  .form-card { background: var(--card); border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
  .form-card-header { padding: 14px 22px; border-bottom: 1px solid var(--border); }
  .form-card-header span { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); }
  .form-card-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }
  .fld { display: flex; flex-direction: column; gap: 5px; }
  .fld label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
  .fld label .req { color: var(--orange); }
  .fld input, .fld select, .fld textarea { width: 100%; background: #0d0d0d; border: 1px solid var(--border); color: var(--white); padding: 11px 14px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400; outline: none; transition: border-color 0.2s; appearance: none; box-sizing: border-box; }
  .fld input:focus, .fld select:focus, .fld textarea:focus { border-color: var(--orange); }
  .fld textarea { resize: vertical; min-height: 76px; }
  .fld-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .form-notice { padding: 12px 16px; background: rgba(249,115,22,0.06); border-left: 3px solid var(--orange); font-size: 13px; color: var(--muted); line-height: 1.55; }
  .form-notice strong { color: var(--white); }
  .form-hidden { display: none !important; }
  .form-step { animation: formFade 0.3s ease; }
  @keyframes formFade { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }
  .form-confirm { text-align: center; padding: 40px 22px; }
  .form-confirm .check-icon { font-size: 52px; margin-bottom: 16px; }
  .form-confirm h3 { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 30px; text-transform: uppercase; margin-bottom: 10px; }
  .form-confirm p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 320px; margin: 0 auto 20px; }
  .form-summary { background: #0d0d0d; border: 1px solid var(--border); padding: 16px; text-align: left; margin-bottom: 20px; }
  .form-summary-row { display: flex; justify-content: space-between; padding: 6px 0; border-bottom: 1px solid #1a1a1a; font-size: 13px; }
  .form-summary-row:last-child { border-bottom: none; }
  .form-summary-row span:first-child { color: var(--muted); }
  .form-summary-row span:last-child { color: var(--white); font-weight: 600; }
  .btn-send { width: 100%; padding: 15px; background: var(--orange); color: #000; border: none; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
  .btn-send:hover:not(:disabled) { background: #ff8c3a; }
  .btn-send:disabled { background: #7c3a10; cursor: not-allowed; }
  .btn-back { background: transparent; color: var(--muted); border: 1px solid var(--border); padding: 12px 20px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; transition: color 0.2s; }
  .btn-back:hover { color: var(--white); border-color: #555; }
  .form-error-msg { font-size: 13px; color: #ef4444; margin-top: 6px; text-align: center; }
  .form-actions { display: flex; gap: 10px; margin-top: 4px; }
  @media (max-width: 900px) { .form-grid { grid-template-columns: 1fr; gap: 32px; } .form-info-box { position: static; } .fld-row { grid-template-columns: 1fr; } }
  /* ── FIN FORMULARIO ── */

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

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


  /* ── NAV BADGE "VENDE" ───────────────────────────── */
  .nav-badge-vende {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--orange); color: #000; font-size: 12px; font-weight: 800;
    letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    text-decoration: none !important; transition: background .2s;
  }
  .nav-badge-vende:hover { background: #ff8c3a; color: #000 !important; }

  /* ── FRANJA PROMO ────────────────────────────────── */
  .promo-vende { background:linear-gradient(135deg,#111 0%,#1a1a1a 50%,#111 100%); border-bottom:3px solid var(--orange); position:relative; overflow:hidden; }
  .promo-vende::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(-45deg,transparent,transparent 20px,rgba(249,115,22,.03) 20px,rgba(249,115,22,.03) 21px); pointer-events:none; }
  .promo-vende-inner { max-width:1200px; margin:0 auto; padding:36px 5vw; display:flex; align-items:center; gap:32px; flex-wrap:wrap; justify-content:space-between; position:relative; }
  .promo-vende-left { flex:1; min-width:260px; }
  .promo-tag { display:inline-flex; align-items:center; gap:6px; font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--orange); margin-bottom:10px; }
  .promo-tag::before { content:''; display:block; width:20px; height:1px; background:var(--orange); }
  .promo-title { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:clamp(28px,4vw,48px); line-height:1; text-transform:uppercase; color:var(--white); margin-bottom:6px; }
  .promo-title span { color:var(--orange); }
  .promo-sub { font-size:15px; color:var(--muted); font-weight:300; line-height:1.6; }
  .promo-pills { display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
  .promo-pill { display:inline-flex; align-items:center; gap:6px; background:rgba(249,115,22,.1); border:1px solid rgba(249,115,22,.3); color:var(--white); font-size:13px; font-weight:600; padding:6px 14px; }
  .promo-pill em { color:var(--orange); font-style:normal; font-weight:800; }
  .promo-vende-right { flex-shrink:0; text-align:center; }
  .promo-cta-big { display:inline-flex; flex-direction:column; align-items:center; background:var(--orange); color:#000; padding:18px 36px; font-family:'Barlow Condensed',sans-serif; font-size:22px; font-weight:900; letter-spacing:.06em; text-transform:uppercase; text-decoration:none; clip-path:polygon(14px 0%,100% 0%,calc(100% - 14px) 100%,0% 100%); transition:all .2s; line-height:1.2; }
  .promo-cta-big small { font-size:12px; font-weight:500; color:rgba(0,0,0,.6); letter-spacing:.04em; margin-top:2px; }
  .promo-cta-big:hover { background:#ff8c3a; transform:scale(1.03); }

  /* ── BOTÓN FLOTANTE MÓVIL ────────────────────────── */
  .fab-vende { display:none; position:fixed; bottom:20px; left:50%; transform:translateX(-50%); z-index:300; background:var(--orange); color:#000; font-family:'Barlow Condensed',sans-serif; font-size:17px; font-weight:900; letter-spacing:.08em; text-transform:uppercase; padding:14px 28px; text-decoration:none; white-space:nowrap; clip-path:polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%); box-shadow:0 4px 20px rgba(249,115,22,.5); animation:fabPulse 2.5s ease-in-out infinite; border:none; cursor:pointer; }
  @keyframes fabPulse { 0%,100%{box-shadow:0 4px 20px rgba(249,115,22,.5)} 50%{box-shadow:0 4px 32px rgba(249,115,22,.8)} }
  @media(max-width:900px) { .fab-vende{display:flex;align-items:center;gap:8px} .promo-vende-inner{flex-direction:column;text-align:center} .promo-pills{justify-content:center} }
  .vende-section-highlight { border-top:4px solid var(--orange); box-shadow:inset 0 4px 30px rgba(249,115,22,.05); }

  /* MOBILE NAV TOGGLE */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 201;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Menú desplegable móvil */
  .mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--orange);
    z-index: 200;
    padding: 0;
    flex-direction: column;
    animation: slideDown 0.25s ease;
  }
  .mobile-menu.open { display: flex; }
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-menu a {
    display: block;
    padding: 18px 24px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu a:hover, .mobile-menu a:active { background: var(--orange-glow); color: var(--orange); }
  .mobile-menu a.mobile-cta {
    background: var(--orange);
    color: #000;
    font-weight: 800;
    border-bottom: none;
    margin: 12px 16px 16px;
    text-align: center;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }
  .mobile-menu a.mobile-cta:hover { background: #ff8c3a; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-divider { display: none; }
    .hero-panel { min-height: 50vh; padding: 60px 6vw; }
    .hero-panel-left { border-bottom: 3px solid var(--orange); }
    .how-grid { grid-template-columns: 1fr; gap: 48px; }
    .buyers-intro { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    footer { flex-direction: column; text-align: center; }
    .footer-copy { text-align: center; }
  }

  @media (max-width: 560px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .stats-bar { flex-direction: column; align-items: center; text-align: center; }
    .stat-sep { display: none; }
  }

/* --- ESTILOS ESPECIFICOS DE MOTO.PHP --- */
:root{--black:#080808;--dark:#111;--card:#181818;--border:#2a2a2a;--orange:#f97316;--orange-dim:#7c3a10;--orange-glow:rgba(249,115,22,.15);--cream:#f0ebe0;--muted:#888;--white:#f5f5f5}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Barlow',sans-serif;background:var(--black);color:var(--white);overflow-x:hidden}

/* NAV */
nav{position:fixed;top:0;width:100%;z-index:100;padding:0 5vw;height:64px;display:flex;align-items:center;justify-content:space-between;background:rgba(8,8,8,.95);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.logo{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:22px;letter-spacing:.08em;color:var(--white);text-decoration:none}
.logo span{color:var(--orange)}
.nav-back{color:var(--muted);text-decoration:none;font-size:13px;font-weight:500;display:flex;align-items:center;gap:6px;transition:color .2s}
.nav-back:hover{color:var(--orange)}
.nav-wa{background:var(--orange);color:#000;padding:8px 18px;font-family:'Barlow Condensed',sans-serif;font-size:14px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;text-decoration:none;clip-path:polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);transition:background .2s}
.nav-wa:hover{background:#ff8c3a}

/* BREADCRUMB */
.breadcrumb{padding:80px 5vw 0;display:flex;align-items:center;gap:8px;font-size:12px;color:var(--muted)}
.breadcrumb a{color:var(--muted);text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:var(--orange)}
.breadcrumb span{color:#444}
.breadcrumb strong{color:var(--white)}

/* MAIN LAYOUT */
.moto-layout{display:grid;grid-template-columns:1fr 380px;gap:32px;max-width:1100px;margin:20px auto;padding:0 5vw 60px}

/* GALERÍA */
.gallery{position:relative}
.gallery-main{aspect-ratio:4/3;background:var(--card);border:1px solid var(--border);overflow:hidden;cursor:zoom-in;position:relative}
.gallery-main img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.gallery-main:hover img{transform:scale(1.03)}
.gallery-placeholder{width:100%;height:100%;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#1a1a1a,#111)}
.gallery-thumbs{display:flex;gap:8px;margin-top:8px;flex-wrap:wrap}
.gallery-thumb{width:80px;height:60px;object-fit:cover;border:2px solid transparent;cursor:pointer;transition:border-color .2s;opacity:.7}
.gallery-thumb.active,.gallery-thumb:hover{border-color:var(--orange);opacity:1}

/* BADGE */
.moto-badge{display:inline-block;padding:4px 14px;font-size:11px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;clip-path:polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%);margin-bottom:12px}
.badge-disponible{background:#22c55e;color:#000}
.badge-reservada{background:var(--orange);color:#000}
.badge-vendida{background:#555;color:#fff}

/* INFO SIDEBAR */
.sidebar{position:sticky;top:80px;height:fit-content}
.moto-header h1{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:clamp(28px,4vw,44px);line-height:1;text-transform:uppercase;letter-spacing:.02em;margin-bottom:4px}
.moto-marca{font-size:13px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--orange);margin-bottom:8px}
.moto-specs-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--border);border:1px solid var(--border);margin:20px 0}
.moto-spec{background:var(--card);padding:14px 16px}
.moto-spec-val{font-family:'Barlow Condensed',sans-serif;font-size:22px;font-weight:900;color:var(--white);line-height:1}
.moto-spec-lbl{font-size:11px;color:var(--muted);text-transform:uppercase;letter-spacing:.1em;margin-top:3px}
.precio-box{background:var(--card);border:1px solid var(--border);border-top:3px solid var(--orange);padding:20px;margin-bottom:16px}
.precio-num{font-family:'Barlow Condensed',sans-serif;font-size:44px;font-weight:900;color:var(--white);line-height:1}
.precio-sub{font-size:12px;color:var(--muted);margin-top:4px}
.btn-wa{display:flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:16px;background:#25d366;color:#000;text-decoration:none;font-family:'Barlow Condensed',sans-serif;font-size:20px;font-weight:900;letter-spacing:.04em;text-transform:uppercase;transition:background .2s;margin-bottom:10px}
.btn-wa:hover{background:#1ebe5b}
.btn-call{display:flex;align-items:center;justify-content:center;gap:8px;width:100%;padding:13px;background:transparent;color:var(--white);border:1px solid var(--border);text-decoration:none;font-family:'Barlow Condensed',sans-serif;font-size:17px;font-weight:700;letter-spacing:.04em;text-transform:uppercase;transition:all .2s;margin-bottom:16px}
.btn-call:hover{border-color:var(--orange);color:var(--orange)}
.garantia-box{background:rgba(34,197,94,.06);border:1px solid rgba(34,197,94,.2);padding:14px 16px;font-size:13px;color:#86efac;line-height:1.6;margin-bottom:16px}
.garantia-box strong{color:#4ade80}

/* SECCIONES DETALLE */
.detail-section{margin-top:28px}
.detail-title{font-family:'Barlow Condensed',sans-serif;font-weight:700;font-size:18px;text-transform:uppercase;letter-spacing:.06em;color:var(--white);margin-bottom:12px;padding-bottom:8px;border-bottom:1px solid var(--border);display:flex;align-items:center;gap:8px}
.detail-title::before{content:'';display:block;width:4px;height:18px;background:var(--orange)}
.detail-text{font-size:14px;color:var(--muted);line-height:1.7;font-weight:300}
.extras-list{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}
.extra-chip{background:var(--card);border:1px solid var(--border);padding:6px 14px;font-size:13px;color:var(--white)}

/* RELACIONADAS */
.relacionadas{max-width:1100px;margin:0 auto;padding:0 5vw 60px}
.rel-title{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:30px;text-transform:uppercase;margin-bottom:20px}
.rel-title span{color:var(--orange)}
.rel-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:16px}
.rel-card{background:var(--card);border:1px solid var(--border);text-decoration:none;display:block;transition:border-color .25s,transform .25s}
.rel-card:hover{border-color:var(--orange);transform:translateY(-3px)}
.rel-img{height:160px;overflow:hidden;position:relative}
.rel-img img{width:100%;height:100%;object-fit:cover}
.rel-img-ph{width:100%;height:100%;background:linear-gradient(135deg,#1a1a1a,#111);display:flex;align-items:center;justify-content:center;font-size:32px}
.rel-body{padding:14px}
.rel-marca{font-size:11px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--orange)}
.rel-nombre{font-family:'Barlow Condensed',sans-serif;font-weight:900;font-size:20px;text-transform:uppercase;color:var(--white);margin:2px 0 8px}
.rel-precio{font-family:'Barlow Condensed',sans-serif;font-size:22px;font-weight:900;color:var(--white)}

/* RESPONSIVE */
@media(max-width:900px){
  .moto-layout{grid-template-columns:1fr}
  .sidebar{position:static}
  .breadcrumb{padding-top:76px}
}
