Tienda de Repuestos

Nuestros Productos

Filtro de aceite

Filtro de aceite

Bs 50

Batería

Batería

Bs 600

Neumático

Neumático

Bs 300

/* General */ body { font-family: Arial, sans-serif; margin: 0; padding: 0; background-color: #f5f5f5; } /* Header */ header { background-color: #333; color: white; padding: 15px; text-align: center; } header h1 { margin: 0; } nav ul { list-style: none; padding: 0; } nav ul li { display: inline; margin: 0 15px; } nav a { color: white; text-decoration: none; font-weight: bold; } nav a:hover { text-decoration: underline; } /* Banner */ .banner { background-color: #007bff; color: white; text-align: center; padding: 50px 0; } .banner button { background-color: #ff5733; color: white; border: none; padding: 10px 20px; cursor: pointer; border-radius: 5px; font-size: 16px; } .banner button:hover { background-color: #c70039; } /* Productos */ .productos { padding: 20px; text-align: center; } .grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; } .producto { background-color: white; border: 1px solid #ddd; border-radius: 5px; padding: 10px; width: 200px; text-align: center; } .producto img { max-width: 100%; height: auto; border-radius: 5px; } .producto h3 { margin: 10px 0; font-size: 18px; } /* Footer */ footer { background-color: #333; color: white; text-align: center; padding: 10px 0; position: fixed; bottom: 0; width: 100%; }