.hero {
  position: relative;
  height: 40vh;
  overflow: hidden;
}

.video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.btn-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .video-bg {
    display: none;
  }
}
.barra {
    border: 1 orange solid;
}