.container {
  max-width: 960px;
}

/*
 * Custom translucent site header
 */


.navbar-nav .nav-link:hover {
    background-color: rgb(80, 73, 216); /* Color de fondo al pasar el cursor */
    color: rgb(205 55% 4%);          /* Color del texto al pasar el cursor */
  }
.navbar-brand:hover {
    background-color: rgb(80, 73, 216); /* Color de fondo al pasar el cursor */
    color: rgb(248, 250, 251);          /* Color del texto al pasar el cursor */
  }
   

.bg-primary {
  background-color: hwb(259 11% 41%) !important; /* !important para asegurar que se aplique */
}

.justificado {
  text-align: justify;
}

.contenedor-video {
  display: flex;
  justify-content: center; /* Centra el video horizontalmente */
  align-items: center; /* Centra el video verticalmente */
  height: 100vh; /* Ocupa toda la altura de la ventana (viewport) */
}
/*
 * Dummy devices (replace them with your own or something else entirely!)
 */

 
.product-device {
  position: absolute;
  right: 10%;
  bottom: -30%;
  width: 300px;
  height: 540px;
  background-color: hsl(0, 18%, 97%);
  border-radius: 21px;
  transform: rotate(30deg);
}

.product-device::before {
  position: absolute;
  top: 10%;
  right: 10px;
  bottom: 10%;
  left: 10px;
  content: "";
  background-color: rgba(255, 255, 255, .1);
  border-radius: 5px;
}

.product-device-2 {
  top: -25%;
  right: auto;
  bottom: 0;
  left: 5%;
  background-color: #e5e5e5;
}


/*
 * Extra utilities
 */

.flex-equal > * {
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    flex: 1;
  }
}
