

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: rgb(0, 0, 0);
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #d1d1d1;
}

header nav ul {
    display: flex;
    list-style: none;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #4ce3f7; /* Light blue on hover */
}





/* ********************************** */
/*             video de fondo    */
/* ********************************** */

         /* Estilos para el video de fondo */
         .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -10; /* Poner el video detrás del contenido */
        }
        
        .video-background video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none; /* Desactiva la interacción con el video */
        }







/* ********************************** */
/*             BOTONES header        */
/* ********************************** */





.headerbuttons{



        display: flex; /* Flexbox para los botones */
        gap: 30px; /* Espacio entre los botones */
        margin-top: 10px;
    }






/* Estilos para los botones del header */
.header-button {
    padding: 10px 20px; /* Espaciado interno */
    font-size: 1rem; /* Tamaño de texto */
    border: 2px solid #d1d1d1; /* Borde gris claro */
    border-radius: 10px; /* Bordes menos redondeados para un efecto cuadrado */
    background-color: transparent; /* Sin fondo */
    color: #d1d1d1; /* Color del texto gris claro */
    cursor: pointer; /* Cambia el cursor al pasar sobre el botón */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Efecto de transición */
    margin-right: 15px; /* Espaciado entre botones */
    margin-top: 100px;
}










/* ********************************** */
/*          primera secion         */
/* ********************************** */




/* General hero section styles */
.one-section {
    display: flex;
    justify-content: flex-start; /* Alinea todo a la izquierda */
    align-items: flex-start; /* Mantiene el contenido más arriba */
    position: relative;
    padding-left: 80px; /* Mantener el contenido un poco a la derecha */
    padding-top: 5px; /* Ajustado para mover el contenido más abajo */
    overflow: hidden;
}

/* Text styles */
.one-text {
    text-align: left;
    max-width: 700px;
    color: white;
}

.one-text h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}


/* Button styles */
.one-buttons {
    display: flex;
    gap: 20px;
}








/* ********************************** */
/*          texto de la primera seccion    */
/* ********************************** */

.one-text p {
    color: #eeeeee;
    line-height: 10;
    margin-bottom: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 12px 48px;
    background: linear-gradient(to right, #cdcdcd 0, #fff 10%, #abaaaa 20%);
    background-position: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite linear;
    font-weight: 600;
    font-size: 30px;
    text-decoration: none;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
margin-left: 200px;
    margin-top: 70px;
  }





  @-moz-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 180px;
    }
    100% {
      background-position: 180px;
    }
  }
  @-webkit-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
      background-position: 500px;
    }
    100% {
        background-position: 1000px;
    }
  }
  @-o-keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
        background-position: 500px;
      }
      100% {
          background-position: 1000px;
      }
  }
  @keyframes shine {
    0% {
      background-position: 0;
    }
    60% {
        background-position: 500px;
      }
      100% {
          background-position: 1000px;
      }
  }
  







/* ********************************** */
/*             Luz en la parte inferior de la pantalla             */
/* ********************************** */
.bottom-light {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Altura del efecto de luz */
    background: linear-gradient(to top, rgba(0, 123, 255, 0.753), transparent); /* Azul claro y suave */
    pointer-events: none; /* Para que no interfiera con otros elementos */
    z-index: 9999; /* Para que esté por encima de otros elementos */
    transition: opacity 0.5s ease;
}











            /* From Uiverse.io by thewizardofzen */ 
            .headerbut {
              --primary-color: #ffff;
              --secondary-color: #002152;
              --hover-color: #eceff2;
              --arrow-width: 10px;
              --arrow-stroke: 2px;
              box-sizing: border-box;
              border: 0;
              border-radius: 50px;
              color: var(--secondary-color);
              padding: 1em 1.8em;
              background: var(--primary-color);
              display: flex;
              transition: 0.2s background;
              align-items: center;
              gap: 0.6em;
              font-weight: bold;
            }
            
            .headerbut .arrow-wrapper {
              display: flex;
              justify-content: center;
              align-items: center;
            }
            
            .headerbut .arrow {
              margin-top: 1px;
              width: var(--arrow-width);
              background: var(--primary-color);
              height: var(--arrow-stroke);
              position: relative;
              transition: 0.2s;
            }
            
            .headerbut .arrow::before {
              content: "";
              box-sizing: border-box;
              position: absolute;
              border: solid var(--secondary-color);
              border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
              display: inline-block;
              top: -3px;
              right: 3px;
              transition: 0.2s;
              padding: 3px;
              transform: rotate(-45deg);
            }
            
            .headerbut:hover {
              background-color: var(--hover-color);
            }
            
            .headerbut:hover .arrow {
              background: var(--secondary-color);
            }
            
            .headerbut:hover .arrow:before {
              right: 0;
            }
            
            
            