* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  background-color: var(--Surface-Surface-Secondary-Dark);
  color: var(--Text-Text-Dark);
  line-height: 1.6;
  width: 100%;
 max-width: 1442px;
  margin: 0 auto;
}


header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--dark-translucent);
  z-index: 10;
  border-bottom: 0.5px solid rgb(255 255 255 / 29%);
}

.navbar {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  width: 198px;
  height: 30px;
  aspect-ratio: 33/5;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--Text-Text-White);
  text-decoration: none;
  transition: 0.3s;
  font-family: var(--font-nav-rubik);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.nav-links a:hover {
  color: var(--link-hover);
}

.nav-links a.active {
  color: var(--Primary-Brand-400-Brand);
  font-weight: 500;
  text-decoration: underline;
}

.btnSesion {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-family: var(--font-nav-rubik);
  background: var(--Primary-Brand-400-Brand);
  color: var(--Text-Text-White);
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.menu-btn {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #70d64c;
}

/* main section video -  video fondo*/



.video-fondo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*degradado*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: RGBA(0, 0, 0, 0.329);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.79) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}


/* div- animacion */
@keyframes scanner {
  0%,
  10% {
    top: 0;
  }

  40%,
  60% {
    top: calc(100% - 2px);
    /* altura de la línea verde */
  }

  90%,
  100% {
    top: 0;
  }
}

@media (max-width: 768px) {
  .animacion {
    display: none;
  }
   .menu-btn {
    display: block;
  }

  .btnSesion {
    display: none;
  }

 
}


@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    text-align: center;
    display: none;
    padding: 20px 0;
     background-color: var(--Surface-Surface-Secondary-Dark);
  }

  .nav-links.active {
    display: flex;
  }

}