


/* Container dos projetos usando grid responsivo */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  /* Card de projeto */
  
  .project-card {
    background: #1e1e1e;
    border-radius: 0.7rem;
    overflow: hidden;
    position: relative;

    --background: linear-gradient(to right, #1358b3 0%, #c4e8f1 100%);
    padding: 0.1rem;
    border-radius: 0.7rem;
    overflow: visible;
    background: #f7ba2b;
    background: var(--background);
    position: relative;
    z-index: 1;
  }  

  .project-card::after{
    position: absolute;
    content: "";
    top: -22px;
    left: 0px;
    right: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    transform: scale(0.76);
    filter: blur(34.5px);
    background: #f7ba2b;
    background: var(--background);
    transition: opacity 0.5s;
  }

/* From Uiverse.io by JAE2Dev */ 

.project-info{
  --color: #1f1a1d;
  background: var(--color);
  /* color: var(--color); */
  padding: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 0.7rem;
}

.project-card .project-title {
  font-weight: light;
  letter-spacing: 0.2em;
  
}

/*Hover*/
.project-card:hover::after {
  opacity: 0.6;
  padding: 0.7rem 0;
  top: 18px;
  transition: 0.6s;
}

.project-card:hover .project-info {
  color: #fff9f9;
  transition: color 1s;
}

.project-links{
  width: 100%;
  justify-content:center;
  align-items: center;
}



  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* Título do projeto */
  .project-title {
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  /* Descrição do projeto */
  .project-description {
    font-size: 1em;
    margin-bottom: 15px;
    line-height: 1.5;
    display: flex;
    
  }

  .project-description img {
    width: 90px;
  }

  ul li{
    font-size: 0.75em;
  }

  /* Links para código e site */
  .project-links {
    display: flex;
    justify-content: space-between;
  }
  .project-links a {
    width: 90px;
    text-decoration: solid;
    color: #000000;
    background: #ffffff;
    padding: 8px 12px;
    text-align: center;
    border-radius: 4px;
    transition: background 0.3s ease;
    font-size: 0.9em;
  }
  .project-links a:hover {
    background: #1660a5e0;
    color: #c4e8f1;
  }
