/*work page*/
.second-nav {
    position: fixed;
    top: 63px;
    left: 0;
    width: 100%;
    height: 35px;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 888;
    padding: 0 20px;
}

.nav-arrow {
  cursor: pointer;
  font-size: 20px;
  border: none;
  background: none;
  color: white;
}

.main-nav {
    width: 100%;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    /* border-bottom: rgb(179, 179, 179) 0.6px solid; */
    /* backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.2); */
    position: fixed;
    align-items: center;
    z-index: 999;
    background: transparent;
}
.main-nav ul{
  display: inline;
}
.main-nav ul li {
  display: inline-block;
  padding: 0 10px;
}
nav a, .menu h1 a{
  text-decoration: none;
  color: white;
}

.cv-pill {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;

      width: fit-content;
      padding: 10px;

      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 40%),
        #0b0b0b;

      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 999px;

      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 0 40px rgba(255,255,255,0.04);

      backdrop-filter: blur(20px);
    }

    .cv-text {
      color: #fff;
      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.04em;
      white-space: nowrap;
    }

    .cv-btn {
      display: flex;
      align-items: center;
      justify-content: center;

      max-width: 230px;

      background: #fff;
      color: #000;

      border-radius: 999px;
      text-decoration: none;

      font-size: 18px;
      font-weight: 600;
      letter-spacing: -0.04em;

      transition: all 0.25s ease;
      padding: 7px 10px;
    }

    .cv-btn:hover {
      transform: scale(0.97);
      background: #e9e9e9;
    }

    @media (max-width: 700px) {
      .cv-pill {
        width: calc(100% - 32px);
        padding: 12px;
        gap: 12px;
      }

      .cv-text {
        font-size: 1.1rem;
      }

      .cv-text div{
        display: none;
      }

      .cv-btn {
        min-width: 140px;
        height: 56px;
        font-size: 1rem;
      }
      .ext-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
    }





.cv-text{
  display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 400;
}


/* From Uiverse.io by iZOXVL */ 
.boton-elegante {
  padding: 10px 18px;
  border: 2px solid #2c2c2c;
  background-color: #1a1a1a;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: 400;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
  transform: scale(4);
}

.boton-elegante:hover {
  border-color: #666666;
  background: #292929;
}

