body {
    background: #f4f4f4;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* ---- Banner principal ---- */
.hero {
    background: linear-gradient(rgba(10,30,60,0.7), rgba(10,30,60,0.7)),
                url('https://images.unsplash.com/photo-1568772585407-9361f9bf3a87?w=1200') center/cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid #1d4ed8;
}
.hero h1 {
    font-weight: 800;
    letter-spacing: 1px;
}

/* ---- Barra lateral de filtros ---- */
.sidebar-filtros {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}
.sidebar-filtros h6 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    margin-top: 15px;
    margin-bottom: 6px;
}
.sidebar-filtros h6:first-child { margin-top: 0; }

/* ---- Tarjetas de moto ---- */
.card-moto {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
    position: relative;
}
.card-moto:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

.badge-disponibilidad {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    font-size: 0.7rem;
    padding: 5px 10px;
}

.card-moto .marca-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #1d4ed8;
    font-weight: 700;
    text-transform: uppercase;
}

.card-moto .precio-moto {
    color: #0a1e3c;
    font-size: 1.3rem;
    font-weight: 800;
}

/* ---- Botón principal ---- */
.btn-danger {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    font-weight: 600;
}
.btn-danger:hover {
    background-color: #1741b3;
    border-color: #1741b3;
}
.btn-danger:active,
.btn-danger:focus,
.btn-danger.active,
.btn-danger:not(:disabled):not(.disabled):active {
    background-color: #1741b3 !important;
    border-color: #1741b3 !important;
    box-shadow: 0 0 0 0.2rem rgba(29, 78, 216, 0.5) !important;
}

/* ---- Modal ---- */
.modal-header {
    background: #0a1e3c;
    color: white;
    border-bottom: 3px solid #1d4ed8;
}
.modal-header .close {
    color: white;
    opacity: 0.8;
}
.precio-modal {
    color: #1d4ed8;
    font-size: 1.6rem;
    font-weight: 800;
}
.modal-body h6 {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    margin-top: 10px;
}