#hero {
  /* height: calc(100vh - 140px); */
  position: relative;
  height: 550px;
  top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .promo {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 800px;
  margin: auto;
  z-index: 2;
  background: rgba(0,0,0,.4);
  padding: 20px;
  border: 1px solid rgba(255,255,255,.5);
  /* bottom: 30px; */
}
#hero .promo .titulo-hero {
  font-family: var(--titulos);
  font-size: 13pt;
  line-height: 140%;
  text-transform: uppercase;
  color: var(--color4);
  text-shadow: var(--sombras);
  text-align: center;
}
#hero .promo .bajada-hero {
  font-size: 14pt;
  line-height: 130%;
  color: var(--color4);
  text-align: center;
}
#hero .promo button {
  display: inline-block;
  border: none;
  border-radius: 30px;
  padding: 10px 30px;
  background: var(--color1);
  font-size: 14pt;
  color: var(--color4);
  letter-spacing: 1px;
  transition: .5s;
  margin-top: 20px;
  cursor: pointer;
  box-shadow: var(--sombras);
}
#hero .promo button:hover {
  background: var(--color3);
}

#hero video {
  position: absolute;
  top:  0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#hero .capa {
  position: absolute;
  top:  0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #183a61;
  opacity: .3;
  mix-blend-mode: overlay;
  z-index: 1;
}
/* DESDE */
@media (width >= 768px) {
  /* #hero {
    position: relative;
  } */
  #hero .promo .titulo-hero {
    font-size: 24pt;
  }
  #hero .promo .bajada-hero {
    font-size: 16pt;
  }
  #hero .promo button {
    margin-top: 40px;
  }
}
