/* ═══════════════════════════════════════════════════════════
   ALTHIA LIMO — style.css
   Paleta: Blanco dominante · Negro · Dorado como acento
   Tipografía: Cormorant Garamond (display) + Jost (body)
═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
    --white:       #faf8f4;
    --white-2:     #f0ece4;
    --cream:       #e8e0d0;
    --black:       #0c0c0c;
    --black-soft:  #1a1a1a;
    --black-mid:   #2a2a2a;
    --gold:        #b8963c;
    --gold-light:  #d4af5a;
    --gold-pale:   #e8d49a;
    --text:        #2a2420;
    --text-mid:    #5a5248;
    --text-light:  #8a8078;

    --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
    --f-body:    'Jost', 'Helvetica Neue', sans-serif;

    --max-w: 1240px;
    --gutter: clamp(1.25rem, 5vw, 5rem);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background: var(--white);
    color: var(--text);
    font-family: var(--f-body);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ─── LAYOUT HELPERS ─────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ─── TIPOGRAFÍA COMPARTIDA ──────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: 0.01em;
}

.eyebrow {
    display: block;
    font-family: var(--f-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-head {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    color: var(--black);
    margin-bottom: 0.8rem;
}
.section-desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    max-width: 500px;
    line-height: 1.8;
}
.section-head.centered { text-align: center; }
.section-head.centered .section-desc { margin: 0 auto; }

/* ─── FADE IN ANIMATION ──────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── BOTONES ────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--black);
    color: var(--white);
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--black);
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid var(--black);
    transition: background 0.3s, color 0.3s;
}
.btn-outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.45);
    transition: border-color 0.3s, background 0.3s;
}
.btn-ghost:hover {
    border-color: var(--gold-light);
    background: rgba(255,255,255,0.07);
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    background: transparent;
    color: var(--white);
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.35);
    transition: background 0.3s, border-color 0.3s;
}
.btn-whatsapp:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}


/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s;
}
#header.scrolled {
    background: rgba(250, 248, 244, 0.97);
    box-shadow: 0 1px 0 var(--cream);
}
#header.scrolled .logo-a,
#header.scrolled .logo-name { color: var(--black); }
#header.scrolled .main-nav a { color: var(--text); }
#header.scrolled .main-nav a:hover,
#header.scrolled .main-nav a.active { color: var(--gold); }
#header.scrolled .lang { color: var(--text-mid); }
#header.scrolled .lang.active,
#header.scrolled .lang:hover { color: var(--gold); }
#header.scrolled .btn-reserva {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 72px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
    flex-shrink: 0;
}
.logo-a {
    font-family: var(--f-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
    transition: color 0.3s;
}
.logo-name {
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s;
}
.logo-name em {
    font-style: italic;
    font-family: var(--f-display);
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--gold-light);
}

/* Nav */
.main-nav { margin-left: auto; }
.main-nav ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.main-nav a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: color 0.25s;
    position: relative;
    padding-bottom: 2px;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* Header right */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Language selector */
.lang-selector {
    display: flex;
    gap: 0.6rem;
}
.lang {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.5);
    transition: color 0.25s;
}
.lang:hover, .lang.active { color: var(--gold-light); }

/* Reservar button */
.btn-reserva {
    padding: 0.6rem 1.5rem;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.4);
    color: var(--white);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.btn-reserva:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
#hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    background:
        url('https://images.cdn-files-a.com/uploads/6799335/800_6580af23dcca8.jpg')
        center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,10,10,0.82) 0%,
        rgba(10,10,10,0.55) 55%,
        rgba(10,10,10,0.25) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
    padding-top: 72px;
}

.hero-location {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s var(--ease) 0.2s both;
}

.hero-content h1 {
    font-size: clamp(3.2rem, 7vw, 6.5rem);
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.5rem;
    animation: fadeUp 0.9s var(--ease) 0.4s both;
}
.hero-content h1 em {
    font-style: italic;
    color: var(--gold-pale);
    display: block;
}

.hero-sub {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    color: rgba(255,255,255,0.75);
    max-width: 480px;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeUp 0.9s var(--ease) 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 0.9s var(--ease) 0.8s both;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%       { opacity: 1;   transform: scaleY(1.1); }
}


/* ═══════════════════════════════════════════════════════════
   QUIÉNES SOMOS
═══════════════════════════════════════════════════════════ */
#nosotros { background: var(--white); }

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.nosotros-img {
    position: relative;
}
.nosotros-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

/* Línea dorada decorativa izquierda */
.nosotros-img::before {
    content: '';
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 60px;
    height: 60px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    z-index: 1;
}

.vtc-badge {
    position: absolute;
    bottom: -1.2rem;
    right: -1.2rem;
    background: var(--black);
    color: var(--white);
    padding: 1rem 1.4rem;
    text-align: center;
    min-width: 90px;
}
.vtc-badge strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-light);
    line-height: 1;
}
.vtc-badge span {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-top: 0.3rem;
}

.nosotros-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--black);
    margin-bottom: 1.5rem;
}
.nosotros-text p {
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 1rem;
    line-height: 1.9;
}

.valores {
    margin: 1.8rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.valores li {
    font-size: 0.85rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.valor-dot { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }


/* ═══════════════════════════════════════════════════════════
   QUÉ HACEMOS — SERVICIOS
═══════════════════════════════════════════════════════════ */
#servicios {
    background: var(--black);
    color: var(--white);
}
#servicios .section-head h2 { color: var(--white); }
#servicios .eyebrow { color: var(--gold-light); }
#servicios .section-desc { color: rgba(255,255,255,0.55); }

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
}

.servicio-card {
    background: var(--black);
    padding: 2.5rem 2rem;
    border: none;
    transition: background 0.3s;
}
.servicio-card:hover {
    background: var(--black-soft);
}

.s-icon {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    display: block;
    filter: grayscale(0.2);
}
.servicio-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    font-weight: 300;
}
.servicio-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
}

/* Borde dorado en hover */
.servicio-card {
    position: relative;
}
.servicio-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}
.servicio-card:hover::after { width: 100%; }

.servicios-cta {
    margin-top: 3rem;
    text-align: center;
}
#servicios .btn-outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}
#servicios .btn-outline:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}


/* ═══════════════════════════════════════════════════════════
   POR QUÉ ELEGIRNOS
═══════════════════════════════════════════════════════════ */
#porque {
    background: var(--white-2);
}

.porque-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.porque-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s, transform 0.3s;
}
.porque-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.porque-num {
    display: block;
    font-family: var(--f-display);
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s;
}
.porque-item:hover .porque-num { color: var(--gold-pale); }

.porque-item h3 {
    font-size: 1.1rem;
    color: var(--black);
    margin-bottom: 0.7rem;
    font-weight: 400;
}
.porque-item p {
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.8;
}


/* ═══════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════ */
#cta {
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}
/* Línea dorada decorativa */
#cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cta-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) var(--gutter);
    text-align: center;
}

.eyebrow.light { color: var(--gold-light); }

.cta-inner h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 300;
}
.cta-inner h2 em {
    font-style: italic;
    color: var(--gold-pale);
}

.cta-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 2.5rem;
    line-height: 1.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
#cta .btn-primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}
#cta .btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}


/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
#footer {
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 5rem) var(--gutter);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; display: inline-flex; }
.footer-logo .logo-a { color: var(--gold); }
.footer-logo .logo-name { color: rgba(255,255,255,0.7); }
.footer-logo .logo-name em { color: var(--gold-light); }

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    color: rgba(255,255,255,0.4);
    transition: color 0.25s;
}
.footer-social a:hover { color: var(--gold-light); }

.footer-col h4 {
    font-family: var(--f-body);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
}
.footer-col ul li {
    margin-bottom: 0.55rem;
}
.footer-col ul a,
.footer-col ul li {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s;
    line-height: 1.6;
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact li { display: flex; flex-direction: column; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.5rem var(--gutter);
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .servicios-grid { grid-template-columns: repeat(2, 1fr); }
    .porque-grid    { grid-template-columns: repeat(2, 1fr); }
    .footer-inner   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    /* Header */
    .main-nav {
        display: none;
        position: fixed;
        inset: 72px 0 0 0;
        background: var(--white);
        padding: 2rem var(--gutter);
        flex-direction: column;
        z-index: 99;
    }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; gap: 0; }
    .main-nav a {
        display: block;
        padding: 1rem 0;
        font-size: 0.85rem;
        color: var(--text);
        border-bottom: 1px solid var(--cream);
    }
    .main-nav a:hover,
    .main-nav a.active { color: var(--gold); }
    .main-nav a::after { display: none; }

    .header-right { display: none; }
    .burger { display: flex; }
    #header.scrolled .burger span { background: var(--black); }

    /* Hero */
    .hero-content h1 { font-size: clamp(2.8rem, 10vw, 4rem); }
    .hero-sub br { display: none; }

    /* Nosotros */
    .nosotros-grid { grid-template-columns: 1fr; }
    .nosotros-img { order: 1; }
    .nosotros-text { order: 2; }
    .vtc-badge { right: 0; bottom: -1rem; }

    /* Servicios */
    .servicios-grid { grid-template-columns: 1fr; }

    /* Porque */
    .porque-grid { grid-template-columns: 1fr; gap: 2px; }

    /* Footer */
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-ghost { width: 100%; text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .nosotros-img::before { display: none; }
}

/* ══════════════════════════════════════
   ESTILOS PARA LA PÁGINA DE FLOTA
   ══════════════════════════════════════ */

/* 1. HERO SMALL (Fondo de color sólido como pediste) */
#hero-small {
    background-color: #0a0a0a; /* Negro azabache */
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

#hero-small h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: #ffffff;
    margin-top: 10px;
}

#hero-small h1 em {
    font-style: italic;
    font-weight: 300;
    color: #c5a059; /* Dorado corporativo */
}

/* 2. DISEÑO DE LA SECCIÓN VEHÍCULO */
.vehiculo-detalle {
    padding: 80px 0;
    background-color: #ffffff;
    color: #1a1a1a;
}

.vehiculo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dos columnas: Galería y Texto */
    gap: 60px;
    align-items: center;
}

/* Alternancia de lado (Imagen derecha/izquierda) */
.vehiculo-grid.reverse {
    direction: rtl; /* Cambia el orden visual */
}
.vehiculo-grid.reverse .vehiculo-texto {
    direction: ltr; /* Devuelve el texto a su dirección normal */
}

/* 3. EL CARRUSEL (Scroll Snap) */
.vehiculo-galeria {
    position: relative;
    width: 100%;
}

.carrusel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory; /* Efecto imán */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Ocultar barra de scroll pero mantener funcionalidad */
.carrusel::-webkit-scrollbar {
    display: none;
}

.hero-compact {
    padding-top: 72px;
}

.carrusel img {
    flex: 0 0 100%; /* Cada imagen ocupa el 100% del contenedor */
    width: 100%;
    height: 450px;
    object-fit: cover; /* Ajuste perfecto de la foto */
    scroll-snap-align: start;
}

.instruccion-deslizar {
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* 4. TEXTOS Y ESPECIFICACIONES */
.vehiculo-texto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.vehiculo-texto .descripcion {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
    line-height: 1.7;
}

.specs {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.specs li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
}

.specs li strong {
    min-width: 100px;
    color: #000;
    font-weight: 500;
}

/* 5. DIVISOR ELEGANTE */
.divisor {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #eee, transparent);
    margin: 0 auto;
    width: 80%;
}

/* 6. BOTÓN PRIMARIO (Dorado/Negro) */
.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c5a059;
    transform: translateY(-3px);
}