/* ============================================================
   RODISA SEMINUEVOS PREMIUM - Sistema de Diseño Completo
   Paleta: Azul marino (#0D1B3E), Rojo (#C41230), Plata, Blanco
   Tipografía: Barlow Condensed (títulos) + DM Sans (cuerpo)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
    /* Colores primarios */
    --navy:        #0D1B3E;
    --navy-mid:    #152454;
    --navy-light:  #1E3470;
    --red:         #C41230;
    --red-dark:    #9E0E27;
    --red-light:   #E8193D;
    --silver:      #C8CDD6;
    --silver-dark: #8A9099;
    
    /* Neutros */
    --white:       #FFFFFF;
    --off-white:   #F5F6FA;
    --gray-100:    #F0F1F5;
    --gray-200:    #E2E4EC;
    --gray-400:    #9BA3B4;
    --gray-600:    #5A6378;
    --gray-800:    #2E3545;
    --black:       #0A0D14;
    
    /* Semánticos */
    --success:     #16A34A;
    --warning:     #D97706;
    --info:        #2563EB;
    
    /* Footer */
    --footer-bg:   #080E20;
    
    /* Tipografía */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body:    'DM Sans', sans-serif;
    
    /* Espaciado */
    --section-py:  5rem;
    --container:   1280px;
    --radius-sm:   6px;
    --radius:      12px;
    --radius-lg:   20px;
    --radius-xl:   32px;
    
    /* Sombras */
    --shadow-sm:   0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
    --shadow:      0 4px 16px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
    --shadow-lg:   0 12px 40px rgba(0,0,0,.18), 0 4px 16px rgba(0,0,0,.1);
    --shadow-xl:   0 24px 64px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.12);
    --shadow-red:  0 8px 24px rgba(196,18,48,.35);
    --shadow-navy: 0 8px 32px rgba(13,27,62,.4);
    
    /* Transiciones */
    --ease:        cubic-bezier(.4,0,.2,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
    --dur-fast:    150ms;
    --dur:         250ms;
    --dur-slow:    450ms;
    
    /* Nav */
    --nav-h:       72px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--gray-800);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.01em;
}

/* ── Utilidades ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.section-py { padding: var(--section-py) 0; }
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-navy { color: var(--navy); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ── Section Label & Title ──────────────────────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .875rem;
}
.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}
.section-title span { color: var(--red); }
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 560px;
    line-height: 1.7;
}
.section-header { margin-bottom: 3.5rem; }
.section-header.center { text-align: center; }
.section-header.center .section-label { margin: 0 auto .875rem; }
.section-header.center .section-desc { margin: 0 auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .01em;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.1);
    opacity: 0;
    transition: opacity var(--dur-fast);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98); }

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(196,18,48,.45);
}
.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
}
.btn-secondary:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-navy);
}
.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-wa {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-wa:hover {
    background: #20ba58;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37,211,102,.5);
}
.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: var(--radius);
}
.btn-sm {
    padding: .5rem 1.1rem;
    font-size: .85rem;
}
.btn-icon-only {
    padding: .65rem;
    border-radius: var(--radius-sm);
}

/* ── NAV ────────────────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(13,27,62,.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
    background: rgba(13,27,62,.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    gap: 1.5rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.nav-logo-img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
}
.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.nav-logo-text strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: .05em;
}
.nav-logo-text small {
    font-size: .62rem;
    letter-spacing: .15em;
    color: var(--silver);
    text-transform: uppercase;
    font-weight: 500;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: .25rem;
}
.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: rgba(255,255,255,.78);
    padding: .45rem .9rem;
    border-radius: var(--radius-sm);
    transition: color var(--dur-fast), background var(--dur-fast);
    position: relative;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: .9rem;
    right: .9rem;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
}
.btn-wa-nav {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem 1.1rem;
    background: #25D366;
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--dur-fast);
}
.btn-wa-nav:hover {
    background: #20ba58;
    transform: translateY(-1px);
}
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: .5rem;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    cursor: pointer;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
}
.nav-hamburger:hover { background: rgba(255,255,255,.12); }
.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--dur) var(--ease);
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, #1a2d5a 50%, #0a1428 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,18,48,.15) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 30% 80%, rgba(30,52,112,.5) 0%, transparent 60%);
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 30%, transparent 100%);
}
.hero-banner {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    opacity: .18;
    mix-blend-mode: luminosity;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: var(--nav-h);
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - var(--nav-h));
    padding: 4rem 0;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .4rem 1rem;
    background: rgba(196,18,48,.15);
    border: 1px solid rgba(196,18,48,.3);
    border-radius: 100px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #ff6b82;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(8px);
}
.hero-tag .dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .5; transform: scale(1.4); }
}
.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.02;
    margin-bottom: 1.5rem;
    letter-spacing: -.01em;
}
.hero-title .accent {
    background: linear-gradient(135deg, var(--red) 0%, #ff4060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,.72);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
}
.hero-stat { text-align: left; }
.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: .2rem;
}
.hero-stat-num span { color: var(--red); }
.hero-stat-label {
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-car-showcase {
    position: relative;
    width: 100%;
    max-width: 600px;
}
.hero-car-img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(196,18,48,.3));
    animation: floatCar 4s ease-in-out infinite;
}
@keyframes floatCar {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.hero-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(ellipse at bottom, rgba(196,18,48,.4) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: .7; }
    50% { opacity: 1; }
}
.hero-card {
    position: absolute;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    color: var(--white);
}
.hero-card-1 {
    top: 10%;
    right: -5%;
    min-width: 180px;
}
.hero-card-2 {
    bottom: 15%;
    left: -5%;
    min-width: 160px;
}
.hero-card-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
}
.hero-card-label { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: .2rem; }
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255,255,255,.4);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    z-index: 3;
    animation: fadeInUp .8s 1.5s both;
}
.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Animaciones entrada ─────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
.anim-fadeup { animation: fadeInUp .7s var(--ease) both; }
.anim-fadeup-d1 { animation-delay: .1s; }
.anim-fadeup-d2 { animation-delay: .2s; }
.anim-fadeup-d3 { animation-delay: .35s; }
.anim-fadeup-d4 { animation-delay: .5s; }
.anim-fadinright { animation: fadeInRight .7s var(--ease) both; animation-delay: .3s; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ── AUTO CARD ───────────────────────────────────────────────── */
.auto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
    position: relative;
}
.auto-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.auto-card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--gray-100);
}
.auto-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur-slow) var(--ease);
}
.auto-card:hover .auto-card-img { transform: scale(1.06); }
.auto-card-badges {
    position: absolute;
    top: .75rem;
    left: .75rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
    z-index: 2;
}
.auto-card-actions {
    position: absolute;
    top: .75rem;
    right: .75rem;
    display: flex;
    gap: .4rem;
    z-index: 2;
}
.auto-card-fav {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--dur-fast);
    color: var(--gray-400);
    backdrop-filter: blur(4px);
}
.auto-card-fav:hover, .auto-card-fav.active { color: var(--red); background: var(--white); }
.auto-card-fav svg { transition: transform var(--dur-fast) var(--ease-spring); }
.auto-card-fav:hover svg { transform: scale(1.2); }
.auto-card-body {
    padding: 1.25rem 1.25rem .5rem;
    flex: 1;
}
.auto-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .2rem;
    line-height: 1.2;
}
.auto-card-year {
    font-size: .85rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: .75rem;
}
.auto-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem .75rem;
    margin-bottom: .875rem;
}
.auto-card-spec {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .8rem;
    color: var(--gray-600);
}
.auto-card-spec svg { flex-shrink: 0; color: var(--red); }
.auto-card-footer {
    padding: .75rem 1.25rem 1.25rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}
.auto-card-price {
    display: flex;
    flex-direction: column;
}
.auto-card-price-label { font-size: .7rem; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; }
.auto-card-price-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}
.auto-card-price-consultar {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}
.auto-card-btn {
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.1rem;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: .85rem;
    font-weight: 600;
    transition: all var(--dur-fast);
    white-space: nowrap;
    flex-shrink: 0;
}
.auto-card-btn:hover {
    background: var(--red-dark);
    transform: scale(1.04);
}

/* Estado badges */
.estado-badge {
    display: inline-flex;
    align-items: center;
    padding: .3rem .7rem;
    border-radius: 100px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.badge-disponible { background: rgba(22,163,74,.12); color: #16A34A; }
.badge-apartado   { background: rgba(217,119,6,.12);  color: #D97706; }
.badge-vendido    { background: rgba(113,113,122,.12); color: #71717A; }
.badge-destacado  { background: rgba(196,18,48,.12); color: var(--red); }

/* Skeleton loader */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.skeleton-img { height: 200px; }
.skeleton-body { padding: 1.25rem; }
.skeleton-line { height: 14px; margin-bottom: .75rem; }
.skeleton-line.short { width: 60%; }
.skeleton-line.medium { width: 80%; }

/* ── Grid autos ─────────────────────────────────────────────── */
.autos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
    gap: 1.75rem;
}

/* ── Sección Beneficios ─────────────────────────────────────── */
.beneficios-section { background: var(--white); }
.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}
.beneficio-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem;
    transition: all var(--dur) var(--ease);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.beneficio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}
.beneficio-card:hover { border-color: var(--gray-200); box-shadow: var(--shadow-lg); background: var(--white); }
.beneficio-card:hover::before { transform: scaleX(1); }
.beneficio-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--white);
}
.beneficio-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}
.beneficio-desc { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

/* ── Proceso ─────────────────────────────────────────────────── */
.proceso-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
}
.proceso-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.proceso-section .section-title { color: var(--white); }
.proceso-section .section-desc { color: rgba(255,255,255,.65); }
.proceso-steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    position: relative;
}
.proceso-step {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all var(--dur) var(--ease);
}
.proceso-step:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(196,18,48,.4);
    transform: translateY(-4px);
}
.proceso-step-num {
    width: 52px;
    height: 52px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}
.proceso-step-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .5rem;
}
.proceso-step-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* ── Financiamiento ─────────────────────────────────────────── */
.financiamiento-section { background: var(--off-white); }
.financiamiento-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.financiamiento-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.fin-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all var(--dur) var(--ease);
}
.fin-feature:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateX(4px); }
.fin-feature-icon {
    width: 44px;
    height: 44px;
    background: rgba(196,18,48,.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--red);
}
.fin-feature-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .2rem;
}
.fin-feature-text p { font-size: .88rem; color: var(--gray-600); }
.financiamiento-cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.financiamiento-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(196,18,48,.1);
    border-radius: 50%;
}
.financiamiento-cta-box h3 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: .75rem;
    position: relative;
}
.financiamiento-cta-box p { color: rgba(255,255,255,.72); margin-bottom: 2rem; position: relative; }
.financiamiento-cta-box .btn { position: relative; }
.fin-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}
.fin-pill {
    padding: .4rem .9rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 100px;
    font-size: .78rem;
    color: rgba(255,255,255,.8);
}

/* ── Confianza / Certificación ──────────────────────────────── */
.confianza-section { background: var(--white); }
.confianza-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.confianza-item {
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--dur) var(--ease);
}
.confianza-item:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-4px); }
.confianza-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: .3rem;
}
.confianza-num span { color: var(--red); }
.confianza-label { font-size: .88rem; color: var(--gray-600); }

/* ── Testimonios ─────────────────────────────────────────────── */
.testimonios-section { background: var(--gray-100); }
.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.testimonio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--dur) var(--ease);
}
.testimonio-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.testimonio-stars {
    display: flex;
    gap: .25rem;
    margin-bottom: 1rem;
    color: #F59E0B;
}
.testimonio-text {
    font-size: .95rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.testimonio-text::before { content: '"'; font-size: 1.5rem; color: var(--red); line-height: 0; vertical-align: -.3em; margin-right: .1em; }
.testimonio-author {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.testimonio-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}
.testimonio-name { font-weight: 600; color: var(--navy); font-size: .9rem; }
.testimonio-auto { font-size: .78rem; color: var(--gray-400); }

/* ── Contacto Section ────────────────────────────────────────── */
.contacto-section { background: var(--white); }
.contacto-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}
.contacto-info h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
}
.contacto-info p { color: var(--gray-600); margin-bottom: 2rem; line-height: 1.7; }
.contacto-items { display: flex; flex-direction: column; gap: 1rem; }
.contacto-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--off-white);
    border-radius: var(--radius);
    transition: all var(--dur-fast);
}
.contacto-item:hover { background: var(--gray-100); }
.contacto-item-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}
.contacto-item-label { font-size: .75rem; color: var(--gray-400); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .15rem; }
.contacto-item-value { font-weight: 600; color: var(--navy); font-size: .9rem; }

/* ── Formulario ──────────────────────────────────────────────── */
.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .5rem;
}
.form-subtitle { font-size: .9rem; color: var(--gray-600); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: .4rem;
    letter-spacing: .02em;
}
.form-label .req { color: var(--red); }
.form-control {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    color: var(--gray-800);
    background: var(--white);
    transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
    outline: none;
}
.form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(13,27,62,.08);
}
.form-control::placeholder { color: var(--gray-400); }
.form-control.error { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-feedback {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 500;
    display: none;
}
.form-feedback.success { background: rgba(22,163,74,.08); color: var(--success); border: 1px solid rgba(22,163,74,.2); }
.form-feedback.error { background: rgba(196,18,48,.08); color: var(--red); border: 1px solid rgba(196,18,48,.2); }
.form-feedback.show { display: block; }

/* ── Catálogo page ───────────────────────────────────────────── */
.catalogo-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    text-align: center;
    color: var(--white);
}
.catalogo-hero h1 { color: var(--white); margin-bottom: .75rem; }
.catalogo-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }
.catalogo-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
}
.filters-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
}
.filters-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filters-clear {
    font-size: .75rem;
    color: var(--red);
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-body);
}
.filter-group { margin-bottom: 1.5rem; }
.filter-label {
    display: block;
    font-size: .78rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: .6rem;
}
.filter-select {
    width: 100%;
    padding: .6rem .9rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .88rem;
    color: var(--gray-800);
    background: var(--off-white);
    cursor: pointer;
    outline: none;
    transition: border-color var(--dur-fast);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6378' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2.2rem;
}
.filter-select:focus { border-color: var(--navy); }
.filter-range-wrap { display: flex; gap: .5rem; }
.catalogo-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: .75rem;
}
.catalogo-count {
    font-size: .9rem;
    color: var(--gray-600);
}
.catalogo-count strong { color: var(--navy); }
.catalogo-sort {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--gray-600);
}
.catalogo-pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: .9rem;
    font-weight: 600;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: all var(--dur-fast);
}
.page-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.page-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }
.page-btn:disabled { opacity: .4; cursor: not-allowed; }

/* ── Auto Page Individual ────────────────────────────────────── */
.auto-page { padding-top: var(--nav-h); }
.auto-page-hero {
    background: var(--navy);
    padding: 2rem 0;
}
.auto-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.5rem;
}
.auto-breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--dur-fast); }
.auto-breadcrumb a:hover { color: var(--white); }
.auto-breadcrumb .sep { font-size: .65rem; }
.auto-gallery {
    display: grid;
    grid-template-rows: auto auto;
    gap: .75rem;
}
.auto-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--gray-100);
    cursor: zoom-in;
}
.auto-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--dur) var(--ease);
}
.auto-gallery-main:hover img { transform: scale(1.02); }
.auto-gallery-thumbs {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: thin;
}
.auto-gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 56px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--dur-fast);
    background: var(--gray-200);
}
.auto-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.auto-gallery-thumb.active { border-color: var(--red); }
.auto-detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
    padding: 3rem 0;
}
.auto-detail-main {}
.auto-detail-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: .5rem;
}
.auto-detail-meta { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.75rem; align-items: center; }
.auto-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.auto-spec-item {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--gray-200);
}
.auto-spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(13,27,62,.06);
    border-radius: var(--radius-sm);
    margin: 0 auto .75rem;
    color: var(--navy);
}
.auto-spec-label { font-size: .72rem; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .2rem; }
.auto-spec-value { font-weight: 700; color: var(--navy); font-size: .95rem; }
.auto-desc-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .875rem;
    margin-top: 2rem;
}
.auto-desc-text { color: var(--gray-600); line-height: 1.75; font-size: .95rem; }
.auto-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-top: .875rem;
}
.auto-feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    color: var(--gray-600);
}
.auto-feature-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Sticky sidebar auto */
.auto-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.auto-price-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.auto-price-label { font-size: .75rem; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .3rem; }
.auto-price-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 1.5rem;
}
.auto-price-consultar {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 1.5rem;
}
.auto-sidebar-btns { display: flex; flex-direction: column; gap: .75rem; }
.auto-sidebar-btns .btn { width: 100%; justify-content: center; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background var(--dur-fast);
}
.lightbox-close:hover { background: rgba(255,255,255,.2); }
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    transition: background var(--dur-fast);
}
.lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── Comparador ──────────────────────────────────────────────── */
.comparar-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 2px solid var(--red);
    padding: 1rem;
    z-index: 900;
    transform: translateY(100%);
    transition: transform var(--dur) var(--ease);
}
.comparar-bar.active { transform: translateY(0); }
.comparar-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.comparar-label { color: var(--white); font-size: .9rem; font-weight: 600; white-space: nowrap; }
.comparar-slots { display: flex; gap: .75rem; flex: 1; flex-wrap: wrap; }
.comparar-slot {
    padding: .5rem 1rem;
    background: rgba(255,255,255,.1);
    border: 1px dashed rgba(255,255,255,.3);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.5);
    font-size: .82rem;
    min-width: 160px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.comparar-slot.filled { background: rgba(196,18,48,.2); border-color: rgba(196,18,48,.4); color: var(--white); }
.comparar-slot .remove-btn { cursor: pointer; color: var(--red); margin-left: .5rem; font-size: .75rem; }

/* ── WhatsApp Flotante ─────────────────────────────────────── */
.wa-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.2);
    z-index: 800;
    transition: all var(--dur) var(--ease-spring);
    overflow: visible;
}
.wa-float:hover {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
}
.wa-float::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    animation: waPulse 2.5s ease-in-out infinite;
    z-index: -1;
}
@keyframes waPulse {
    0%  { transform: scale(1); opacity: .7; }
    70% { transform: scale(1.6); opacity: 0; }
    100%{ transform: scale(1.6); opacity: 0; }
}
.wa-float-tooltip {
    position: absolute;
    right: calc(100% + .75rem);
    background: var(--navy);
    color: var(--white);
    padding: .4rem .85rem;
    border-radius: var(--radius-sm);
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(6px);
    transition: all var(--dur-fast);
}
.wa-float-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--navy);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; transform: translateX(0); }

/* ── Favoritos toast ─────────────────────────────────────────── */
.fav-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--navy);
    color: var(--white);
    padding: .75rem 1.5rem;
    border-radius: 100px;
    font-size: .88rem;
    font-weight: 500;
    z-index: 1500;
    transition: transform var(--dur) var(--ease-spring);
    white-space: nowrap;
    pointer-events: none;
}
.fav-toast.show { transform: translateX(-50%) translateY(0); }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--footer-bg); color: var(--white); position: relative; margin-top: 0; }
.footer-wave { margin-bottom: -1px; line-height: 0; }
.footer-wave svg { width: 100%; display: block; }
.footer-body { padding: 4rem 0 2rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
}
.footer-logo { width: 56px; margin-bottom: 1rem; }
.footer-slogan {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--red);
    margin-bottom: .5rem;
    letter-spacing: .04em;
}
.footer-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.65; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .75rem; }
.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--dur-fast);
}
.social-link:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.footer-title {
    font-family: var(--font-heading);
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
    font-size: .85rem;
    color: rgba(255,255,255,.5);
    transition: color var(--dur-fast);
    padding: .15rem 0;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-list { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-list li { display: flex; gap: .75rem; align-items: center; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-contact-list li svg { flex-shrink: 0; color: var(--red); }
.footer-contact-list a { color: rgba(255,255,255,.5); transition: color var(--dur-fast); }
.footer-contact-list a:hover { color: var(--white); }
.footer-marcas { display: flex; flex-wrap: wrap; gap: .5rem; }
.footer-marcas span {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    padding: .25rem .6rem;
    background: rgba(255,255,255,.05);
    border-radius: 100px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 1.25rem 0;
}
.footer-bottom-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .8rem;
    color: rgba(255,255,255,.3);
}
.footer-credits a { color: rgba(255,255,255,.3); transition: color var(--dur-fast); }
.footer-credits a:hover { color: rgba(255,255,255,.7); }

/* ── Catálogo ─────────────────────────────────────────────── */
.catalogo-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    text-align: center;
    color: var(--white);
}
.catalogo-hero p { color: rgba(255,255,255,.65); margin-top: .5rem; }

.catalogo-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters panel */
.filters-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}
.filters-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filters-clear {
    font-size: .72rem;
    font-weight: 600;
    color: var(--red);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.filters-clear:hover { text-decoration: underline; }
.filter-group { margin-bottom: 1.1rem; }
.filter-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: .4rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.filter-select {
    width: 100%;
    padding: .55rem .8rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: .875rem;
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--off-white);
    appearance: none;
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6378' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2rem;
    cursor: pointer;
    transition: border-color var(--dur-fast);
}
.filter-select:focus { border-color: var(--navy); background-color: var(--white); }

.catalogo-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.catalogo-count { font-size: .9rem; color: var(--gray-600); }
.catalogo-count strong { color: var(--navy); }
.catalogo-sort { display: flex; align-items: center; gap: .5rem; font-size: .85rem; }
.catalogo-sort .filter-select { width: auto; }

.catalogo-pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.page-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    transition: all var(--dur-fast);
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); }
.page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── Comparador bar ────────────────────────────────────────── */
.comparar-bar {
    position: fixed;
    bottom: -100px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 1rem 2rem;
    z-index: 200;
    transition: bottom .35s var(--ease);
    box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.comparar-bar.active { bottom: 0; }
.comparar-bar-inner {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.comparar-label {
    font-size: .82rem;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .07em;
}
.comparar-slots { display: flex; gap: .5rem; flex: 1; flex-wrap: wrap; }
.comparar-slot {
    flex: 1;
    min-width: 120px;
    background: rgba(255,255,255,.08);
    border: 1px dashed rgba(255,255,255,.2);
    border-radius: 8px;
    padding: .4rem .75rem;
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    gap: .4rem;
}
.comparar-slot.filled { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.comparar-slot-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.remove-btn { cursor: pointer; color: rgba(255,255,255,.4); flex-shrink: 0; font-size: .8rem; }
.remove-btn:hover { color: var(--red); }

/* ── Auto Detail Page ─────────────────────────────────────── */
.auto-page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.auto-breadcrumb {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    padding: 1.25rem 0 .75rem;
}
.auto-breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--dur-fast); }
.auto-breadcrumb a:hover { color: rgba(255,255,255,.85); }
.auto-breadcrumb .sep { opacity: .35; }

.auto-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
    align-items: start;
    padding: 2.5rem 0 4rem;
}
.auto-detail-main { min-width: 0; }
.auto-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Gallery */
.auto-gallery { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); }
.auto-gallery-main {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: var(--gray-100);
}
.auto-gallery-main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s var(--ease);
    display: block;
}
.auto-gallery-main:hover img { transform: scale(1.03); }
.auto-gallery-thumbs {
    display: flex;
    gap: .5rem;
    padding: .75rem;
    overflow-x: auto;
    background: var(--white);
}
.auto-gallery-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--dur-fast);
    opacity: .7;
}
.auto-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.auto-gallery-thumb:hover { opacity: 1; border-color: var(--silver); }
.auto-gallery-thumb.active { opacity: 1; border-color: var(--red); }

/* Detail meta */
.auto-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .5rem;
    margin-bottom: .5rem;
}
.auto-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.1;
}

/* Specs grid */
.auto-specs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .75rem;
}
.auto-spec-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: box-shadow var(--dur-fast);
}
.auto-spec-item:hover { box-shadow: var(--shadow-sm); }
.auto-spec-icon { margin: 0 auto .5rem; color: var(--red); }
.auto-spec-label { font-size: .68rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-400); margin-bottom: .2rem; }
.auto-spec-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: var(--navy); }

/* Description */
.auto-desc-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--navy); margin: 2rem 0 .75rem; }
.auto-desc-text { color: var(--gray-600); line-height: 1.75; font-size: .95rem; }

/* Features list */
.auto-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
}
.auto-feature-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .75rem;
    background: var(--off-white);
    border-radius: 8px;
    font-size: .85rem;
    color: var(--gray-800);
}
.auto-feature-item::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

/* Price card sidebar */
.auto-price-card {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    color: var(--white);
}
.auto-price-label { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: .35rem; }
.auto-price-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 1.25rem;
}
.auto-price-consultar {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: rgba(255,255,255,.8);
    margin-bottom: .5rem;
}
.auto-sidebar-btns { display: flex; flex-direction: column; gap: .65rem; }
.auto-sidebar-btns .btn { width: 100%; justify-content: center; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
    max-width: calc(100vw - 8rem);
    max-height: calc(100vh - 4rem);
    object-fit: contain;
    border-radius: var(--radius);
}
.lightbox-close, .lightbox-nav {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--dur-fast);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ── Auto page global wrapper ─────────────────────────────── */
.auto-page { background: var(--off-white); min-height: 100vh; }

/* ── Toast favoritos ──────────────────────────────────────── */
.fav-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--navy);
    color: var(--white);
    padding: .65rem 1.4rem;
    border-radius: 100px;
    font-size: .85rem;
    font-weight: 600;
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    white-space: nowrap;
}
.fav-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Contacto Page ───────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    padding: calc(var(--nav-h) + 3rem) 0 3rem;
    text-align: center;
    color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.7); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
    .hero-stats { justify-content: center; }
    .hero-ctas { justify-content: center; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .financiamiento-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    .catalogo-layout { grid-template-columns: 1fr; }
    .filters-panel { position: static; }
    .auto-detail-layout { grid-template-columns: 1fr; }
    .auto-sidebar { position: static; }
}

@media (max-width: 768px) {
    :root { --section-py: 3.5rem; }

    /* Nav mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: rgba(10,20,50,.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 1.5rem 1.5rem;
        gap: .25rem;
        border-bottom: 1px solid rgba(255,255,255,.12);
        box-shadow: 0 8px 32px rgba(0,0,0,.4);
        z-index: 999;
    }
    .nav-links.open { display: flex; }
    .nav-link {
        padding: .75rem 1rem;
        font-size: 1rem;
        border-radius: var(--radius-sm);
        border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav-link:last-child { border-bottom: none; }
    .nav-hamburger { display: flex; }

    /* Ocultar texto y shrink botón WA en móvil */
    .btn-wa-nav { padding: .45rem .75rem; font-size: .8rem; }
    .btn-wa-nav span { display: none; }

    /* Resto responsive */
    .hero-card { display: none; }
    .auto-specs-grid { grid-template-columns: 1fr 1fr; }
    .auto-features-list { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-brand { grid-column: auto; }
    .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
    .hero-stats { gap: 1.5rem; }
    .beneficios-grid { grid-template-columns: 1fr; }
    .proceso-steps { grid-template-columns: 1fr 1fr; }
    .testimonios-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .proceso-steps { grid-template-columns: 1fr; }
    .autos-grid { grid-template-columns: 1fr; }
    .confianza-grid { grid-template-columns: 1fr 1fr; }
    .auto-specs-grid { grid-template-columns: 1fr 1fr; }
}
