/* FUENTE */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--blanco-laix);
  background-color: #000;
}

/* Barra de Navegación */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 300px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.374);
  backdrop-filter: blur(15px);
}
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 50%; /* Puedes ajustar este valor según el diseño */
  background: linear-gradient(to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 40%,
    rgba(255, 255, 255, 0.2) 60%,
    rgba(255, 255, 255, 0) 100%);
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
}
.nav a {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  text-decoration: none;
  color: var(--blanco-laix);
}
.nav a:hover {
  color: var(--rojo-laix);
}

/*  Redes Sociales */
.redes-sociales-fijas {
  position: fixed;
  top: 90%;
  left: 80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 1000;
}

.redes-sociales-fijas img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Para íconos blancos */
  transition: transform 0.3s ease;
}

.redes-sociales-fijas img:hover {
  transform: scale(1.2);
}
/*  Logo de Laix */
.logo-laix{
  position: fixed;
  top: 6%;
  left: 80px;
  transform: translateY(-50%);
  display: flex;
  z-index: 1000; 
}
.logo-laix img {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1); /* Para íconos blancos */
}

/*  Pantalla Principal - Hero */
.hero {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.fondo-laix-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; 
}
.fondo-laix-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left 80%; /* <-- Esto alinea la imagen arriba a la izquierda */
  display: block;
}
.linea-scroll-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 1) 100%);
  z-index: 1;
  opacity: 0.5;
}
.linea-scroll-2 {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 1) 100%);
  z-index: 1;
  opacity: 0.5;
}
.linea-scroll-3 {
  position: absolute;
  top: 70%;
  left: 40%;
  transform: translateX(-50%);
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 1) 100%);
  z-index: 1;
  opacity: 0.2;
}
.linea-scroll-4 {
  position: absolute;
  top: 90%;
  left: 20%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.5) 70%,
    rgba(255, 255, 255, 1) 100%);
  z-index: 1;
  opacity: 0.1;
}
.linea-scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}
.linea-scroll::after {
  animation: pulso 2s infinite;
}

@keyframes pulso {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateX(-50%) scale(1.3);
    opacity: 0.6;
  }
}
.contenido {
  position: relative;
  max-width: 70%;
  z-index: 2;
  padding-left: 700px; /* Ajusta el valor según tu preferencia */
}
.titulo-hero {
  font-family: "Roboto", sans-serif;
  font-weight: 1000;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.2;
}
.titulo-hero2 {
  font-family: "Roboto", sans-serif;
  font-weight: 1000;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}
.resaltado {
  color: var(--rojo-laix);
}

.descripcion-hero {
  font-family: "Roboto", sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  max-width: 90%;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--plomo-laix);
}

.botones {
  display: flex;
  gap: 20px;
}



/* REDES SOCIALES */
.redes-sociales {
  position: absolute;
  top: 45%;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 10;
}

.redes-sociales img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

/* INDICADOR DE SCROLL */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  animation: bounce 2s infinite;
  color: #fff;
  z-index: 5;
}

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, -10px); }
}

.identidad {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding-top: 120px;
  }

  .contenido {
    max-width: 100%;
    text-align: center;
  }

  .visual {
    margin-top: 40px;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}


@media screen and (max-width: 2280px) {
.contenido {
  position: relative;
  max-width: 70%;
  z-index: 2;
  padding-left: 300px; /* Ajusta el valor según tu preferencia */
}
.fondo-laix-drg {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  z-index: 1; /* Por encima de la imagen, debajo del contenido */
  pointer-events: none;
    background: linear-gradient(
    to right,
    #000000 0%,
    #000000 50%,
    rgba(0, 0, 0, 0.597) 80%,
    rgba(0,0,0,0.3) 90%,
    transparent 100%
  );
}
}