/* Container principal */
.project-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
  
  /* Grid de projetos */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  /*padding: 1rem*/
}
  
.project-project-card {
  display: flex;
  flex-direction: column;
  background: #000;
  border: 1px solid #24f29c33;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
  
.project-project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #24f29c33;
  border-color: #24f29c;
}
  
.projectPic {
  width: 100%;
  height: 200px;
  object-fit: fill;
  border-radius: 4px;
  border: 1px solid #24f29c33;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.projectPic:hover {
  transform: scale(1.02);
  box-shadow: 0 0 15px #24f29c33;
}

.project-project-card-title {
  color: #24f29c;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-family: "Science Gothic", sans-serif;
  font-style:oblique
  
  
}
 
.project-project-card p {
    flex-grow: 1;
    color: #F2F0EF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: "Share Tech Mono", monospace;
}
  
  /* Botões */
.button-project {
    margin-top: auto; 
    align-self: flex-start; 
    display: inline-flex;
    padding: 1rem 2rem;
    margin: 0.5rem;
    font-size: 1.0rem;
    border: 2px solid #24f29c;
    background: transparent;
    color: #24f29c;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
  
  .button-project:hover {
  background: #24f29c;
  color: #000;
  box-shadow: 0 0 20px #24f29c;
}
  
  /* Tooltip */
.tooltip {
  position: relative;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background: #24f29c;
  color: #000;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Responsividade */
@media (max-width: 1024px) {
  .project-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .project-gallery {
    grid-template-columns: 1fr;
  }
  
  .project-project-card {
    padding: 1rem;
  }
  
  .projectPic {
    height: 150px;
  }
}
@media (max-width: 768px) {
  .project-project-card {
    /* Ajuste para mobile */
    min-height: auto;
  }
}