.inicio-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
  }
  
  /* Video de fondo */
  .inicio-container .bg-video {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    object-fit: cover;
  }
  
  /* Contenido encima del video */
  .overlay-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 2rem;
  }
  
  /* Logo central */
  .once-logo {
    max-width: 350px;
  }
  
  /* Texto principal */
  .overlay-content h2 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    color: #ffffff;
  }
  
  /* Botones */
  .button-wrapper {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  .btn-crear {
    background-color: #ff3b3b;
    color: #fff;
    border: none;
  }
  
  .btn-ya {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
  }
  
  /* Texto legal */
  .legal {
    font-size: 0.75rem;
    color: #ffffff;
  }
  
  .legal a {
    color: #00aaff;
    text-decoration: underline;
  }
  