.hero-motos {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../image/carretera.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Arial', sans-serif;
}

.contenido-overlay {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
}

/* Texto de la Izquierda MOTOS B52 */
.texto-izquierda .subtitulo {
  font-size: 24px;
  font-weight: bold;
  display: block;
}

.texto-izquierda .marca-titulo {
  font-size: 120px; 
  line-height: 0.8;
  margin: 0;
  font-family: 'Arial Black', sans-serif;
}

.texto-derecha {
  max-width: 400px;
  text-align: right;
}

.logo-marca {
  width: 200px;
  margin-bottom: 20px;
}

.descripcion {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}










.grid-modelo {
  display: grid;
  grid-template-columns: repeat(4, 200px); 
  justify-content: center;
  gap: 50px;
}

.modelo {
  width: 200px;
  background: #f0e9e9;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
}

.modelo img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-top: 10px;
}

.modelo h3 {
  font-size: 14px;
  margin: 5px 0;
}

.modelo p {
  font-weight: bold;
  margin: 0;
}

.modelo:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


























