/* Fondo de vídeo reusable */
.bg{
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: clip;
}

.bg__video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bg__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bg__content{
  position: relative;
  z-index: 2;
}

/* Botón */
.btn{
  font-family: var(--font-sans);
  font-weight: 700;
  padding: 1rem 2.6rem;
  background: #fff;
  border: 1px solid var(--text-dark);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
  color: #575656;
  width: 250px;
  text-align: center;
}

.btn:hover{
  background: var(--text-dark);
  color: #fff;
}
