/* Seção de Projetos */
#pag3 {
  width: 100%;
  background-color: #010B38;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#pag3A {
  background-color: #010B38;
  width: 90%;
  height: 92%;
  justify-items: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 2 colunas */
  gap: 15px;
  /* Espaço entre as divs */
}

.AB {
  max-width: 650px;
  object-fit: cover;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.AB:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.AB:hover .project-overlay {
  transform: translateY(0);
}

.project-overlay h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.project-overlay p {
  font-size: 0.9em;
  margin-bottom: 8px;
  opacity: 0.9;
}

.tech-stack {
  font-size: 0.8em;
  color: #61dafb;
  font-weight: 600;
}

.foto-projeto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.AB:hover .foto-projeto {
  transform: scale(1.05);
}
