Vom Fachmann für dein Motorrad
- Hersteller: Brembo
- Artikelnummer: 07074XS
- Produktart: Bremsbelagsatz
- Material: Sintermetall
- Farbe: Kupferfarben (je nach Ausführung)
- Einbauort: Vorderachse (laut Herstellerangaben, modellabhängig)
- Materialeigenschaften: Sintermetall-Bremsbeläge bieten hohe Bremsleistung, sehr gute Temperaturbeständigkeit und Langlebigkeit. Sie sind für anspruchsvolle Einsätze geeignet und zeigen auch bei Nässe konstante Performance.
- Verpackungsinhalt: 2 Bremsbeläge für einen Bremssattel
- ECE-R90-Zulassung: Ja (modellabhängig)
Der Brembo Bremsbelagsatz Sinter mit der Artikelnummer 07074XS ist ein hochwertiges Ersatzteil für Motorräder verschiedener Hersteller wie BMW, Daelim, Honda, Kawasaki, Kymco, Peugeot und Suzuki. Entwickelt für die Vorderachse, sorgt dieser Satz für zuverlässige Verzögerung und hohe Sicherheit im Straßenverkehr.
Vorteile auf einen Blick
Sintermetall-Bremsbeläge von Brembo bieten zahlreiche Vorteile im täglichen Einsatz.
- Konsistente Bremsleistung bei unterschiedlichen Temperaturen und Wetterbedingungen
- Lange Lebensdauer durch verschleißfestes Material
- Sichere Verzögerung auch bei sportlicher Fahrweise
- Zuverlässige Funktion bei Nässe und Schmutz
Technische Daten
Die wichtigsten Merkmale des Bremsbelagsatzes im Überblick:
- Sintermetall-Mischung für hohe Belastbarkeit
- Kupferfarbene Oberfläche (je nach Ausführung)
- Konstruiert für die Vorderachse vieler Motorradmodelle
- Einfache Montage als passgenaues Ersatzteil
- Laut Hersteller ECE-R90-zugelassen (modellabhängig)
Einsatzbereiche
Brembo Sinter-Bremsbeläge eignen sich besonders für den Einsatz an Straßenmotorrädern verschiedenster Marken. Sie werden von Motorradbegeisterten, Werkstätten sowie im professionellen Bereich genutzt – überall dort, wo Zuverlässigkeit und Performance gefragt sind.
Lieferumfang
- Brembo Bremsbelagsatz Sinter (bestehend aus 2 Belägen für einen Bremssattel)
- Anleitung zur Montage (je nach Ausführung enthalten)
- Hinweis: Die Kompatibilität ist modellabhängig; bitte vor dem Einbau auf Passgenauigkeit achten.
FAQ
Für welche Motorräder ist der Satz geeignet?
Der Bremsbelagsatz passt zu ausgewählten Modellen von BMW, Daelim, Honda, Kawasaki, Kymco, Peugeot und Suzuki. Die genaue Kompatibilität ist abhängig vom jeweiligen Modelljahr und der Ausführung.
Müssen beide Beläge gleichzeitig gewechselt werden?
Es wird empfohlen, immer beide Beläge pro Achse gleichzeitig zu ersetzen.
Sind die Beläge ECE-R90-zugelassen?
Laut Hersteller verfügen die meisten Varianten über eine ECE-R90-Zulassung. Details können je nach Modell abweichen.
Können die Beläge selbst montiert werden?
Mit technischem Grundwissen ist der Einbau möglich. Bei Unsicherheiten empfiehlt sich die Montage durch Fachpersonal.
Müssen die Beläge eingefahren werden?
Ja, eine kurze Einfahrphase wird empfohlen, um optimale Bremsleistung zu erreichen.
Alle Angaben ohne Gewähr.
Via Brembo 14
24035 Curno
Italien
acquisti@brembo.it
Via Stezzano 87
24126 Bergamo
Italien
acquisti@brembo.it
https://www.brembo.com/en/company/contacts
Du musst angemeldet sein, um eine Bewertung abgeben zu können.
Verwandte Produkte

<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Anschlagpuffer YSS 16X15MM
Hersteller: YSS Artikelnummer: 2C43-083-01 Produktart: Anschlagpuffer Abmessungen: 16 x 15 mm (Durchmesser x Höhe) Material:…
6,16€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Vibrationsdämpfer Gabelbrücke Ducati 696 – 1200 Monster Diavel Scrambler Hypermotard Stretfighter
Hersteller: Ducati Artikelnummer: 70011151A Produktart: Vibrationsdämpfer für Gabelbrücke Farbe: Schwarz (je nach Ausführung) Material: Gummi/Metall-Verbund…
12,70€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Ducati Lager Antriebsmitnehmer – SS, Monster, 748-1198, Hypermotard, Panigale, Multistrada
Hersteller: Ducati Artikelnummer: 70250451A Produktart: Lager für Antriebsmitnehmer Einbauort: Hinterradantrieb Material: Hochwertiger Stahl (laut Herstellerangabe)…
18,40€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>
<?php // Obtener el ID del producto actual $product_id = get_the_ID(); // Obtener todas las imágenes de la galería del producto $product_gallery = get_post_meta( $product_id, '_product_image_gallery', true ); // Obtener el enlace del producto $product_link = get_permalink( $product_id ); // Si la galería no está vacía, obtener la primera imagen de la galería if ( $product_gallery ) { $gallery_images = explode( ',', $product_gallery ); $first_image_id = $gallery_images[0]; $image_url = wp_get_attachment_image_src( $first_image_id, 'full' ); } else { // Si no hay imágenes en la galería, obtener la imagen principal del producto $image_id = get_post_thumbnail_id( $product_id ); $image_url = wp_get_attachment_image_src( $image_id, 'full' ); } // Mostrar la imagen con enlace al producto if ( $image_url ) { $image_width = $image_url[1]; $image_height = $image_url[2]; echo '<img src="' . esc_url( $image_url[0] ) . '" alt="' . esc_attr( get_the_title() ) . '" width="' . esc_attr( $image_width ) . '" height="' . esc_attr( $image_height ) . '" loading="lazy" aria-hidden="true">'; } ?><?php global $product; if (!$product->is_in_stock()) { $showText = '<span class="out">Out of stock</span>'; echo $showText; } if ($product->is_on_sale() && $product->get_type() !== 'grouped'){ if ( $product->get_type() == 'variable' ) { $vars = $product->get_available_variations(); $var_cero = $vars[0]['variation_id']; $variable_product = wc_get_product($var_cero); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent_max = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent_max = 0; } $cont_percent = 0; foreach ($vars as $varID) { $variable_product = wc_get_product($varID['variation_id']); $regular_price = $variable_product->get_regular_price(); $sale_price = $variable_product->get_sale_price(); if($sale_price){ $percent = round((($regular_price - $sale_price) / $regular_price) * 100); } else { $percent = 0; } if($percent_max != $percent){ if($percent_max > $percent){ $percent_max = $percent_max; } else { $percent_max = $percent; } } else { $cont_percent++; } #echo $regular_price." - ".$sale_price."%".$percent_max."<br>"; } if($cont_percent == count($vars)){ $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent_max. '%</span>'; } else { $showText = '<span class="onsale">'. __('Up to -', 'woocommerce' ). $percent_max. '%</span>'; } } else { $regular_price = $product->get_regular_price(); $sale_price = $product->get_sale_price(); $percent = round((($regular_price - $sale_price) / $regular_price) * 100); $showText = '<span class="onsale">'. __('-', 'woocommerce' ). $percent . '%</span>'; } echo $showText; } ?>Ducati Simmerring 35x47x6 Vorderrad – 749-1198, Panigale, Hypermotard, Monster, Diavel, Multistrada
Hersteller: Ducati Artikelnummer: 93040521A Produktart: Simmerring (Wellendichtring) für Vorderrad Abmessungen: 35 x 47 x 6…
4,70€
<?php if (!function_exists('show_quantity')) { function show_quantity() { global $product; // Verificar si el producto no es variable, está en stock y no tiene precio vacío if ($product && !$product->is_type('variable') && !$product->is_type('grouped') && $product->is_in_stock() && !empty($product->get_price())) { return true; } else { return false; } } } ?>

Anschlagpuffer YSS 16X15MM
Hersteller: YSS Artikelnummer: 2C43-083-01 Produktart: Anschlagpuffer Abmessungen: 16 x 15 mm (Durchmesser x Höhe) Material:...
6,16€

Vibrationsdämpfer Gabelbrücke Ducati 696 – 1200 Monster Diavel Scrambler Hypermotard Stretfighter
Hersteller: Ducati Artikelnummer: 70011151A Produktart: Vibrationsdämpfer für Gabelbrücke Farbe: Schwarz (je nach Ausführung) Material: Gummi/Metall-Verbund...
12,70€

Ducati Lager Antriebsmitnehmer – SS, Monster, 748-1198, Hypermotard, Panigale, Multistrada
Hersteller: Ducati Artikelnummer: 70250451A Produktart: Lager für Antriebsmitnehmer Einbauort: Hinterradantrieb Material: Hochwertiger Stahl (laut Herstellerangabe)...
18,40€

Ducati Simmerring 35x47x6 Vorderrad – 749-1198, Panigale, Hypermotard, Monster, Diavel, Multistrada
Hersteller: Ducati Artikelnummer: 93040521A Produktart: Simmerring (Wellendichtring) für Vorderrad Abmessungen: 35 x 47 x 6...
4,70€


Bewertungen
Es gibt noch keine Bewertungen.