@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/*COLOR DE LA BARRA*/
.navbar {
  background: linear-gradient(60deg, #2A3F54, #2A3F54);
  position: fixed;
  top: 0; 
  width: 100%;
  z-index: 1000; 
}

body {
  margin-top: 50px; 
  font-family: 'Poppins', sans-serif;
}

/*ESTILO DE LOS BOTONES DE LA BARRA*/
.nav-link {
  color: #e0e0e0;
  text-decoration: none;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: bold;
}

.nav-link::before {
  margin-left: auto;
}

.nav-link::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #ffffff;
  display: block;
  transition: 0.5s;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after {
  width: 100%;
}

/* AJUSTES MOVILES */
@media (max-width: 768px) {
  /*estilo de los botones de la barra*/
  .nav-link {
    color: #ffffff;
    text-decoration: none;
    border: none;
    background: none;
    font-weight: 700;
  }

  .nav-link::before {
    margin-left: auto;
  }

  .nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #ffffff;
    display: block;
    transition: 0.5s;
  }

  .nav-link:hover {
    color: #ffffff;
  }

  .nav-link:hover::after {
    width: 100%;
  }
}

