:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-borde: #E8E8E8;
    --gris-medio: #999;
    --gris-texto: #555;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--blanco); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── HERO LEGAL ─── */
  .hero-legal {
    margin-top: 64px; background: var(--negro);
    padding: 56px 40px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative; overflow: hidden;
  }
  .hero-legal::after {
    content: attr(data-doc);
    position: absolute; font-family: var(--font-display);
    font-size: 130px; font-weight: 900; color: rgba(255,255,255,0.025);
    right: -10px; bottom: -20px; letter-spacing: -4px;
    pointer-events: none; text-transform: uppercase; white-space: nowrap;
  }
  .hero-legal-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px; flex-wrap: wrap; }
  .breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--rojo); }
  .breadcrumb span { color: rgba(255,255,255,0.6); }
  .doc-tipo { display: inline-block; background: var(--rojo); color: white; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 16px; }
  .hero-legal h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 900; color: var(--blanco); text-transform: uppercase; line-height: 0.95; letter-spacing: -1px; margin-bottom: 20px; }
  .hero-legal h1 span { color: var(--rojo); }
  .hero-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }
  .meta-item strong { color: rgba(255,255,255,0.7); }

  /* ─── NAV LEGALES ─── */
  .legales-nav { background: var(--gris-claro); border-bottom: 1px solid var(--gris-borde); padding: 0 40px; overflow-x: auto; }
  .legales-nav-inner { max-width: 900px; margin: 0 auto; display: flex; }
  .legal-nav-item { padding: 14px 20px; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gris-medio); text-decoration: none; border-bottom: 3px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; display: inline-block; }
  .legal-nav-item:hover { color: var(--negro); }
  .legal-nav-item.active { color: var(--negro); border-bottom-color: var(--rojo); }

  /* ─── LAYOUT ─── */
  .legal-layout { max-width: 900px; margin: 0 auto; padding: 64px 40px 80px; display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }

  /* Índice */
  .indice { position: sticky; top: 88px; }
  .indice-titulo { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gris-medio); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gris-borde); }
  .indice-lista { list-style: none; }
  .indice-lista li { margin-bottom: 4px; }
  .indice-lista a { display: block; font-size: 13px; font-weight: 500; color: var(--gris-medio); text-decoration: none; padding: 6px 10px 6px 12px; border-left: 2px solid transparent; transition: all 0.2s; line-height: 1.4; }
  .indice-lista a:hover { color: var(--negro); border-left-color: var(--negro); }
  .indice-lista a.activo { color: var(--rojo); border-left-color: var(--rojo); font-weight: 700; }
  .indice-otros { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gris-borde); }
  .indice-otros-titulo { font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gris-medio); margin-bottom: 10px; }
  .indice-otros a { display: block; font-size: 12px; font-weight: 600; color: var(--gris-medio); text-decoration: none; padding: 5px 0; transition: color 0.2s; border-bottom: 1px solid var(--gris-borde); }
  .indice-otros a:last-child { border-bottom: none; }
  .indice-otros a:hover { color: var(--rojo); }

  /* Contenido */
  .legal-seccion { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--gris-borde); scroll-margin-top: 96px; }
  .legal-seccion:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .sec-num { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--rojo); margin-bottom: 8px; }
  .sec-titulo { font-family: var(--font-display); font-size: 26px; font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -0.3px; margin-bottom: 20px; }
  .legal-content p { font-size: 15px; line-height: 1.8; color: var(--gris-texto); margin-bottom: 16px; }
  .legal-content p:last-child { margin-bottom: 0; }
  .legal-content strong { color: var(--negro); font-weight: 600; }
  .legal-content a { color: var(--rojo); text-decoration: none; }
  .legal-content a:hover { text-decoration: underline; }

  /* Card empresa */
  .empresa-card { background: var(--negro); padding: 28px 32px; margin: 20px 0; }
  .empresa-card .rc-titulo { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
  .empresa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .rc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
  .rc-val { font-size: 14px; font-weight: 500; color: var(--blanco); line-height: 1.4; }
  .rc-val a { color: var(--rojo); text-decoration: none; }

  .legal-list { list-style: none; margin: 16px 0; }
  .legal-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gris-texto); line-height: 1.7; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--gris-borde); }
  .legal-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .legal-list li::before { content: '—'; color: var(--rojo); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

  .legal-list-alpha { list-style: none; margin: 16px 0; counter-reset: alpha; }
  .legal-list-alpha li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gris-texto); line-height: 1.7; margin-bottom: 10px; padding: 12px 16px; background: var(--gris-claro); }
  .legal-list-alpha li::before { content: '(' counter(alpha, lower-alpha) ')'; counter-increment: alpha; color: var(--rojo); font-weight: 700; flex-shrink: 0; font-family: var(--font-display); font-size: 15px; }

  .legal-highlight { background: var(--gris-claro); border-left: 3px solid var(--rojo); padding: 20px 24px; margin: 20px 0; }
  .legal-highlight p { font-size: 14px !important; margin-bottom: 8px !important; color: var(--gris-texto) !important; }
  .legal-highlight p:last-child { margin-bottom: 0 !important; }
  .legal-highlight strong { color: var(--negro) !important; }

  /* ─── FOOTER LEGAL ─── */
  .footer-legal { background: var(--gris-claro); border-top: 1px solid var(--gris-borde); padding: 40px; }
  .footer-legal-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-legal-links a { font-size: 13px; font-weight: 600; color: var(--gris-medio); text-decoration: none; transition: color 0.2s; }
  .footer-legal-links a:hover, .footer-legal-links a.active { color: var(--rojo); }
  .footer-legal-copy { font-size: 12px; color: var(--gris-medio); }

  footer { background: #080808; padding: 32px 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
  .footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .footer-logo span { color: var(--rojo); }

  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  @media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 0; }
    .indice { position: static; margin-bottom: 40px; padding: 24px; background: var(--gris-claro); }
    .empresa-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hero-legal { padding: 40px 20px 36px; }
    .legal-layout { padding: 40px 20px 60px; }
    .legales-nav { padding: 0 20px; }
    .footer-legal { padding: 32px 20px; }
    footer { padding: 28px 20px; }
    .footer-legal-inner { flex-direction: column; align-items: flex-start; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #999;
    --gris-texto: #444;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--blanco); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover, nav a.active { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── HERO CATÁLOGO ─── */
  .catalogo-hero {
    margin-top: 64px;
    background: var(--negro);
    padding: 48px 40px 0;
    position: relative;
    overflow: hidden;
  }
  .catalogo-hero::before {
    content: 'MOTOS';
    position: absolute;
    font-family: var(--font-display);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -8px;
    pointer-events: none;
  }
  .hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
  }
  .hero-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 8px;
  }
  .hero-titulo {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 900;
    color: var(--blanco);
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -1px;
  }
  .hero-titulo span { color: var(--rojo); }

  /* Barra de búsqueda */
  .search-bar {
    display: flex;
    gap: 0;
    max-width: 560px;
  }
  .search-input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 15px;
    background: rgba(255,255,255,0.08);
    color: var(--blanco);
    outline: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, background 0.2s;
  }
  .search-input::placeholder { color: rgba(255,255,255,0.35); }
  .search-input:focus { border-bottom-color: var(--rojo); background: rgba(255,255,255,0.12); }
  .search-btn {
    background: var(--rojo);
    border: none;
    padding: 14px 24px;
    color: white;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .search-btn:hover { background: var(--rojo-dark); }

  /* Tabs rápidos de tipo */
  .tipo-tabs {
    display: flex;
    gap: 2px;
    margin-top: 0;
  }
  .tipo-tab {
    padding: 14px 22px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    white-space: nowrap;
  }
  .tipo-tab:hover { color: var(--blanco); }
  .tipo-tab.active { color: var(--blanco); border-bottom-color: var(--rojo); }

  /* ─── LAYOUT PRINCIPAL ─── */
  .catalogo-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    min-height: 70vh;
  }

  /* ─── SIDEBAR FILTROS ─── */
  .sidebar {
    background: var(--gris-claro);
    padding: 32px 24px;
    border-right: 1px solid #e8e8e8;
    position: sticky;
    top: 64px;
    height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .sidebar-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--negro);
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .clear-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--rojo);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .clear-all:hover { text-decoration: underline; }

  .filtro-grupo { margin-bottom: 28px; }
  .filtro-titulo {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--negro);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
  }

  /* Checkboxes custom */
  .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .check-item input[type="checkbox"] { display: none; }
  .check-box {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
  }
  .check-item input:checked + .check-box { background: var(--rojo); border-color: var(--rojo); }
  .check-item input:checked + .check-box::after { content: '✓'; color: white; font-size: 11px; font-weight: 700; }
  .check-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gris-texto);
    display: flex;
    justify-content: space-between;
    flex: 1;
    transition: color 0.2s;
  }
  .check-item:hover .check-label { color: var(--negro); }
  .check-count { font-size: 12px; color: var(--gris-medio); font-weight: 400; }

  /* Slider de precio */
  .precio-range {
    padding: 8px 0;
  }
  .precio-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
  }
  .precio-display span { color: var(--negro); }
  input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 3px;
    background: linear-gradient(to right, var(--rojo) 0%, var(--rojo) 60%, #ddd 60%);
    outline: none;
    margin-bottom: 8px;
    cursor: pointer;
  }
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--rojo);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(224,16,16,0.4);
    cursor: pointer;
  }

  /* Filtros activos */
  .filtros-activos {
    padding: 16px 32px;
    background: var(--blanco);
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-height: 56px;
  }
  .filtros-activos-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gris-medio);
    white-space: nowrap;
  }
  .tag-filtro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--negro);
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
  }
  .tag-filtro:hover { background: var(--rojo); }
  .tag-filtro .tag-x { font-size: 16px; line-height: 1; opacity: 0.7; }

  /* ─── ÁREA DE MOTOS ─── */
  .motos-area {
    padding: 0;
  }

  /* Barra de resultados */
  .resultados-bar {
    padding: 18px 32px;
    background: var(--blanco);
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 64px;
    z-index: 10;
  }
  .resultados-count {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--negro);
  }
  .resultados-count span { color: var(--rojo); }
  .ordenar-wrap { display: flex; align-items: center; gap: 10px; }
  .ordenar-label { font-size: 13px; font-weight: 600; color: var(--gris-medio); text-transform: uppercase; letter-spacing: 0.5px; }
  .ordenar-select {
    border: 1.5px solid #ddd;
    padding: 8px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--negro);
    background: var(--blanco);
    cursor: pointer;
    appearance: none;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    outline: none;
    transition: border-color 0.2s;
  }
  .ordenar-select:focus { border-color: var(--rojo); }

  .vista-btns { display: flex; gap: 4px; }
  .vista-btn {
    width: 34px; height: 34px;
    border: 1.5px solid #ddd;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--gris-medio);
    transition: all 0.2s;
  }
  .vista-btn.active { background: var(--negro); border-color: var(--negro); color: white; }

  /* Grid motos */
  .motos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #eee;
    padding: 2px;
    transition: grid-template-columns 0.3s;
  }
  .motos-grid.lista {
    grid-template-columns: 1fr;
    background: none;
    padding: 0;
    gap: 1px;
  }

  /* Card modo grid */
  .moto-card {
    background: var(--blanco);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: fadeCard 0.3s ease both;
  }
  @keyframes fadeCard { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
  .moto-card:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); z-index: 2; }

  .moto-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gris-claro);
  }
  .moto-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
  .moto-card:hover .moto-img-wrap img { transform: scale(1.05); }

  .moto-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--rojo); color: white;
    font-family: var(--font-display); font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 10px;
  }
  .moto-badge.oferta { background: #ff8c00; }
  .moto-badge.indian { background: #1a1a4e; }
  .moto-badge.reservada { background: #555; }

  .fav-btn {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.9);
    border: none; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; cursor: pointer;
    transition: transform 0.2s, background 0.2s;
  }
  .fav-btn:hover { transform: scale(1.15); background: white; }
  .fav-btn.active { background: var(--rojo); }

  .moto-info { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
  .moto-marca { font-size: 10px; font-weight: 700; color: var(--gris-medio); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 3px; }
  .moto-nombre { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 12px; letter-spacing: 0.2px; }
  .moto-specs { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
  .spec { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--gris-texto); font-weight: 500; }
  .moto-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 14px; border-top: 1px solid #f0f0f0; }
  .moto-precio { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--negro); letter-spacing: -0.5px; line-height: 1; }
  .moto-precio sup { font-size: 14px; }
  .moto-precio-ant { font-size: 13px; color: var(--gris-medio); text-decoration: line-through; margin-top: 1px; }
  .btn-ver { background: var(--rojo); color: white; border: none; padding: 9px 18px; font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; cursor: pointer; text-decoration: none; transition: background 0.2s; display: inline-block; }
  .btn-ver:hover { background: var(--rojo-dark); }

  /* Card modo lista */
  .motos-grid.lista .moto-card {
    flex-direction: row;
    height: 160px;
    border-bottom: 1px solid #eee;
  }
  .motos-grid.lista .moto-card:hover { transform: none; box-shadow: inset 4px 0 0 var(--rojo); }
  .motos-grid.lista .moto-img-wrap { width: 220px; height: 160px; aspect-ratio: unset; flex-shrink: 0; }
  .motos-grid.lista .moto-info { flex-direction: row; align-items: center; gap: 24px; padding: 20px 28px; flex-wrap: wrap; }
  .motos-grid.lista .moto-nombre { font-size: 22px; margin-bottom: 6px; }
  .motos-grid.lista .moto-specs { margin-bottom: 0; }
  .motos-grid.lista .moto-footer { border-top: none; padding-top: 0; margin-left: auto; flex-direction: column; align-items: flex-end; gap: 10px; }
  .motos-grid.lista .moto-precio { font-size: 28px; }
  .motos-grid.lista .moto-badge { top: 10px; left: 10px; }

  /* Sin resultados */
  .sin-resultados {
    display: none;
    text-align: center;
    padding: 80px 40px;
    grid-column: 1 / -1;
  }
  .sin-resultados.visible { display: block; }
  .sin-resultados-icon { font-size: 56px; margin-bottom: 16px; }
  .sin-resultados h3 { font-family: var(--font-display); font-size: 28px; font-weight: 900; text-transform: uppercase; margin-bottom: 8px; }
  .sin-resultados p { font-size: 15px; color: var(--gris-medio); }

  /* Paginación */
  .paginacion {
    padding: 40px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    border-top: 1px solid #eee;
  }
  .pag-btn {
    width: 40px; height: 40px;
    border: 1.5px solid #ddd;
    background: none;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--gris-texto);
  }
  .pag-btn:hover { border-color: var(--negro); color: var(--negro); }
  .pag-btn.active { background: var(--rojo); border-color: var(--rojo); color: white; }
  .pag-btn.prev, .pag-btn.next { width: auto; padding: 0 16px; font-size: 14px; }

  /* ─── CTA VENDE ─── */
  .cta-vende {
    background: var(--negro);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-vende::before {
    content: 'VENDE';
    position: absolute; font-family: var(--font-display); font-size: 200px; font-weight: 900;
    color: rgba(255,255,255,0.025); top: 50%; left: 50%; transform: translate(-50%, -50%);
    white-space: nowrap; pointer-events: none;
  }
  .cta-vende-inner { position: relative; z-index: 1; }
  .cta-vende h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 56px); font-weight: 900; color: white; text-transform: uppercase; margin-bottom: 12px; }
  .cta-vende p { color: rgba(255,255,255,0.55); font-size: 16px; margin-bottom: 28px; }
  .btn-rojo { display: inline-block; background: var(--rojo); color: white; padding: 16px 44px; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
  .btn-rojo:hover { background: var(--rojo-dark); transform: translateY(-2px); }

  /* Footer */
  footer { background: #080808; padding: 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--blanco); }
  .footer-logo span { color: var(--rojo); }

  /* WhatsApp */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  /* Móvil filtros */
  .filtros-mobile-btn {
    display: none;
    position: fixed;
    bottom: 96px; left: 50%; transform: translateX(-50%);
    z-index: 50;
    background: var(--negro);
    color: white;
    border: none;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .catalogo-layout { grid-template-columns: 240px 1fr; }
    .motos-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .catalogo-hero { padding: 32px 20px 0; }
    .hero-top { flex-direction: column; align-items: flex-start; gap: 20px; }
    .search-bar { width: 100%; }
    .catalogo-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; position: fixed; inset: 64px 0 0 0; z-index: 90; height: auto; overflow-y: auto; }
    .sidebar.open { display: block; }
    .motos-grid { grid-template-columns: 1fr; }
    .filtros-mobile-btn { display: block; }
    .resultados-bar { padding: 14px 20px; }
    .motos-grid.lista .moto-card { flex-direction: column; height: auto; }
    .motos-grid.lista .moto-img-wrap { width: 100%; height: 200px; }
    .motos-grid.lista .moto-info { flex-direction: column; }
    .motos-grid.lista .moto-footer { margin-left: 0; flex-direction: row; align-items: center; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-borde: #E8E8E8;
    --gris-medio: #999;
    --gris-texto: #555;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--blanco); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── HERO LEGAL ─── */
  .hero-legal {
    margin-top: 64px;
    background: var(--negro);
    padding: 56px 40px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
  }
  .hero-legal::after {
    content: attr(data-doc);
    position: absolute;
    font-family: var(--font-display);
    font-size: 150px; font-weight: 900;
    color: rgba(255,255,255,0.025);
    right: -10px; bottom: -20px;
    letter-spacing: -4px;
    pointer-events: none;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .hero-legal-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
  .breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.35); margin-bottom: 20px; flex-wrap: wrap; }
  .breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--rojo); }
  .breadcrumb span { color: rgba(255,255,255,0.6); }
  .doc-tipo { display: inline-block; background: var(--rojo); color: white; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 12px; margin-bottom: 16px; }
  .hero-legal h1 { font-family: var(--font-display); font-size: clamp(40px, 5vw, 68px); font-weight: 900; color: var(--blanco); text-transform: uppercase; line-height: 0.95; letter-spacing: -1px; margin-bottom: 20px; }
  .hero-legal h1 span { color: var(--rojo); }
  .hero-meta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
  .meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,0.4); font-weight: 500; }
  .meta-item strong { color: rgba(255,255,255,0.7); }

  /* ─── NAV LEGALES ─── */
  .legales-nav { background: var(--gris-claro); border-bottom: 1px solid var(--gris-borde); padding: 0 40px; overflow-x: auto; }
  .legales-nav-inner { max-width: 900px; margin: 0 auto; display: flex; gap: 0; }
  .legal-nav-item { padding: 14px 20px; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gris-medio); text-decoration: none; border-bottom: 3px solid transparent; white-space: nowrap; transition: color 0.2s, border-color 0.2s; display: inline-block; }
  .legal-nav-item:hover { color: var(--negro); }
  .legal-nav-item.active { color: var(--negro); border-bottom-color: var(--rojo); }

  /* ─── LAYOUT ─── */
  .legal-layout { max-width: 900px; margin: 0 auto; padding: 64px 40px 80px; display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }

  /* Índice */
  .indice { position: sticky; top: 88px; }
  .indice-titulo { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gris-medio); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--gris-borde); }
  .indice-lista { list-style: none; }
  .indice-lista li { margin-bottom: 4px; }
  .indice-lista a { display: block; font-size: 13px; font-weight: 500; color: var(--gris-medio); text-decoration: none; padding: 6px 10px 6px 12px; border-left: 2px solid transparent; transition: all 0.2s; line-height: 1.4; }
  .indice-lista a:hover { color: var(--negro); border-left-color: var(--negro); }
  .indice-lista a.activo { color: var(--rojo); border-left-color: var(--rojo); font-weight: 700; }
  .indice-otros { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gris-borde); }
  .indice-otros-titulo { font-family: var(--font-display); font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gris-medio); margin-bottom: 10px; }
  .indice-otros a { display: block; font-size: 12px; font-weight: 600; color: var(--gris-medio); text-decoration: none; padding: 5px 0; transition: color 0.2s; border-bottom: 1px solid var(--gris-borde); }
  .indice-otros a:last-child { border-bottom: none; }
  .indice-otros a:hover { color: var(--rojo); }

  /* Contenido */
  .legal-seccion { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--gris-borde); scroll-margin-top: 96px; }
  .legal-seccion:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .sec-num { font-family: var(--font-display); font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--rojo); margin-bottom: 8px; }
  .sec-titulo { font-family: var(--font-display); font-size: 26px; font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -0.3px; margin-bottom: 20px; color: var(--negro); }
  .legal-content p { font-size: 15px; line-height: 1.8; color: var(--gris-texto); margin-bottom: 16px; }
  .legal-content p:last-child { margin-bottom: 0; }
  .legal-content strong { color: var(--negro); font-weight: 600; }
  .legal-content a { color: var(--rojo); text-decoration: none; }
  .legal-content a:hover { text-decoration: underline; }

  .legal-list { list-style: none; margin: 16px 0; }
  .legal-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gris-texto); line-height: 1.7; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--gris-borde); }
  .legal-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .legal-list li::before { content: '—'; color: var(--rojo); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

  .legal-highlight { background: var(--gris-claro); border-left: 3px solid var(--rojo); padding: 20px 24px; margin: 20px 0; }
  .legal-highlight p { font-size: 14px !important; margin-bottom: 0 !important; color: var(--gris-texto) !important; }
  .legal-highlight strong { color: var(--negro) !important; }

  /* Card empresa */
  .empresa-card { background: var(--negro); padding: 28px 32px; margin: 20px 0; }
  .empresa-card .rc-titulo { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
  .empresa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .rc-item {}
  .rc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.3); margin-bottom: 3px; }
  .rc-val { font-size: 14px; font-weight: 500; color: var(--blanco); line-height: 1.4; }
  .rc-val a { color: var(--rojo); text-decoration: none; }

  /* Tabla */
  .legal-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
  .legal-table th { background: var(--negro); color: var(--blanco); font-family: var(--font-display); font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 12px 16px; text-align: left; }
  .legal-table td { padding: 12px 16px; border-bottom: 1px solid var(--gris-borde); color: var(--gris-texto); vertical-align: top; line-height: 1.5; }
  .legal-table tr:last-child td { border-bottom: none; }
  .legal-table tr:nth-child(even) td { background: var(--gris-claro); }

  /* Pasos devolución */
  .pasos-devolucion { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; }
  .paso-dev {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--gris-claro);
    padding: 18px 20px;
    border-left: 3px solid transparent;
    transition: border-color 0.2s;
  }
  .paso-dev:hover { border-left-color: var(--rojo); }
  .paso-dev-num {
    width: 32px; height: 32px;
    background: var(--rojo); color: white;
    font-family: var(--font-display); font-size: 16px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .paso-dev-texto strong { display: block; font-size: 14px; font-weight: 700; color: var(--negro); margin-bottom: 3px; }
  .paso-dev-texto span { font-size: 13px; color: var(--gris-texto); line-height: 1.5; }

  /* ─── FOOTER LEGAL ─── */
  .footer-legal { background: var(--gris-claro); border-top: 1px solid var(--gris-borde); padding: 40px; }
  .footer-legal-inner { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
  .footer-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
  .footer-legal-links a { font-size: 13px; font-weight: 600; color: var(--gris-medio); text-decoration: none; transition: color 0.2s; }
  .footer-legal-links a:hover, .footer-legal-links a.active { color: var(--rojo); }
  .footer-legal-copy { font-size: 12px; color: var(--gris-medio); }

  footer { background: #080808; padding: 32px 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 900px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 8px; }
  .footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .footer-logo span { color: var(--rojo); }

  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  @media (max-width: 900px) {
    .legal-layout { grid-template-columns: 1fr; gap: 0; }
    .indice { position: static; margin-bottom: 40px; padding: 24px; background: var(--gris-claro); }
    .empresa-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hero-legal { padding: 40px 20px 36px; }
    .legal-layout { padding: 40px 20px 60px; }
    .legales-nav { padding: 0 20px; }
    .footer-legal { padding: 32px 20px; }
    footer { padding: 28px 20px; }
    .footer-legal-inner { flex-direction: column; align-items: flex-start; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --negro-medio: #161616;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #999;
    --gris-texto: #444;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--negro); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover, nav a.active { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel-header { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel-header:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── HERO ─── */
  .hero {
    margin-top: 64px;
    background: var(--negro);
    padding: 80px 40px 0;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 260px; font-weight: 900;
    color: rgba(255,255,255,0.025);
    top: 50%; right: -20px;
    transform: translateY(-50%);
    white-space: nowrap;
    letter-spacing: -10px;
    pointer-events: none;
    line-height: 1;
  }
  .hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative; z-index: 1;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hero-left {}
  .hero-label {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--rojo);
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
    animation: fadeUp 0.5s ease both;
  }
  .hero-label::before { content: ''; display: inline-block; width: 32px; height: 2px; background: var(--rojo); }
  .hero-titulo {
    font-family: var(--font-display);
    font-size: clamp(64px, 8vw, 110px);
    font-weight: 900;
    color: var(--blanco);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -2px;
    animation: fadeUp 0.5s 0.1s ease both;
  }
  .hero-titulo em { color: var(--rojo); font-style: normal; }

  .hero-right {
    display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
    animation: fadeUp 0.5s 0.2s ease both;
    padding-bottom: 8px;
  }
  .hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 360px;
    text-align: right;
  }
  .hero-respuesta {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 18px;
    font-family: var(--font-display);
    font-size: 14px; font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase; letter-spacing: 1px;
  }
  .hero-respuesta strong { color: var(--rojo); }

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

  /* ─── CANALES RÁPIDOS ─── */
  .canales {
    background: var(--negro);
    padding: 0 40px;
  }
  .canales-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
  }
  .canal {
    background: var(--negro-medio);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-decoration: none;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
  }
  .canal::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 0;
    background: var(--rojo);
    transition: height 0.25s;
  }
  .canal:hover::before { height: 3px; }
  .canal:hover { background: #1a1a1a; }
  .canal-icon { font-size: 28px; }
  .canal-tipo {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--rojo);
  }
  .canal-valor {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 800;
    color: var(--blanco);
    line-height: 1.2;
  }
  .canal-sub { font-size: 12px; color: rgba(255,255,255,0.35); font-weight: 500; }

  /* ─── BLOQUE PRINCIPAL: FORMULARIO + INFO ─── */
  .main-block {
    background: var(--blanco);
    display: grid;
    grid-template-columns: 1fr 420px;
  }

  /* Formulario */
  .form-panel {
    padding: 72px 60px;
    border-right: 1px solid #eee;
  }
  .form-panel-label {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase; color: var(--rojo);
    margin-bottom: 10px;
  }
  .form-panel-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.5vw, 52px);
    font-weight: 900; text-transform: uppercase;
    line-height: 1; letter-spacing: -0.5px;
    margin-bottom: 40px;
  }
  .form-panel-title span { color: var(--rojo); }

  /* Motivo tabs */
  .motivo-tabs {
    display: flex; gap: 8px; flex-wrap: wrap;
    margin-bottom: 36px;
  }
  .motivo-tab {
    padding: 9px 18px;
    font-family: var(--font-display); font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    border: 2px solid #ddd; background: none; color: var(--gris-texto);
    cursor: pointer; transition: all 0.2s;
  }
  .motivo-tab:hover { border-color: var(--negro); color: var(--negro); }
  .motivo-tab.active { background: var(--negro); border-color: var(--negro); color: var(--blanco); }

  /* Form inputs */
  .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .fg { margin-bottom: 0; }
  .fg.full { grid-column: 1 / -1; }
  .fg label {
    display: block; font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 8px; color: var(--negro);
  }
  .fg input, .fg select, .fg textarea {
    width: 100%; border: 1.5px solid #ddd; padding: 14px 16px;
    font-family: var(--font-body); font-size: 15px; color: var(--negro);
    background: var(--blanco); transition: border-color 0.2s; appearance: none;
    outline: none; resize: none;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--rojo); }
  .fg input::placeholder, .fg textarea::placeholder { color: #ccc; }

  .form-footer {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 24px; flex-wrap: wrap; gap: 16px;
  }
  .form-privacidad { font-size: 12px; color: var(--gris-medio); max-width: 320px; line-height: 1.5; }
  .form-privacidad a { color: var(--rojo); }
  .btn-enviar {
    background: var(--rojo); color: white; border: none;
    padding: 16px 48px;
    font-family: var(--font-display); font-size: 18px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    cursor: pointer; transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .btn-enviar:hover { background: var(--rojo-dark); transform: translateY(-1px); }

  /* Éxito */
  .form-success {
    display: none; text-align: center; padding: 60px 20px;
  }
  .form-success.show { display: block; animation: fadeUp 0.4s ease both; }
  .success-icon { font-size: 56px; margin-bottom: 16px; }
  .success-title { font-family: var(--font-display); font-size: 36px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
  .success-sub { font-size: 16px; color: var(--gris-texto); line-height: 1.6; }

  /* Info lateral */
  .info-panel {
    background: var(--negro);
    padding: 72px 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .info-section { margin-bottom: 48px; }
  .info-section:last-child { margin-bottom: 0; }
  .info-section-title {
    font-family: var(--font-display); font-size: 11px; font-weight: 800;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--rojo);
    margin-bottom: 20px; padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .info-item {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 18px;
  }
  .info-item:last-child { margin-bottom: 0; }
  .info-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
  .info-content {}
  .info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
  .info-valor { font-size: 15px; color: var(--blanco); font-weight: 500; line-height: 1.5; }
  .info-valor a { color: var(--blanco); text-decoration: none; transition: color 0.2s; }
  .info-valor a:hover { color: var(--rojo); }

  /* Horario visual */
  .horario-grid { display: flex; flex-direction: column; gap: 8px; }
  .horario-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
  }
  .horario-row:last-child { border-bottom: none; }
  .horario-dia { color: rgba(255,255,255,0.45); font-weight: 500; }
  .horario-hora { color: var(--blanco); font-weight: 600; font-family: var(--font-display); font-size: 14px; letter-spacing: 0.3px; }
  .horario-cerrado { color: rgba(255,255,255,0.2); font-style: italic; }

  /* Redes */
  .redes { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
  .red-btn {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 14px;
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    color: rgba(255,255,255,0.6); text-decoration: none;
    transition: all 0.2s;
  }
  .red-btn:hover { background: var(--rojo); border-color: var(--rojo); color: white; }
  .red-btn span { font-size: 16px; }

  /* ─── MAPA ─── */
  .mapa-section { background: var(--blanco); }
  .mapa-tabs {
    display: flex; border-bottom: 2px solid #eee;
    padding: 0 40px;
    max-width: 100%;
  }
  .mapa-tab {
    padding: 18px 28px;
    font-family: var(--font-display); font-size: 16px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.5px;
    border-bottom: 3px solid transparent; margin-bottom: -2px;
    cursor: pointer; color: var(--gris-medio);
    background: none; border-top: none; border-left: none; border-right: none;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 8px;
  }
  .mapa-tab:hover { color: var(--negro); }
  .mapa-tab.active { color: var(--negro); border-bottom-color: var(--rojo); }

  .mapa-contenido { display: none; }
  .mapa-contenido.active { display: grid; grid-template-columns: 1fr 380px; }

  .mapa-embed {
    width: 100%; height: 420px; border: none; display: block;
    filter: grayscale(20%);
  }
  .mapa-datos {
    background: var(--gris-claro);
    padding: 44px 36px;
    display: flex; flex-direction: column; justify-content: center; gap: 20px;
  }
  .mapa-datos-titulo {
    font-family: var(--font-display); font-size: 26px; font-weight: 900;
    text-transform: uppercase; margin-bottom: 4px;
  }
  .mapa-datos-subtitulo { font-size: 14px; color: var(--gris-medio); margin-bottom: 12px; }
  .mapa-dato-item {
    display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--gris-texto);
  }
  .mapa-dato-item strong { display: block; color: var(--negro); font-weight: 700; margin-bottom: 2px; }
  .mapa-dato-item a { color: var(--rojo); text-decoration: none; font-weight: 600; }
  .mapa-dato-icon { font-size: 18px; flex-shrink: 0; }
  .btn-como-llegar {
    display: inline-block; background: var(--negro); color: white;
    padding: 13px 24px; font-family: var(--font-display); font-size: 15px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.5px; text-decoration: none;
    transition: background 0.2s; margin-top: 8px; width: fit-content;
  }
  .btn-como-llegar:hover { background: var(--rojo); }

  /* ─── FAQ CONTACTO ─── */
  .faq-section { background: var(--negro); padding: 80px 40px; }
  .faq-inner { max-width: 900px; margin: 0 auto; }
  .faq-header { text-align: center; margin-bottom: 48px; }
  .section-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rojo); margin-bottom: 10px; }
  .section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 52px); font-weight: 900; text-transform: uppercase; line-height: 1; }
  .section-title span { color: var(--rojo); }

  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .faq-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 24px 22px;
    transition: border-color 0.2s, background 0.2s;
  }
  .faq-card:hover { border-color: var(--rojo); background: rgba(224,16,16,0.05); }
  .faq-q { font-family: var(--font-display); font-size: 17px; font-weight: 800; text-transform: uppercase; color: var(--blanco); margin-bottom: 10px; line-height: 1.2; }
  .faq-a { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }
  .faq-a a { color: var(--rojo); text-decoration: none; }

  /* ─── FOOTER ─── */
  footer { background: #080808; padding: 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--blanco); }
  .footer-logo span { color: var(--rojo); }

  /* WhatsApp */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  /* Responsive */
  @media (max-width: 1024px) {
    .main-block { grid-template-columns: 1fr; }
    .info-panel { padding: 48px 40px; }
    .canales-inner { grid-template-columns: repeat(2, 1fr); }
    .mapa-contenido.active { grid-template-columns: 1fr; }
    .mapa-embed { height: 300px; }
    .faq-grid { grid-template-columns: 1fr; }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hero { padding: 48px 20px 0; }
    .hero-inner { flex-direction: column; align-items: flex-start; gap: 28px; padding-bottom: 40px; }
    .hero-right { align-items: flex-start; }
    .hero-desc { text-align: left; }
    .canales-inner { grid-template-columns: 1fr 1fr; }
    .form-panel { padding: 48px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-footer { flex-direction: column; align-items: flex-start; }
    .btn-enviar { width: 100%; text-align: center; }
    .info-panel { padding: 48px 20px; }
    .mapa-tabs { padding: 0 20px; }
    .faq-section { padding: 64px 20px; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #999;
    --gris-texto: #444;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--blanco); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; align-items: center; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── BREADCRUMB ─── */
  .breadcrumb {
    margin-top: 64px;
    background: var(--gris-claro);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gris-medio);
  }
  .breadcrumb a { color: var(--gris-medio); text-decoration: none; transition: color 0.2s; }
  .breadcrumb a:hover { color: var(--rojo); }
  .breadcrumb span { color: var(--negro); font-weight: 600; }

  /* ─── HERO PRODUCTO ─── */
  .producto-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    max-width: 100%;
  }

  /* Galería */
  .galeria {
    background: transparent;
    align-self: start;
    position: relative;
  }
  .galeria-main {
    width: 100%;
    height: auto;
    display: block;
    transition: opacity 0.3s;
  }
  .galeria-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .badge-concesionario {
    background: var(--rojo);
    color: white;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 14px;
  }
  .badge-nuevo {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 14px;
  }
  .thumbnails {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: #1a1a1a;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .thumbnails::-webkit-scrollbar { display: none; }
  .thumb {
    width: 90px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: opacity 0.2s, border-color 0.2s;
    flex-shrink: 0;
  }
  .thumb.active, .thumb:hover { opacity: 1; border-color: var(--rojo); }

  /* Panel lateral info */
  .panel-info {
    background: var(--blanco);
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid #eee;
    overflow-y: auto;
    max-height: calc(100vh - 100px);
    position: sticky;
    top: 64px;
  }
  .panel-marca {
    font-size: 12px;
    font-weight: 700;
    color: var(--rojo);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .panel-marca::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--rojo);
  }
  .panel-titulo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
  }
  .panel-subtitulo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gris-medio);
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .panel-precio-wrap {
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 28px;
  }
  .panel-precio-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gris-medio); margin-bottom: 6px; }
  .panel-precio {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--negro);
    line-height: 1;
    letter-spacing: -1px;
  }
  .panel-precio sup { font-size: 24px; }
  .panel-financiacion {
    margin-top: 10px;
    background: var(--gris-claro);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gris-texto);
  }
  .panel-financiacion strong {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--negro);
  }

  .specs-rapidos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
  .spec-item {
    background: var(--gris-claro);
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .spec-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gris-medio); }
  .spec-val { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--negro); }

  .panel-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .btn-reservar {
    background: var(--rojo);
    color: white;
    border: none;
    padding: 18px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    text-align: center;
  }
  .btn-reservar:hover { background: var(--rojo-dark); transform: translateY(-1px); }
  .btn-llamar {
    background: var(--negro);
    color: white;
    border: none;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    text-decoration: none;
    display: block;
  }
  .btn-llamar:hover { background: #333; }
  .btn-wa {
    background: #25D366;
    color: white;
    border: none;
    padding: 14px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.2s;
  }
  .btn-wa:hover { background: #1ebe5a; }

  .panel-garantias {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 20px;
    border-top: 1px solid #eee;
  }
  .garantia-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gris-texto);
    font-weight: 500;
  }
  .garantia-icon { font-size: 16px; }

  /* ─── CONTENIDO INFERIOR ─── */
  .contenido {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
  }

  /* Tabs */
  .tabs { display: flex; gap: 0; border-bottom: 2px solid #eee; margin-bottom: 40px; }
  .tab {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 24px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    color: var(--gris-medio);
    transition: color 0.2s;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .tab.active { color: var(--negro); border-bottom-color: var(--rojo); }
  .tab:hover { color: var(--negro); }

  .tab-content { display: none; }
  .tab-content.active { display: block; }

  /* Descripción */
  .descripcion p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gris-texto);
    margin-bottom: 20px;
  }
  .descripcion h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 32px 0 12px;
    color: var(--negro);
  }
  .feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gris-texto);
    font-weight: 500;
  }
  .feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--rojo);
    flex-shrink: 0;
  }

  /* Ficha técnica */
  .ficha-tecnica {}
  .ficha-grupo { margin-bottom: 36px; }
  .ficha-grupo-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rojo);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
  }
  .ficha-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 14px;
    font-size: 14px;
  }
  /* El título .ficha-grupo-title ocupa el hijo 1 (impar),
     así el primer .ficha-row es hijo 2 (par) → blanco,
     el segundo es hijo 3 (impar) → gris, y así alterna. */
  .ficha-row:nth-child(even) {
    background: #fff;
  }
  .ficha-row:nth-child(even) .ficha-key { color: var(--gris-texto); font-weight: 500; }
  .ficha-row:nth-child(even) .ficha-val { color: var(--negro); font-weight: 700; }
  .ficha-row:nth-child(odd) {
    background: #f0f0f0;
  }
  .ficha-row:nth-child(odd) .ficha-key { color: #555; font-weight: 500; }
  .ficha-row:nth-child(odd) .ficha-val { color: #222; font-weight: 700; }

  /* Sidebar */
  .sidebar {}
  .sidebar-card {
    background: var(--negro);
    padding: 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
  }
  .sidebar-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--rojo);
  }
  .sidebar-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blanco);
    margin-bottom: 20px;
  }
  .form-group { margin-bottom: 14px; }
  .form-group label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; color: rgba(255,255,255,0.6); }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; border: 1.5px solid rgba(255,255,255,0.1); padding: 12px 14px;
    font-family: var(--font-body); font-size: 15px; color: var(--blanco);
    background: rgba(255,255,255,0.05); transition: border-color 0.2s; appearance: none; resize: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--rojo);
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
  .btn-contactar {
    width: 100%; background: var(--rojo); color: white; border: none; padding: 16px;
    font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; cursor: pointer; transition: background 0.2s; margin-top: 8px;
  }
  .btn-contactar:hover { background: var(--rojo-dark); }

  .sidebar-info {
    background: var(--gris-claro);
    padding: 28px;
  }
  .sidebar-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
  }
  .info-item:last-child { border-bottom: none; }
  .info-icon { font-size: 20px; flex-shrink: 0; }
  .info-text strong { display: block; font-weight: 700; color: var(--negro); margin-bottom: 2px; }
  .info-text span { color: var(--gris-texto); font-size: 13px; }

  /* ─── MOTOS RELACIONADAS ─── */
  .relacionadas {
    background: var(--gris-claro);
    padding: 80px 40px;
  }
  .relacionadas-inner { max-width: 1200px; margin: 0 auto; }
  .rel-header { margin-bottom: 40px; }
  .rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: #ddd; }

  .rel-card {
    background: var(--blanco);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
  }
  .rel-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.12); z-index: 1; position: relative; }
  .rel-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
  .rel-info { padding: 18px 20px 22px; }
  .rel-marca { font-size: 11px; font-weight: 700; color: var(--gris-medio); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
  .rel-nombre { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 12px; line-height: 1.1; }
  .rel-footer { display: flex; justify-content: space-between; align-items: center; }
  .rel-precio { font-family: var(--font-display); font-size: 24px; font-weight: 900; }
  .btn-rel { background: var(--negro); color: white; padding: 8px 18px; font-family: var(--font-display); font-size: 13px; font-weight: 700; text-transform: uppercase; text-decoration: none; transition: background 0.2s; }
  .btn-rel:hover { background: var(--rojo); }

  /* ─── CTA VENDE ─── */
  .cta-vende {
    background: var(--negro);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-vende::before {
    content: 'VENDE';
    position: absolute;
    font-family: var(--font-display);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
  }
  .cta-vende h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .cta-vende p { color: rgba(255,255,255,0.6); font-size: 16px; margin-bottom: 28px; }
  .btn-cta-rojo {
    display: inline-block;
    background: var(--rojo);
    color: white;
    padding: 16px 44px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-cta-rojo:hover { background: var(--rojo-dark); transform: translateY(-2px); }

  /* ─── FOOTER ─── */
  footer { background: #080808; padding: 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--blanco); }
  .footer-logo span { color: var(--rojo); }

  /* WhatsApp flotante */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  /* Responsive */
  @media (max-width: 1024px) {
    .producto-hero { grid-template-columns: 1fr; }
    .panel-info { position: static; max-height: none; }
    .contenido { grid-template-columns: 1fr; }
    .rel-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .breadcrumb { padding: 12px 20px; }
    .contenido { padding: 48px 20px; }
    .relacionadas { padding: 60px 20px; }
    .panel-info { padding: 28px 20px; }
    .feature-list { grid-template-columns: 1fr; }
    .rel-grid { grid-template-columns: 1fr; }
    .specs-rapidos { grid-template-columns: 1fr 1fr; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #999;
    --gris-texto: #444;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--negro);
    background: var(--blanco);
    overflow-x: hidden;
  }

  /* ─── HEADER ─────────────────────────────────────────── */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--negro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    border-bottom: 3px solid var(--rojo);
  }

  .logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    color: var(--blanco);
    letter-spacing: -0.5px;
    text-decoration: none;
  }
  .logo span { color: var(--rojo); }

  nav { display: flex; gap: 32px; align-items: center; }
  nav a {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--rojo); }

  .header-cta {
    display: flex; gap: 12px; align-items: center;
  }
  .tel {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--blanco);
    text-decoration: none;
    letter-spacing: 0.3px;
  }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 18px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .btn-whatsapp:hover { background: #1ebe5a; }

  /* ─── HERO ────────────────────────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
    overflow: hidden;
    background: var(--negro);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background: 
      linear-gradient(105deg, rgba(13,13,13,0.95) 0%, rgba(13,13,13,0.75) 45%, rgba(13,13,13,0.3) 100%),
      url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
  }

  .hero-text {}
  .hero-badge {
    display: inline-block;
    background: var(--rojo);
    color: white;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 24px;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 900;
    color: var(--blanco);
    line-height: 0.92;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: -1px;
  }
  .hero-title em {
    color: var(--rojo);
    font-style: normal;
    display: block;
  }

  .hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 36px;
  }

  .hero-stats {
    display: flex;
    gap: 36px;
  }
  .stat {
    text-align: left;
  }
  .stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--rojo);
    line-height: 1;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Formulario hero */
  .hero-form {
    background: var(--blanco);
    padding: 36px;
    box-shadow: 0 24px 80px rgba(0,0,0,0.4);
    position: relative;
  }
  .hero-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rojo);
  }
  .form-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  .form-subtitle {
    font-size: 13px;
    color: var(--gris-medio);
    margin-bottom: 24px;
  }

  .form-group { margin-bottom: 14px; }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: var(--negro);
  }
  .form-group input, .form-group select {
    width: 100%;
    border: 1.5px solid #DDD;
    border-radius: 3px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--negro);
    background: var(--blanco);
    transition: border-color 0.2s;
    appearance: none;
  }
  .form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--rojo);
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  .btn-primary {
    display: block;
    width: 100%;
    background: var(--rojo);
    color: white;
    border: none;
    padding: 16px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 20px;
  }
  .btn-primary:hover { background: var(--rojo-dark); transform: translateY(-1px); }

  .form-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 12px;
    color: var(--gris-medio);
  }
  .form-trust svg { color: #25D366; flex-shrink: 0; }

  /* ─── SERVICIOS ───────────────────────────────────────── */
  .servicios {
    background: var(--negro);
    padding: 0;
  }
  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
  }
  .servicio-item {
    padding: 36px 28px;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    transition: background 0.2s;
    cursor: pointer;
    text-decoration: none;
  }
  .servicio-item:last-child { border-right: none; }
  .servicio-item:hover { background: rgba(224,16,16,0.1); }
  .servicio-icon {
    width: 44px;
    height: 44px;
    background: var(--rojo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
  }
  .servicio-nombre {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--blanco);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.1;
  }
  .servicio-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
  }

  /* ─── SECCIÓN MOTOS ───────────────────────────────────── */
  .section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
  }
  .section-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.5px;
  }
  .section-title span { color: var(--rojo); }
  .btn-outline {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--negro);
    border: 2px solid var(--negro);
    padding: 12px 24px;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
  }
  .btn-outline:hover { background: var(--negro); color: var(--blanco); }

  /* Cards motos */
  .motos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #eee;
  }

  .moto-card {
    background: var(--blanco);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .moto-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    z-index: 2;
  }

  .moto-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--gris-claro);
  }
  .moto-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .moto-card:hover .moto-img-wrap img { transform: scale(1.05); }

  .moto-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--rojo);
    color: white;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 10px;
  }
  .moto-badge.oferta { background: #ff8c00; }
  .moto-badge.reservada { background: #555; }

  .moto-info { padding: 22px 24px 28px; flex: 1; display: flex; flex-direction: column; }
  .moto-marca {
    font-size: 11px;
    font-weight: 700;
    color: var(--gris-medio);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
  }
  .moto-nombre {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: 0.2px;
  }
  .moto-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }
  .spec {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--gris-texto);
    font-weight: 500;
  }
  .spec-icon { font-size: 14px; }

  .moto-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #F0F0F0;
  }
  .moto-precio {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 900;
    color: var(--negro);
    letter-spacing: -0.5px;
    line-height: 1;
  }
  .moto-precio sup { font-size: 16px; }
  .moto-precio-anterior {
    font-size: 14px;
    color: var(--gris-medio);
    text-decoration: line-through;
    font-weight: 500;
    margin-top: 2px;
  }
  .btn-ver {
    background: var(--rojo);
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-ver:hover { background: var(--rojo-dark); }

  .motos-cta {
    text-align: center;
    margin-top: 52px;
  }
  .btn-catalogo {
    display: inline-block;
    background: var(--negro);
    color: white;
    padding: 18px 52px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-catalogo:hover { background: var(--rojo); transform: translateY(-2px); }

  /* ─── POR QUÉ NOSOTROS ────────────────────────────────── */
  .porque {
    background: var(--gris-claro);
    padding: 100px 40px;
  }
  .porque-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .porque-img {
    position: relative;
  }
  .porque-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .porque-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--rojo);
    color: white;
    padding: 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(224,16,16,0.4);
  }
  .porque-img-badge strong {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    display: block;
    line-height: 1;
  }
  .porque-img-badge span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
  }

  .razones { display: flex; flex-direction: column; gap: 28px; }
  .razon {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .razon-icon {
    width: 48px;
    height: 48px;
    background: var(--rojo);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .razon-texto h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .razon-texto p {
    font-size: 14px;
    color: var(--gris-texto);
    line-height: 1.6;
  }

  /* ─── VENDE TU MOTO ───────────────────────────────────── */
  .vende {
    background: var(--negro);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .vende::before {
    content: 'VENDE';
    position: absolute;
    font-family: var(--font-display);
    font-size: 280px;
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    letter-spacing: -10px;
    pointer-events: none;
  }
  .vende-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .vende-header { text-align: center; margin-bottom: 64px; }
  .vende-header .section-label { color: var(--rojo); }
  .vende-header .section-title { color: var(--blanco); }
  .vende-header p {
    color: rgba(255,255,255,0.6);
    font-size: 17px;
    max-width: 500px;
    margin: 16px auto 0;
    line-height: 1.6;
  }

  .pasos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }
  .pasos::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    z-index: 0;
  }

  .paso {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  .paso-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--rojo);
    color: white;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 3px solid var(--negro);
    box-shadow: 0 0 0 1px var(--rojo);
  }
  .paso h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--blanco);
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .paso p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  .vende-cta {
    text-align: center;
    margin-top: 56px;
  }
  .btn-vende {
    display: inline-block;
    background: var(--rojo);
    color: white;
    padding: 20px 60px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 12px 40px rgba(224,16,16,0.4);
  }
  .btn-vende:hover { background: var(--rojo-dark); transform: translateY(-2px); }

  /* ─── TESTIMONIOS ─────────────────────────────────────── */
  .testimonios { padding: 100px 40px; }
  .testimonios-inner { max-width: 1200px; margin: 0 auto; }
  .testimonios-header { text-align: center; margin-bottom: 56px; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: var(--gris-claro);
    padding: 28px;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .review-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
  .review-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 80px;
    color: var(--rojo);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
  }
  .review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: #FFB800;
    font-size: 16px;
  }
  .review-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gris-texto);
    margin-bottom: 20px;
    font-style: italic;
  }
  .review-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rojo);
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .review-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--negro);
  }
  .review-date { font-size: 12px; color: var(--gris-medio); }

  /* Google rating */
  .google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
    padding: 24px 40px;
    border: 2px solid #F0F0F0;
    max-width: 400px;
    margin: 0 auto 48px;
  }
  .rating-num {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: var(--negro);
  }
  .rating-stars { color: #FFB800; font-size: 22px; margin-bottom: 4px; }
  .rating-label { font-size: 13px; color: var(--gris-medio); font-weight: 500; }

  /* ─── CTA FINAL ───────────────────────────────────────── */
  .cta-final {
    background: var(--rojo);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(0,0,0,0.04) 40px,
      rgba(0,0,0,0.04) 80px
    );
  }
  .cta-final-inner { position: relative; z-index: 1; }
  .cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 70px);
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .cta-final p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
  }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: white;
    color: var(--rojo);
    padding: 18px 40px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
  .btn-border-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 18px 40px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .btn-border-white:hover { background: rgba(255,255,255,0.15); }

  /* ─── CONTACTO / INFO ─────────────────────────────────── */
  .contacto-bar {
    background: var(--negro);
    padding: 40px;
  }
  .contacto-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .contacto-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .contacto-icon {
    font-size: 24px;
    flex-shrink: 0;
  }
  .contacto-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gris-medio);
    margin-bottom: 4px;
  }
  .contacto-val {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--blanco);
  }

  /* ─── FOOTER ──────────────────────────────────────────── */
  footer {
    background: #080808;
    padding: 60px 40px 30px;
    border-top: 3px solid var(--rojo);
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--blanco);
    margin-bottom: 16px;
  }
  .footer-logo span { color: var(--rojo); }
  .footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 280px;
  }
  .footer-social { display: flex; gap: 10px; }
  .social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
  }
  .social-btn:hover { background: var(--rojo); }

  .footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blanco);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--rojo); }

  .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }

  /* ─── WHATSAPP FLOAT ──────────────────────────────────── */
  .wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37,211,102,0.5);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ─── ANIMACIONES ─────────────────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-badge { animation: fadeUp 0.5s ease both; }
  .hero-title { animation: fadeUp 0.5s 0.1s ease both; }
  .hero-desc { animation: fadeUp 0.5s 0.2s ease both; }
  .hero-stats { animation: fadeUp 0.5s 0.3s ease both; }
  .hero-form { animation: fadeUp 0.5s 0.2s ease both; }

  /* Responsive básico */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-form { max-width: 500px; }
    .motos-grid { grid-template-columns: repeat(2, 1fr); }
    .pasos { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .pasos::before { display: none; }
    .porque-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .servicios-grid { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 64px 20px; }
    .motos-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .contacto-bar-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .pasos { grid-template-columns: 1fr; }
    .hero-content { padding: 60px 20px; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #999;
    --gris-texto: #444;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--blanco); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover, nav a.active { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

  /* ─── HERO ─── */
  .hero {
    margin-top: 64px;
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to right, rgba(13,13,13,0.97) 0%, rgba(13,13,13,0.7) 55%, rgba(13,13,13,0.2) 100%),
      url('https://images.unsplash.com/photo-1609630875171-b1321377ee65?w=1600&q=80') center/cover no-repeat;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; width: 100%;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
  }
  .hero-left {}
  .anno-badge {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    animation: fadeUp 0.5s ease both;
  }
  .anno-linea { width: 40px; height: 2px; background: var(--rojo); }
  .anno-texto { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rojo); }

  .hero-titulo {
    font-family: var(--font-display);
    font-size: clamp(60px, 7vw, 100px);
    font-weight: 900;
    color: var(--blanco);
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 32px;
    animation: fadeUp 0.5s 0.1s ease both;
  }
  .hero-titulo em { color: var(--rojo); font-style: normal; display: block; }

  .hero-desc {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 480px;
    animation: fadeUp 0.5s 0.2s ease both;
  }

  /* Números lado derecho */
  .hero-numeros {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(255,255,255,0.06);
    animation: fadeUp 0.5s 0.25s ease both;
    align-self: end;
  }
  .numero-item {
    padding: 32px 28px;
    background: rgba(13,13,13,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.07);
    transition: background 0.3s;
  }
  .numero-item:hover { background: rgba(224,16,16,0.15); }
  .numero-val {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--rojo);
    line-height: 1;
    letter-spacing: -1px;
  }
  .numero-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
  }

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

  /* ─── FRANJA ROJA ─── */
  .franja-roja {
    background: var(--rojo);
    padding: 28px 40px;
    position: relative;
    overflow: hidden;
  }
  .franja-roja::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0,0,0,0.04) 60px, rgba(0,0,0,0.04) 120px);
  }
  .franja-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 60px;
    position: relative; z-index: 1;
    flex-wrap: wrap;
  }
  .franja-item {
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  .franja-item span { font-size: 20px; }

  /* ─── HISTORIA ─── */
  .historia {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  .historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .historia-img-wrap {
    position: relative;
  }
  .historia-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .historia-img-decor {
    position: absolute;
    bottom: -24px; right: -24px;
    width: 180px; height: 180px;
    background: var(--rojo);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    box-shadow: 0 16px 48px rgba(224,16,16,0.4);
    z-index: 2;
  }
  .historia-img-decor strong {
    font-family: var(--font-display);
    font-size: 60px; font-weight: 900;
    color: white; line-height: 1;
  }
  .historia-img-decor span {
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase; letter-spacing: 1px;
    text-align: center; padding: 0 12px;
  }
  .historia-anno-tag {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--negro);
    color: rgba(255,255,255,0.5);
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 8px 14px;
  }

  .section-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rojo); margin-bottom: 12px; }
  .section-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; margin-bottom: 28px; }
  .section-title span { color: var(--rojo); }

  .historia-texto p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gris-texto);
    margin-bottom: 20px;
  }
  .historia-texto p strong { color: var(--negro); font-weight: 600; }

  /* ─── TIMELINE ─── */
  .timeline-section {
    background: var(--negro);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .timeline-section::before {
    content: '1993';
    position: absolute;
    font-family: var(--font-display);
    font-size: 300px; font-weight: 900;
    color: rgba(255,255,255,0.02);
    bottom: -40px; right: -20px;
    letter-spacing: -10px;
    pointer-events: none;
  }
  .timeline-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .timeline-header { margin-bottom: 64px; }
  .timeline-header .section-label { color: var(--rojo); }
  .timeline-header .section-title { color: var(--blanco); }

  .timeline {
    position: relative;
    padding-left: 48px;
  }
  .timeline::before {
    content: '';
    position: absolute;
    left: 10px; top: 8px; bottom: 8px;
    width: 2px;
    background: rgba(255,255,255,0.1);
  }
  .tl-item {
    position: relative;
    margin-bottom: 52px;
    padding-left: 32px;
  }
  .tl-item:last-child { margin-bottom: 0; }
  .tl-dot {
    position: absolute;
    left: -42px; top: 6px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--negro);
    border: 3px solid rgba(255,255,255,0.2);
    transition: border-color 0.3s;
  }
  .tl-item:hover .tl-dot { border-color: var(--rojo); background: var(--rojo); }
  .tl-anno {
    font-family: var(--font-display);
    font-size: 13px; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--rojo);
    margin-bottom: 6px;
  }
  .tl-titulo {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 800;
    text-transform: uppercase;
    color: var(--blanco);
    margin-bottom: 8px;
    line-height: 1.1;
  }
  .tl-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 600px;
  }

  /* ─── SERVICIOS ─── */
  .servicios-section { padding: 100px 40px; background: var(--gris-claro); }
  .servicios-inner { max-width: 1200px; margin: 0 auto; }
  .servicios-header { text-align: center; margin-bottom: 56px; }
  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #ddd;
  }
  .servicio-card {
    background: var(--blanco);
    padding: 44px 36px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }
  .servicio-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 0;
    background: var(--rojo);
    transition: height 0.3s;
  }
  .servicio-card:hover::before { height: 4px; }
  .servicio-card:hover { background: #fafafa; }
  .servicio-num {
    font-family: var(--font-display);
    font-size: 72px; font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 16px;
    transition: color 0.3s;
  }
  .servicio-card:hover .servicio-num { color: rgba(224,16,16,0.1); }
  .servicio-icon { font-size: 32px; margin-bottom: 16px; display: block; }
  .servicio-titulo {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 800;
    text-transform: uppercase; margin-bottom: 12px; line-height: 1.1;
  }
  .servicio-desc { font-size: 14px; color: var(--gris-texto); line-height: 1.7; }

  /* ─── INSTALACIONES ─── */
  .instalaciones { padding: 100px 40px; }
  .instalaciones-inner { max-width: 1200px; margin: 0 auto; }
  .inst-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #eee;
    margin-top: 52px;
  }
  .inst-card {
    background: var(--blanco);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .inst-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    filter: grayscale(20%);
    transition: filter 0.4s;
  }
  .inst-card:hover .inst-img { filter: grayscale(0%); }
  .inst-info { padding: 36px; flex: 1; }
  .inst-tag {
    display: inline-block;
    background: var(--rojo);
    color: white;
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  .inst-titulo {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 12px; line-height: 1;
  }
  .inst-desc { font-size: 15px; color: var(--gris-texto); line-height: 1.7; margin-bottom: 24px; }
  .inst-datos { display: flex; flex-direction: column; gap: 10px; }
  .inst-dato {
    display: flex; align-items: flex-start; gap: 12px;
    font-size: 14px; color: var(--gris-texto);
  }
  .inst-dato-icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
  .inst-dato strong { color: var(--negro); font-weight: 700; display: block; }
  .inst-dato a { color: var(--rojo); text-decoration: none; font-weight: 600; }
  .inst-dato a:hover { text-decoration: underline; }

  /* ─── EQUIPO / FAMILIA ─── */
  .familia {
    background: var(--negro);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  .familia::after {
    content: 'ALCÓN';
    position: absolute;
    font-family: var(--font-display);
    font-size: 240px; font-weight: 900;
    color: rgba(255,255,255,0.025);
    bottom: -20px; right: -20px;
    letter-spacing: -8px;
    pointer-events: none;
  }
  .familia-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
  .familia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 52px;
  }
  .familia-texto p {
    font-size: 16px; color: rgba(255,255,255,0.6);
    line-height: 1.8; margin-bottom: 20px;
  }
  .familia-texto p strong { color: var(--blanco); }
  .familia-quote {
    border-left: 3px solid var(--rojo);
    padding: 20px 28px;
    margin: 32px 0;
    background: rgba(255,255,255,0.03);
  }
  .familia-quote p {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 700;
    color: var(--blanco);
    line-height: 1.4;
    font-style: italic;
    margin: 0;
  }
  .familia-quote cite {
    display: block;
    font-size: 13px; color: var(--rojo);
    font-style: normal; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px;
    margin-top: 10px;
  }

  .valores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .valor-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px 20px;
    transition: border-color 0.2s, background 0.2s;
  }
  .valor-item:hover { border-color: var(--rojo); background: rgba(224,16,16,0.06); }
  .valor-icon { font-size: 28px; margin-bottom: 10px; display: block; }
  .valor-titulo {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 800;
    text-transform: uppercase; color: var(--blanco);
    margin-bottom: 6px;
  }
  .valor-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

  /* ─── INDIAN OFICIAL ─── */
  .indian-section {
    padding: 100px 40px;
    background: var(--gris-claro);
  }
  .indian-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .indian-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .indian-badge-oficial {
    display: inline-flex; align-items: center; gap: 10px;
    background: #1a1a4e;
    color: white;
    font-family: var(--font-display);
    font-size: 13px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    padding: 10px 18px;
    margin-bottom: 24px;
  }
  .indian-badge-oficial::before { content: '★'; color: #gold; font-size: 14px; }
  .indian-desc p { font-size: 16px; color: var(--gris-texto); line-height: 1.8; margin-bottom: 18px; }
  .indian-desc p strong { color: var(--negro); }
  .btn-indian {
    display: inline-block;
    background: #1a1a4e;
    color: white;
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 16px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .btn-indian:hover { background: #0d0d30; }

  /* ─── CTA FINAL ─── */
  .cta-final {
    background: var(--rojo); padding: 80px 40px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0,0,0,0.04) 40px, rgba(0,0,0,0.04) 80px);
  }
  .cta-final-inner { position: relative; z-index: 1; }
  .cta-final h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 68px); font-weight: 900; color: white; text-transform: uppercase; line-height: 0.95; margin-bottom: 16px; letter-spacing: -1px; }
  .cta-final p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.5; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: white; color: var(--rojo); padding: 18px 40px; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; display: inline-block; transition: transform 0.15s, box-shadow 0.15s; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
  .btn-border-white { background: transparent; color: white; border: 2px solid white; padding: 18px 40px; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; display: inline-block; transition: background 0.2s; }
  .btn-border-white:hover { background: rgba(255,255,255,0.15); }

  /* ─── FOOTER ─── */
  footer { background: #080808; padding: 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--blanco); }
  .footer-logo span { color: var(--rojo); }

  /* WhatsApp */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; }
    .historia-grid, .familia-grid, .indian-inner { grid-template-columns: 1fr; gap: 48px; }
    .inst-grid { grid-template-columns: 1fr; }
    .servicios-grid { grid-template-columns: repeat(2, 1fr); }
    .historia-img-decor { display: none; }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hero-content { padding: 60px 20px; }
    .historia, .instalaciones, .familia, .indian-section { padding: 64px 20px; }
    .servicios-section { padding: 64px 20px; }
    .timeline-section { padding: 64px 20px; }
    .servicios-grid { grid-template-columns: 1fr; }
    .valores-grid { grid-template-columns: 1fr; }
    .franja-inner { gap: 24px; }
    .hero-numeros { grid-template-columns: 1fr 1fr; }
  }

:root {
    --rojo: #E01010;
    --rojo-dark: #B50D0D;
    --negro: #0D0D0D;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #999;
    --gris-texto: #444;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'Barlow', sans-serif;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--negro); background: var(--blanco); overflow-x: hidden; }

  /* ─── HEADER ─── */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--negro); display: flex; align-items: center;
    justify-content: space-between; padding: 0 40px; height: 64px;
    border-bottom: 3px solid var(--rojo);
  }
  .logo { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--blanco); text-decoration: none; }
  .logo span { color: var(--rojo); }
  nav { display: flex; gap: 32px; }
  nav a { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.8); text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  nav a:hover { color: var(--rojo); }
  .header-cta { display: flex; gap: 12px; align-items: center; }
  .tel { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--blanco); text-decoration: none; }
  .tel:hover { color: var(--rojo); }
  .btn-whatsapp { background: #25D366; color: white; border: none; border-radius: 4px; padding: 8px 18px; font-family: var(--font-display); font-size: 14px; font-weight: 700; cursor: pointer; text-decoration: none; letter-spacing: 0.5px; text-transform: uppercase; }

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

  .hero-left {
    background: var(--negro);
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .hero-left::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; right: -1px;
    width: 60px;
    background: var(--blanco);
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    z-index: 2;
  }
  .hero-bg-text {
    position: absolute;
    font-family: var(--font-display);
    font-size: 220px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    white-space: nowrap;
    letter-spacing: -8px;
    pointer-events: none;
    line-height: 1;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(224,16,16,0.15);
    border: 1px solid rgba(224,16,16,0.3);
    color: var(--rojo);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 28px;
    width: fit-content;
    animation: fadeUp 0.5s ease both;
  }
  .hero-badge::before { content: '●'; font-size: 8px; animation: pulse 1.5s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(56px, 6vw, 88px);
    font-weight: 900;
    color: var(--blanco);
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 28px;
    letter-spacing: -1px;
    animation: fadeUp 0.5s 0.1s ease both;
  }
  .hero-title em { color: var(--rojo); font-style: normal; display: block; }

  .hero-promesas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s 0.2s ease both;
  }
  .promesa {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
  }
  .promesa-icon {
    width: 32px;
    height: 32px;
    background: var(--rojo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }

  .hero-numeros {
    display: flex;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.1);
    animation: fadeUp 0.5s 0.3s ease both;
  }
  .numero { }
  .numero-val {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    color: var(--rojo);
    line-height: 1;
  }
  .numero-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
  }

  /* ─── FORMULARIO MULTI-PASO ─── */
  .hero-right {
    background: var(--blanco);
    display: flex;
    align-items: center;
    padding: 48px 48px 48px 60px;
  }

  .form-card {
    width: 100%;
    max-width: 400px;
  }

  /* Stepper */
  .stepper {
    display: flex;
    align-items: center;
    margin-bottom: 36px;
    gap: 0;
  }
  .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
    transition: background 0.4s;
  }
  .step.done:not(:last-child)::after { background: var(--rojo); }
  .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--gris-medio);
    background: var(--blanco);
    z-index: 1;
    transition: all 0.3s;
  }
  .step.active .step-num { border-color: var(--rojo); color: var(--rojo); background: rgba(224,16,16,0.06); }
  .step.done .step-num { border-color: var(--rojo); background: var(--rojo); color: white; }
  .step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gris-medio);
    transition: color 0.3s;
  }
  .step.active .step-label { color: var(--negro); }
  .step.done .step-label { color: var(--rojo); }

  /* Pasos del form */
  .form-step { display: none; }
  .form-step.active { display: block; animation: fadeUp 0.3s ease both; }

  .form-step-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  .form-step-sub {
    font-size: 14px;
    color: var(--gris-medio);
    margin-bottom: 24px;
  }

  .fg { margin-bottom: 14px; }
  .fg label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; color: var(--negro); }
  .fg input, .fg select, .fg textarea {
    width: 100%; border: 1.5px solid #DDD; padding: 12px 14px;
    font-family: var(--font-body); font-size: 15px; color: var(--negro);
    background: var(--blanco); transition: border-color 0.2s; appearance: none;
  }
  .fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--rojo); }
  .fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Opciones radio visuales */
  .radio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
  .radio-opt { position: relative; }
  .radio-opt input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
  .radio-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    border: 2px solid #ddd;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s;
    color: var(--gris-texto);
  }
  .radio-label span { font-size: 22px; }
  .radio-opt input:checked + .radio-label { border-color: var(--rojo); color: var(--rojo); background: rgba(224,16,16,0.04); }
  .radio-label:hover { border-color: var(--rojo); }

  /* Estado moto */
  .estado-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 16px; }
  .estado-opt { position: relative; }
  .estado-opt input[type="radio"] { position: absolute; opacity: 0; }
  .estado-label {
    display: block;
    padding: 10px 6px;
    border: 2px solid #ddd;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.2s;
    color: var(--gris-texto);
  }
  .estado-opt input:checked + .estado-label { border-color: var(--rojo); color: var(--rojo); background: rgba(224,16,16,0.04); }
  .estado-label:hover { border-color: #aaa; }

  /* Upload foto */
  .upload-area {
    border: 2px dashed #ddd;
    padding: 28px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    margin-bottom: 14px;
  }
  .upload-area:hover { border-color: var(--rojo); background: rgba(224,16,16,0.02); }
  .upload-icon { font-size: 32px; margin-bottom: 8px; }
  .upload-text { font-family: var(--font-display); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--negro); margin-bottom: 4px; }
  .upload-sub { font-size: 12px; color: var(--gris-medio); }

  .btn-next {
    width: 100%; background: var(--rojo); color: white; border: none; padding: 16px;
    font-family: var(--font-display); font-size: 20px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
    transition: background 0.2s, transform 0.15s; margin-top: 8px;
  }
  .btn-next:hover { background: var(--rojo-dark); transform: translateY(-1px); }
  .btn-back {
    width: 100%; background: transparent; color: var(--gris-medio); border: none;
    padding: 12px; font-family: var(--font-display); font-size: 15px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer; margin-top: 6px;
    transition: color 0.2s;
  }
  .btn-back:hover { color: var(--negro); }

  .form-trust-row {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 14px; font-size: 12px; color: var(--gris-medio); text-align: center;
  }

  /* Pantalla de éxito */
  .form-success { display: none; text-align: center; padding: 20px 0; }
  .form-success.active { display: block; animation: fadeUp 0.4s ease both; }
  .success-icon { font-size: 64px; margin-bottom: 16px; }
  .success-title { font-family: var(--font-display); font-size: 32px; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
  .success-sub { font-size: 15px; color: var(--gris-texto); line-height: 1.6; margin-bottom: 24px; }
  .success-info {
    background: var(--gris-claro);
    padding: 16px 20px;
    text-align: left;
    margin-bottom: 20px;
  }
  .success-info p { font-size: 14px; color: var(--gris-texto); margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }

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

  /* ─── POR QUÉ VENDERNOS ─── */
  .porque {
    padding: 100px 40px;
    background: var(--gris-claro);
  }
  .porque-inner { max-width: 1200px; margin: 0 auto; }
  .section-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--rojo); margin-bottom: 10px; }
  .section-title { font-family: var(--font-display); font-size: clamp(36px, 4vw, 56px); font-weight: 900; text-transform: uppercase; line-height: 1; letter-spacing: -0.5px; margin-bottom: 52px; }
  .section-title span { color: var(--rojo); }

  .porque-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: #ddd; }
  .porque-item {
    background: var(--blanco);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.2s;
  }
  .porque-item:hover { background: var(--negro); }
  .porque-item:hover .porque-num,
  .porque-item:hover .porque-titulo,
  .porque-item:hover .porque-desc { color: inherit; }
  .porque-item:hover .porque-titulo { color: var(--blanco); }
  .porque-item:hover .porque-desc { color: rgba(255,255,255,0.5); }

  .porque-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    color: var(--rojo);
    line-height: 1;
  }
  .porque-titulo {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    transition: color 0.2s;
  }
  .porque-desc {
    font-size: 14px;
    color: var(--gris-texto);
    line-height: 1.6;
    transition: color 0.2s;
  }

  /* ─── CÓMO FUNCIONA ─── */
  .como { padding: 100px 40px; }
  .como-inner { max-width: 1200px; margin: 0 auto; }
  .como-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    margin-top: 52px;
  }
  .como-grid::before {
    content: '';
    position: absolute;
    top: 36px; left: 12%; right: 12%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--rojo) 0, var(--rojo) 8px, transparent 8px, transparent 18px);
  }
  .paso {
    text-align: center;
    padding: 0 16px;
    position: relative;
    z-index: 1;
  }
  .paso-burbuja {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--negro);
    color: white;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--blanco);
    box-shadow: 0 0 0 2px var(--negro);
    transition: background 0.3s;
    position: relative;
  }
  .paso:hover .paso-burbuja { background: var(--rojo); }
  .paso-emoji { font-size: 28px; position: absolute; bottom: -12px; right: -8px; }
  .paso h3 { font-family: var(--font-display); font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
  .paso p { font-size: 14px; color: var(--gris-texto); line-height: 1.6; }

  /* ─── FAQ ─── */
  .faq { padding: 100px 40px; background: var(--negro); }
  .faq-inner { max-width: 800px; margin: 0 auto; }
  .faq-header { text-align: center; margin-bottom: 52px; }
  .faq-header .section-label { color: var(--rojo); }
  .faq-header .section-title { color: var(--blanco); margin-bottom: 0; }

  .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .faq-pregunta {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--blanco);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    gap: 16px;
    transition: color 0.2s;
  }
  .faq-pregunta:hover { color: var(--rojo); }
  .faq-icon {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s;
    color: var(--gris-medio);
  }
  .faq-item.open .faq-icon { background: var(--rojo); border-color: var(--rojo); color: white; transform: rotate(45deg); }
  .faq-respuesta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
  }
  .faq-item.open .faq-respuesta { max-height: 300px; padding-bottom: 22px; }
  .faq-respuesta p { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.7; }

  /* ─── TESTIMONIOS ─── */
  .testimonios { padding: 100px 40px; }
  .testimonios-inner { max-width: 1200px; margin: 0 auto; }
  .test-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
  .google-pill {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid #eee;
    padding: 14px 24px;
  }
  .google-num { font-family: var(--font-display); font-size: 36px; font-weight: 900; line-height: 1; }
  .google-stars { color: #FFB800; font-size: 18px; }
  .google-label { font-size: 12px; color: var(--gris-medio); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }

  .test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .test-card {
    padding: 28px;
    border: 1px solid #eee;
    position: relative;
    transition: box-shadow 0.2s, border-color 0.2s;
  }
  .test-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: var(--rojo); }
  .test-marca { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gris-medio); margin-bottom: 6px; }
  .test-moto { font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--negro); margin-bottom: 4px; }
  .test-precio { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--rojo); margin-bottom: 16px; }
  .test-stars { color: #FFB800; font-size: 14px; margin-bottom: 10px; }
  .test-texto { font-size: 14px; color: var(--gris-texto); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
  .test-autor { display: flex; align-items: center; gap: 10px; }
  .test-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--rojo); color: white; font-family: var(--font-display); font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
  .test-nombre { font-weight: 700; font-size: 14px; }
  .test-fecha { font-size: 12px; color: var(--gris-medio); }

  /* ─── CTA FINAL ─── */
  .cta-final {
    background: var(--rojo);
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-final::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0,0,0,0.04) 40px, rgba(0,0,0,0.04) 80px);
  }
  .cta-final-inner { position: relative; z-index: 1; }
  .cta-final h2 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 72px); font-weight: 900; color: white; text-transform: uppercase; line-height: 0.95; margin-bottom: 16px; letter-spacing: -1px; }
  .cta-final p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 36px; max-width: 460px; margin-left: auto; margin-right: auto; line-height: 1.5; }
  .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-white { background: white; color: var(--rojo); padding: 18px 40px; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: transform 0.15s, box-shadow 0.15s; display: inline-block; }
  .btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }
  .btn-border-white { background: transparent; color: white; border: 2px solid white; padding: 18px 40px; font-family: var(--font-display); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; transition: background 0.2s; display: inline-block; }
  .btn-border-white:hover { background: rgba(255,255,255,0.15); }

  /* ─── FOOTER ─── */
  footer { background: #080808; padding: 40px; border-top: 3px solid var(--rojo); }
  .footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.3); }
  .footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--blanco); }
  .footer-logo span { color: var(--rojo); }

  /* WhatsApp flotante */
  .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 8px 24px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; }
  .wa-float:hover { transform: scale(1.1); }

  /* Responsive */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 60px 40px; }
    .hero-left::after { display: none; }
    .hero-right { padding: 48px 40px; justify-content: center; }
    .porque-grid { grid-template-columns: repeat(2, 1fr); }
    .como-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .como-grid::before { display: none; }
    .test-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    header { padding: 0 20px; }
    nav { display: none; }
    .hero-left { padding: 48px 20px; }
    .hero-right { padding: 40px 20px; }
    .porque { padding: 64px 20px; }
    .como { padding: 64px 20px; }
    .faq { padding: 64px 20px; }
    .testimonios { padding: 64px 20px; }
    .porque-grid { grid-template-columns: 1fr; }
    .como-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .test-header { flex-direction: column; align-items: flex-start; gap: 20px; }
    .radio-grid { grid-template-columns: 1fr 1fr; }
  }

