.modal-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.96);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease;
}

.modal-video.show {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 20px #ff0000;
}

.modal-content video {
  width: 100%;
  height: auto;
  display: block;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  background: #ff0000;
  color: #fff;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  z-index: 2;
}

.close-btn:hover {
  background: #c20000;
}

/* OCULTAR SITIO MIENTRAS SE VE EL VIDEO */
/* body.oculto-hasta-video header,
body.oculto-hasta-video .hero-section,
body.oculto-hasta-video main,0
body.oculto-hasta-video section,
body.oculto-hasta-video footer {
  display: none;
} */

/* AJUSTE HERO */
.hero-section {
  margin-top: 170px;
}

@media (max-width: 768px) {
  .hero-section {
    margin-top: 100px;
  }
}
