.hero-motos {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: linear-gradient(rgba(155, 152, 152, 0.3), rgba(0,0,0,0.3)), url(../image/moto_antiguas.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 */
.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;
}





.titulo4 {
  font-family: 'Arial Black', sans-serif;
  color: #333;
  margin-bottom: 40px;
  background: linear-gradient(to top, #ff6a00, #ff3c00);
    padding: 20px;
}











.historia-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
    gap: 20px;
  max-width: 1000px;
  margin: 0 auto 30px auto;

  padding: 10px 20px; 
}

/* imagen */
.principal img {
  width: 260px;
}

/* desplegable */
.desplegable {
  background: #eee;
  border-radius: 10px;
  flex : 1;
  cursor: pointer;
}

/* contenido interno */
.contenido {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
}

.contenido img {
  width: 200px;
  border-radius: 10px;
}

.contenido p {
  max-width: 500px;
}



.contenido {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.desplegable[open] .contenido {
  opacity: 1;
  transform: translateY(0);
}

.desplegable summary {
  display: block;
  width: 100%;
  text-align: center;

  background: #eee;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: bold;
}






