.artigo-projeto {
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 16px;
  margin: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.artigo-projeto:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.conteudo {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.imagem {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.imagem img:hover {
  transform: scale(1.05);
}

.imagem-placeholder {
  color: #666;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.detalhes {
  color: #333;
  font-family: 'Roboto', sans-serif;
  flex: 1;
  margin: 5px;
}

.detalhes h2 {
  text-align: start;
  font-size: 20px;
  margin-bottom: 20px;
  color: #004169;
  font-weight: 600;
  padding: 10px;
  padding-left: 20px;
  border-left: 6px solid #706F6F;
}

.informacoes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.informacoes p {
  background-color: #f5f5f5;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 13px;
  flex: 1 1 auto;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.descricao {
  text-align: start;
  padding-left: 10px;
  line-height: 1.5rem;
}

.rodape {
  border-top: 1px solid #e0e0e0;
  padding-top: 10px;
}

.rodape p {
  margin: 4px 0;
  font-size: 12px;
  color: #666;
}

.rodape a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.rodape a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.cursos-atribuicoes{
  background-color: rgb(0, 141, 202);
  color: white;
  padding: 10px 14px;
  margin: 12px;
  border-radius: 5px;
}

@media (max-width: 768px) {
  .conteudo {
    flex-direction: column;
    align-items: flex-start;
  }

  .imagem {
    width: 100%;
    height: auto;
    margin-bottom: 12px;
  }

  .imagem img {
    border-radius: 8px;
  }

  .detalhes {
    margin: 0;
  }

  .detalhes h2 {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .informacoes {
    gap: 8px;
  }

  .informacoes p {
    font-size: 12px;
    padding: 8px 12px;
  }

  .descricao {
    padding-left: 0;
  }

  .rodape p {
    font-size: 11px;
  }

  .imagem-placeholder {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .artigo-projeto {
    padding: 12px;
    margin: 8px;
  }

  .detalhes h2 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .informacoes {
    gap: 6px;
  }

  .informacoes p {
    font-size: 11px;
    padding: 6px 10px;
  }

  .descricao {
    font-size: 14px;
  }

  .rodape p {
    font-size: 10px;
  }
}
