      :root {
        --navy: #2e566e;
        --navy-dark: #1f3e51;
        --navy-900: #16303f;
        --blue: #09a0f7;
        --blue-deep: #0074e1;
        --green: #2f9e2a;      /* oscurecido: mejor contraste del CTA (era #56c243) */
        --green-soft: #56c243; /* verde brillante de marca para acentos no-texto */
        --green-dark: #2c8a24;
        --yellow: #f7d809;
        --text: #5d6e7b;
        --muted: #6b7a85;      /* oscurecido para contraste AA (era #8c9aa5) */
        --dark: #22323c;
        --bg-light: #f4f7f9;
        --line: #e6edf1;
        --white: #fff;
        --shadow-sm: 0 4px 14px rgba(20, 40, 55, 0.07);
        --shadow-md: 0 10px 30px rgba(20, 40, 55, 0.1);
        --shadow-lg: 0 24px 50px rgba(20, 40, 55, 0.16);
        --radius: 14px;
      }
      * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      /* Foco visible por teclado (accesibilidad) */
      a:focus-visible,
      button:focus-visible,
      input:focus-visible,
      select:focus-visible,
      textarea:focus-visible,
      [tabindex]:focus-visible {
        outline: 2px solid var(--blue-deep);
        outline-offset: 2px;
        border-radius: 4px;
      }
      /* Si el JS no corre, no ocultar el contenido animado */
      @media (scripting: none) {
        .reveal { opacity: 1 !important; transform: none !important; }
      }
      /* Respetar la preferencia de menos movimiento */
      @media (prefers-reduced-motion: reduce) {
        * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
        .reveal { opacity: 1 !important; transform: none !important; }
      }
      body {
        font-family: "Roboto", sans-serif;
        color: var(--text);
        line-height: 1.6;
        background: var(--white);
        overflow-x: hidden;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      h1,
      h2,
      h3,
      h4,
      h5 {
        font-family: "Poppins", sans-serif;
        color: var(--dark);
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.2;
      }
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 24px;
      }
      .eyebrow {
        display: inline-block;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--blue-deep);
        background: rgba(9, 160, 247, 0.1);
        padding: 6px 14px;
        border-radius: 40px;
        margin-bottom: 16px;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 14px 28px;
        border-radius: 10px;
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 15px;
        transition: 0.22s ease;
        cursor: pointer;
        border: 2px solid transparent;
        white-space: nowrap;
      }
      .btn-blue {
        background: var(--blue-deep);
        color: #fff;
        box-shadow: 0 8px 20px rgba(0, 116, 225, 0.28);
      }
      .btn-blue:hover {
        background: var(--blue);
        transform: translateY(-2px);
        box-shadow: 0 12px 26px rgba(0, 116, 225, 0.34);
      }
      .btn-green {
        background: var(--green);
        color: #fff;
        box-shadow: 0 8px 20px rgba(86, 194, 67, 0.28);
      }
      .btn-green:hover {
        background: var(--green-dark);
        transform: translateY(-2px);
      }
      .btn-outline {
        border-color: rgba(255, 255, 255, 0.7);
        color: #fff;
        backdrop-filter: blur(4px);
      }
      .btn-outline:hover {
        background: #fff;
        color: var(--navy-dark);
        border-color: #fff;
      }
      .btn-ghost {
        border-color: var(--line);
        color: var(--navy);
        background: #fff;
      }
      .btn-ghost:hover {
        border-color: var(--blue-deep);
        color: var(--blue-deep);
      }

      /* Top bar */
      .topbar {
        background: var(--navy-900);
        color: #b9ccd7;
        font-size: 13px;
        padding: 9px 0;
      }
      .topbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
      }
      .topbar a {
        color: #b9ccd7;
        transition: 0.2s;
      }
      .topbar a:hover {
        color: #fff;
      }
      .topbar-contact span {
        margin-right: 20px;
      }
      .topbar-contact i {
        margin-right: 7px;
        color: var(--yellow);
      }
      .topbar-social a {
        margin-left: 14px;
      }

      /* Header */
      header.main {
        background: #fff;
        box-shadow: 0 1px 0 var(--line);
        position: sticky;
        top: 0;
        z-index: 100;
        transition: 0.3s;
      }
      header.main.scrolled {
        box-shadow: var(--shadow-md);
      }
      header.main .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
      }
      .logo img {
        height: 60px;
        width: auto;
      }
      nav.main-nav ul {
        display: flex;
        list-style: none;
        gap: 30px;
      }
      nav.main-nav a {
        font-family: "Poppins", sans-serif;
        font-weight: 500;
        color: var(--navy);
        font-size: 15px;
        position: relative;
        padding: 6px 0;
      }
      nav.main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background: var(--blue-deep);
        transition: 0.25s;
      }
      nav.main-nav a:hover {
        color: var(--blue-deep);
      }
      nav.main-nav a:hover::after {
        width: 100%;
      }
      .header-cta {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .burger {
        display: none;
        font-size: 22px;
        color: var(--navy);
        cursor: pointer;
        background: none;
        border: 0;
      }

      /* Hero */
      .hero {
        position: relative;
        min-height: 510px;
        display: flex;
        align-items: center;
        background:
          linear-gradient(
            115deg,
            rgba(22, 48, 63, 0.94) 0%,
            rgba(31, 62, 81, 0.82) 45%,
            rgba(46, 86, 110, 0.4) 100%
          ),
          url("/images/portada.jpg") center/cover no-repeat;
      }
      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
          circle at 82% 30%,
          rgba(9, 160, 247, 0.28),
          transparent 45%
        );
        pointer-events: none;
      }
      .hero .container {
        position: relative;
        z-index: 2;
        color: #fff;
        padding: 48px 24px 95px;
      }
      .hero .rating-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
        color: #fff;
        padding: 7px 16px;
        border-radius: 40px;
        font-size: 13px;
        margin-bottom: 22px;
      }
      .hero .rating-pill .stars {
        color: var(--yellow);
        letter-spacing: 2px;
      }
      .hero h1 {
        color: #fff;
        font-size: 52px;
        font-weight: 800;
        max-width: 680px;
        margin-bottom: 20px;
      }
      .hero h1 span {
        color: var(--yellow);
      }
      .hero p {
        color: #e3ecf1;
        font-size: 19px;
        max-width: 560px;
        margin-bottom: 30px;
      }
      .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
      }

      /* Search card */
      .search-wrap {
        position: relative;
        z-index: 5;
      }
      .search-card {
        background: #fff;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        margin-top: -80px;
        padding: 12px;
      }
      .search-tabs {
        display: flex;
        gap: 6px;
        padding: 6px 6px 0;
      }
      .search-tab {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--muted);
        padding: 10px 20px;
        border-radius: 10px 10px 0 0;
        cursor: pointer;
        border: 0;
        background: none;
      }
      .search-tab.active {
        color: var(--blue-deep);
        background: var(--bg-light);
      }
      .search-card form {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        align-items: end;
        background: var(--bg-light);
        border-radius: 12px;
        padding: 20px;
      }
      .search-field {
        flex: 1;
        min-width: 150px;
      }
      .search-field label {
        display: block;
        font-size: 11px;
        color: var(--muted);
        margin-bottom: 7px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.06em;
      }
      .search-field select {
        width: 100%;
        padding: 13px 12px;
        border: 1px solid var(--line);
        border-radius: 9px;
        font-size: 14px;
        color: var(--dark);
        background: #fff;
        font-family: inherit;
        cursor: pointer;
      }
      .search-card .btn {
        height: 48px;
      }

      /* Brand strip */
      .brands {
        padding: 30px 0;
        border-bottom: 1px solid var(--line);
      }
      .brands .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
      }
      .brands span,
      .brands a {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 20px;
        color: #c4d0d8;
        letter-spacing: 0.02em;
        transition: 0.25s;
        text-decoration: none;
      }
      .brands span:hover,
      .brands a:hover {
        color: var(--navy);
      }

      section {
        padding: 74px 0;
      }
      .section-head {
        text-align: center;
        max-width: 620px;
        margin: 0 auto 46px;
      }
      .section-head h2 {
        font-size: 34px;
      }
      .section-head p {
        color: var(--text);
        font-size: 16px;
      }
      .section-head.left {
        text-align: left;
        margin-left: 0;
      }

      /* Category chips */
      .categories {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
      }
      .cat-chip {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 22px 30px;
        min-width: 130px;
        transition: 0.22s;
      }
      .cat-chip i {
        font-size: 26px;
        color: var(--blue-deep);
      }
      .cat-chip span {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: var(--navy);
      }
      .cat-chip:hover {
        border-color: var(--blue-deep);
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
      }

      /* Split cards */
      .split-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }
      .split-card {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        min-height: 280px;
        display: flex;
        align-items: flex-end;
      }
      .split-card img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        transition: 0.5s;
      }
      .split-card:hover img {
        transform: scale(1.06);
      }
      .split-card .overlay {
        position: relative;
        z-index: 1;
        background: linear-gradient(
          0deg,
          rgba(16, 34, 46, 0.92),
          rgba(16, 34, 46, 0.05)
        );
        width: 100%;
        padding: 30px;
        color: #fff;
      }
      .split-card .overlay span {
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: var(--yellow);
      }
      .split-card .overlay h3 {
        color: #fff;
        font-size: 26px;
        margin: 8px 0 12px;
      }
      .split-card .overlay .link {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 14px;
        color: #fff;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }

      /* Cars grid */
      .cars-head {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 40px;
        gap: 20px;
        flex-wrap: wrap;
      }
      .cars-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .car-card {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform .18s ease, box-shadow .18s ease;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        color: inherit;
      }
      .car-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
      }
      .car-card .car-img {
        position: relative;
        height: 190px;
        overflow: hidden;
        background: var(--bg-light);
      }
      .car-card .car-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
      }
      .car-card:hover .car-img img {
        transform: scale(1.07);
      }
      .badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(22, 48, 63, 0.8);
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-size: 12px;
        font-weight: 700;
        padding: 5px 11px;
        border-radius: 999px;
        backdrop-filter: blur(2px);
      }
      .badge-verif {
        position: absolute;
        top: 12px;
        right: 12px;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: rgba(255, 255, 255, 0.94);
        color: var(--green-dark);
        font-family: "Poppins", sans-serif;
        font-size: 10.5px;
        font-weight: 700;
        letter-spacing: 0.02em;
        padding: 5px 10px;
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      }
      .badge-verif.promo {
        background: var(--yellow);
        color: var(--dark);
        text-transform: uppercase;
      }
      .car-body .car-div {
        height: 1px;
        background: var(--line);
        margin: 12px 0;
      }
      .badge.hot {
        background: #ff5a5a;
        color: #fff;
      }
      .fav {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.92);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        cursor: pointer;
        transition: 0.2s;
        border: 0;
        font-size: 15px;
      }
      .fav:hover,
      .fav.active {
        color: #ff5a5a;
        transform: scale(1.1);
      }
      .car-body {
        padding: 20px;
        display: flex;
        flex-direction: column;
        flex: 1;
      }
      .car-body h4 {
        font-size: 17px;
        color: var(--dark);
        margin-bottom: 4px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* máx 2 líneas; la versión va justo debajo del nombre */
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .car-body .sub {
        font-size: 13px;
        color: var(--muted);
        margin-bottom: 12px;
      }
      .car-body .price {
        font-family: "Poppins", sans-serif;
        color: var(--blue-deep);
        font-weight: 800;
        font-size: 22px;
        margin-bottom: 4px;
        margin-top: auto; /* empuja precio+divisor+specs al fondo, alineados */
      }
      .car-body .price .price-old {
        margin-left: 8px;
        font-size: 14px;
        font-weight: 600;
        color: var(--muted);
        text-decoration: line-through;
      }
      .car-body .msi {
        font-size: 12px;
        color: var(--green-dark);
        font-weight: 600;
        margin-bottom: 14px;
      }
      .car-body .specs {
        display: flex;
        flex-wrap: wrap;
        gap: 8px 14px;
        font-size: 12.5px;
        color: var(--text);
        margin-bottom: 0;
      }
      .car-body .specs span {
        display: flex;
        align-items: center;
        gap: 6px;
      }
      .car-body .specs i {
        color: var(--blue-deep);
      }
      .car-body .btn {
        margin-top: auto;
        justify-content: center;
        width: 100%;
        padding: 12px;
        font-size: 14px;
      }
      .cars-cta {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 46px;
      }

      /* Why us */
      .why {
        background: var(--bg-light);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .why-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 30px 26px;
        box-shadow: var(--shadow-sm);
        transition: 0.25s;
      }
      .why-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
      }
      .why-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: linear-gradient(135deg, var(--blue-deep), var(--blue));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 18px;
      }
      .why-card:nth-child(2) .why-icon {
        background: linear-gradient(135deg, var(--green), var(--green-dark));
      }
      .why-card:nth-child(3) .why-icon {
        background: linear-gradient(135deg, var(--navy), var(--navy-dark));
      }
      .why-card:nth-child(4) .why-icon {
        background: linear-gradient(135deg, #f2b705, var(--yellow));
        color: var(--dark);
      }
      .why-card h4 {
        font-size: 18px;
      }
      .why-card p {
        font-size: 14px;
        margin: 0;
      }

      /* Financing band */
      .financing {
        background: linear-gradient(120deg, var(--navy-900), var(--navy));
        position: relative;
        overflow: hidden;
      }
      .financing::before {
        content: "\f155";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        right: -30px;
        top: -40px;
        font-size: 340px;
        color: rgba(255, 255, 255, 0.04);
      }
      .financing .container {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
      }
      .financing h2 {
        color: #fff;
        font-size: 34px;
      }
      .financing p {
        color: #cddbe4;
        font-size: 16px;
        margin-bottom: 24px;
      }
      .fin-list {
        list-style: none;
        display: grid;
        gap: 14px;
      }
      .fin-list li {
        color: #eaf2f6;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
      }
      .fin-list i {
        color: var(--green);
        font-size: 18px;
      }
      .fin-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 32px;
        box-shadow: var(--shadow-lg);
      }
      .fin-card h4 {
        font-size: 22px;
        text-align: center;
      }
      .fin-badge {
        width: 62px;
        height: 62px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--green), var(--green-dark));
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        margin: 0 auto 18px;
        box-shadow: 0 10px 22px rgba(86, 194, 67, 0.32);
      }
      .fin-card .fin-lead {
        text-align: center;
        font-size: 14.5px;
        color: var(--text);
        margin-bottom: 20px;
      }
      .fin-mini {
        list-style: none;
        display: grid;
        gap: 10px;
        margin-bottom: 24px;
      }
      .fin-mini li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: var(--dark);
        font-weight: 500;
      }
      .fin-mini i {
        color: var(--green-dark);
        background: rgba(86, 194, 67, 0.12);
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
      }
      .fin-card .btn {
        width: 100%;
        justify-content: center;
        margin-top: 0;
      }
      .fin-card .disclaimer {
        font-size: 11px;
        color: var(--muted);
        text-align: center;
        margin-top: 12px;
      }

      /* Steps */
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        counter-reset: step;
      }
      .step {
        text-align: center;
        padding: 0 12px;
      }
      .step .num {
        counter-increment: step;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: rgba(9, 160, 247, 0.1);
        color: var(--blue-deep);
        font-family: "Poppins", sans-serif;
        font-weight: 800;
        font-size: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 18px;
      }
      .step .num::before {
        content: counter(step);
      }
      .step h4 {
        font-size: 18px;
      }
      .step p {
        font-size: 14px;
        margin: 0;
      }

      /* Testimonials */
      .tst {
        background: var(--bg-light);
      }
      .tst-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .tst-card {
        background: #fff;
        border-radius: var(--radius);
        padding: 28px;
        box-shadow: var(--shadow-sm);
      }
      .tst-card .stars {
        color: var(--yellow);
        margin-bottom: 14px;
        letter-spacing: 2px;
      }
      .tst-card p {
        font-size: 15px;
        color: var(--dark);
        margin-bottom: 20px;
      }
      .tst-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .tst-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--blue-deep), var(--navy));
        color: #fff;
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .tst-author strong {
        font-family: "Poppins", sans-serif;
        color: var(--dark);
        font-size: 15px;
        display: block;
      }
      .tst-author small {
        color: var(--muted);
      }

      /* CTA banner */
      .cta-banner {
        background:
          linear-gradient(120deg, rgba(31, 62, 81, 0.95), rgba(9, 160, 247, 0.7)),
          url("/images/ventaa.jpg") center/cover;
        border-radius: 18px;
        color: #fff;
        padding: 56px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 24px;
      }
      .cta-banner h3 {
        color: #fff;
        font-size: 30px;
        margin-bottom: 8px;
      }
      .cta-banner p {
        color: #eaf2f6;
        margin: 0;
        font-size: 16px;
      }

      /* Footer */
      footer {
        background: var(--navy-900);
        color: #9fb3bf;
        padding: 60px 0 0;
      }
      .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 0.8fr 1.4fr;
        gap: 40px;
        margin-bottom: 40px;
      }
      footer h5 {
        color: #fff;
        font-size: 16px;
        margin-bottom: 18px;
      }
      footer p,
      footer a {
        color: #9fb3bf;
        font-size: 14px;
        margin-bottom: 10px;
        display: block;
        transition: 0.2s;
      }
      footer a:hover {
        color: #fff;
      }
      .footer-logo {
        width: 116px;
        height: auto;
        background: #fff;
        padding: 12px;
        border-radius: 12px;
        margin-bottom: 16px;
      }
      .footer-contact-item {
        display: flex;
        gap: 12px;
        align-items: flex-start;
      }
      .footer-contact-item i {
        color: var(--blue);
        margin-top: 4px;
        width: 18px;
      }
      .social-row {
        display: flex;
        gap: 10px;
        margin-top: 16px;
      }
      .social-row a {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        margin: 0;
      }
      .social-row a:hover {
        background: var(--blue-deep);
        color: #fff;
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 20px 0;
        text-align: center;
        font-size: 13px;
        color: #6f8592;
      }

      /* WhatsApp float */
      .wa-float {
        position: fixed;
        right: 22px;
        bottom: 22px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #25d366;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
        z-index: 90;
        transition: 0.2s;
      }
      .wa-float:hover {
        transform: scale(1.08);
      }

      /* Reveal on scroll */
      .reveal {
        opacity: 0;
        transform: translateY(26px);
        transition:
          opacity 0.6s ease,
          transform 0.6s ease;
      }
      .reveal.in {
        opacity: 1;
        transform: none;
      }

      /* Mobile */
      @media (max-width: 1024px) {
        .cars-grid,
        .why-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .footer-grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (max-width: 860px) {
        .financing .container {
          grid-template-columns: 1fr;
        }
        .steps-grid,
        .tst-grid {
          grid-template-columns: 1fr;
        }
        .hero h1 {
          font-size: 38px;
        }
      }
      @media (max-width: 760px) {
        .topbar {
          display: none;
        }
        nav.main-nav {
          position: fixed;
          inset: 0 0 0 auto;
          width: 78%;
          max-width: 320px;
          background: #fff;
          box-shadow: var(--shadow-lg);
          transform: translateX(100%);
          transition: 0.3s;
          padding: 90px 30px;
          z-index: 120;
        }
        nav.main-nav.open {
          transform: none;
        }
        nav.main-nav ul {
          flex-direction: column;
          gap: 4px;
        }
        nav.main-nav a {
          display: block;
          padding: 12px 0;
          border-bottom: 1px solid var(--line);
          font-size: 16px;
        }
        .burger {
          display: block;
          z-index: 130;
        }
        .header-cta .btn-green {
          display: none;
        }
        .split-cards,
        .cars-grid,
        .why-grid,
        .footer-grid {
          grid-template-columns: 1fr;
        }
        .search-card form {
          flex-direction: column;
          align-items: stretch;
        }
        .search-card form .btn {
          justify-content: center;
          margin-top: 16px;
        }
        .hero h1 {
          font-size: 32px;
        }
        .cta-banner {
          padding: 36px 26px;
        }
        section {
          padding: 54px 0;
        }

        /* Regla general en mobile: todo centrado salvo indicación contraria */
        .hero .container { text-align: center; }
        .hero .rating-pill { justify-content: center; flex-wrap: nowrap; white-space: nowrap; font-size: 12px; text-align: center; }
        .hero h1,
        .hero p { max-width: 100%; margin-left: auto; margin-right: auto; }
        .hero-actions { justify-content: center; }
        .hero-actions .btn-blue { width: 50vw; justify-content: center; padding: 18px 24px; font-size: 18px; }
        .section-head.left { text-align: center; align-items: center; }
        .cars-head { flex-direction: column; align-items: center; text-align: center; }
        .cta-banner { flex-direction: column; text-align: center; }
        .cta-banner > div { justify-content: center; width: 100%; }
        .cta-banner .btn { width: 100%; justify-content: center; }
        .financing .container { text-align: center; }
        .financing .fin-list,
        .no-list { display: inline-grid; text-align: left; }
        .why-card,
        .step,
        .tst-card { text-align: center; }
        .tst-author { justify-content: center; }
        /* Iconos/badges de ancho fijo: centrarlos (text-align no los mueve) */
        .why-icon,
        .step .num,
        .fin-badge,
        .card-soft .why-icon { margin-left: auto; margin-right: auto; }
        /* Footer centrado en mobile */
        .footer-grid { text-align: center; }
        .footer-logo { margin-left: auto; margin-right: auto; }
        .social-row { justify-content: center; }
        .footer-contact-item { justify-content: center; }
      }

/* ============================================================
   Páginas internas (listado, detalles, nosotros, contacto, etc.)
   ============================================================ */
.page-head {
  background: linear-gradient(120deg, var(--navy-900), var(--navy));
  color: #fff;
  padding: 54px 0;
  position: relative;
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { color: #fff; font-size: 36px; margin-bottom: 8px; }
.page-head .crumbs { font-size: 14px; color: #b9ccd7; }
.page-head .crumbs a { color: #b9ccd7; }
.page-head .crumbs a:hover { color: #fff; }
.page-section { padding: 66px 0; }
.prose { max-width: 820px; }
.prose p { margin-bottom: 16px; font-size: 16px; }
.card-soft {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.two-col {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}
.form-row { display: grid; gap: 16px; }
.form-row.two { grid-template-columns: 1fr 1fr; }
/* evita que grids anidados (equipamiento) desborden el item del grid */
.form-row > .field, .form-row > * { min-width: 0; }
.field label {
  display: block; font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line);
  border-radius: 9px; font-size: 15px; font-family: inherit; color: var(--dark);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-deep);
  box-shadow: 0 0 0 3px rgba(9,160,247,.12);
}
.form-alert { padding: 12px 16px; border-radius: 9px; font-size: 14px; margin-top: 14px; display: none; }
.form-alert.show { display: block; }
.form-alert.ok { background: rgba(86,194,67,.12); color: var(--green-dark); }
.form-alert.err { background: rgba(255,90,90,.12); color: #d33; }
.map-embed { border: 0; width: 100%; height: 100%; min-height: 340px; border-radius: var(--radius); }
.no-list { list-style: none; display: grid; gap: 12px; }
.no-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.no-list i { color: var(--green-dark); margin-top: 4px; }
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
}

/* ============================================================
   Catálogo (listado, detalles, comparar, comparacion)
   ============================================================ */
.catalog-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
.filter-panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 90px;
}
.filter-panel h4 { font-size: 16px; margin-bottom: 16px; }
.filter-group { margin-bottom: 16px; }
.filter-group label {
  display: block; font-size: 12px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 6px;
}
.filter-group select, .filter-group input {
  width: 100%; padding: 11px 12px; border: 1px solid var(--line);
  border-radius: 9px; font-size: 14px; font-family: inherit; color: var(--dark); background: #fff;
}
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; gap: 16px; flex-wrap: wrap;
}
.catalog-toolbar .count { font-size: 14px; color: var(--muted); }
.catalog-toolbar select { padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; font-family: inherit; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
  min-width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 9px; font-weight: 600; color: var(--navy); background: #fff;
}
.pagination .active { background: var(--blue-deep); color: #fff; border-color: var(--blue-deep); }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state i { font-size: 40px; margin-bottom: 14px; color: var(--line); }

/* Detalles */
.detail-layout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.gallery-main { border-radius: var(--radius); overflow: hidden; background: var(--bg-light); margin-bottom: 12px; }
.gallery-main img { width: 100%; height: 420px; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.gallery-thumbs img { width: 100%; height: 72px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img:hover, .gallery-thumbs img.active { border-color: var(--blue-deep); }
.detail-price { font-family: "Poppins", sans-serif; color: var(--blue-deep); font-weight: 800; font-size: 34px; margin: 10px 0; }
.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.spec-item { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.spec-item i { color: var(--blue-deep); width: 20px; }
.equip-list { display: flex; flex-wrap: wrap; gap: 8px; }
.equip-list span { background: var(--bg-light); border: 1px solid var(--line); border-radius: 20px; padding: 6px 14px; font-size: 13px; }

/* Comparación */
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
.compare-table th { background: var(--navy); color: #fff; font-family: "Poppins", sans-serif; }
.compare-table td:first-child { font-weight: 600; color: var(--muted); text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }

@media (max-width: 1024px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .gallery-main img { height: 280px; }
}

/* Video (detalle) 16:9 responsive */
.video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius); max-width: 860px; background: #000; }
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Chips de filtros activos (listado) */
.filtros-activos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.filtros-activos:empty { display: none; }
.filtro-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(9,160,247,.1); color: var(--blue-deep); border-radius: 999px; padding: 5px 6px 5px 12px; font-size: 12.5px; font-weight: 600; }
.filtro-chip button { background: none; border: 0; color: inherit; cursor: pointer; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; opacity: .75; }
.filtro-chip button:hover { opacity: 1; background: rgba(9,160,247,.18); }
.link-limpiar { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; padding: 0; background: none; border: 0; color: var(--muted, #6b7c86); font-size: 13px; font-weight: 500; cursor: pointer; text-decoration: none; }
.link-limpiar:hover { color: var(--blue-deep); text-decoration: underline; }
.link-limpiar[hidden] { display: none; }
