/* =========================
   LUCIC PROJETOS CSS
========================= */

/* Container geral */
.lucic-projetos .lucic-container {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* =========================
   Categorias
========================= */
.lucic-categoria {
  margin-bottom: 60px;
}

.lucic-categoria h2 {
  font-size: 32px;
  margin-bottom: 30px;
  border-left: 6px solid #0066ff;
  padding-left: 12px;
  color: #222;
}

/* =========================
   Grid de Cards
========================= */
.lucic-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* =========================
   Cards
========================= */
.lucic-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

.lucic-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Imagem do Card */
.lucic-card img {
   width: 100%;             /* ocupa toda a largura do card */
  aspect-ratio: 16/9;      /* mantém proporção padrão */
  object-fit: contain;     /* mostra toda a imagem sem cortar */
  background-color: #f4f4f4; /* cor de fundo caso a imagem não ocupe todo o espaço */
  border-radius: 8px 8px 0 0; /* cantos arredondados só em cima */
}

/* Título do Card */
.lucic-card h3 {
  font-size: 18px;
  margin: 10px 15px 5px;
  text-align: center;
}

/* Descrição do Card */
.lucic-card p {
  font-size: 14px;
  color: #555;
  margin: 0 15px 15px;
  text-align: center;
}

/* Link do Card */
.lucic-card-link {
  display: inline-block;
  margin: 0 15px 15px;
  text-decoration: none;
  color: #fff;
  background: #0066ff;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 14px;
  text-align: center;
}

.lucic-card-link:hover {
  background: #004bb5;
}

/* Status de protótipo */
.lucic-card-status {
  display: block;
  margin: 0 15px 15px;
  color: #777;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}
.lucitec-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.lucic-card-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 15px;
}

.lucic-card-links a {
  font-size: 22px;
  color: #0066ff;
  transition: color 0.3s;
}

.lucic-card-links a:hover {
  color: #ff0000; /* destaque no hover, por exemplo */
}
/* =========================
   Estilo específico para categorias
========================= */
.marketing-digital .lucic-card h3 {
  color: #ff6600;
}

.desenvolvimento-sistemas .lucic-card h3 {
  color: #009966;
}

.conteudo-digital .lucic-card h3 {
  color: #9933cc;
}

/* =========================
   Responsividade
========================= */
@media (max-width: 768px) {
  .lucic-cards-grid {
    grid-template-columns: 1fr;
  }

  .lucic-card img {
    height: 200px;
  }
}