#video01 {
  width: 100%;
  height: auto;
  background-color: black;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 20px;
}

.wrappervideo {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding: 10px;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

.videoitem {
  flex: 0 0 auto;
  width: 250px;
  max-width: 90vw;
  height: 450px;
  border: 2px solid white;
  border-radius: 25px;
  background-color: #111;
  outline: 1px solid yellowgreen;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.videoitem:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
}

.videoitem video,
.videoitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

/* Scrollbar personalizado */
.wrappervideo::-webkit-scrollbar {
  height: 8px;
}
.wrappervideo::-webkit-scrollbar-thumb {
  background: limegreen;
  border-radius: 4px;
}

/* Texto si usas títulos */
h4 {
  color: white;
  text-align: center;
  margin: 5px 0;
}

/* Responsive para pantallas pequeñas */
@media (max-width: 600px) {
  .videoitem {
    width: 200px;
    height: 350px;
  }
}
