/* ===== Projeto detail pages ===== */

.projeto-login{
  min-height:calc(100vh - 160px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 0;
}
.projeto-login-card{
  background:#fff;
  border:1px solid var(--linha);
  border-radius:18px;
  padding:42px;
  max-width:380px;
  width:100%;
  text-align:center;
  box-shadow:0 14px 30px rgba(15,23,20,.06);
}
.projeto-login-titulo{
  font-family:var(--serif);
  font-weight:600;
  font-size:1.5rem;
  margin-bottom:8px;
}
.projeto-login-sub{
  color:var(--cinza);
  font-size:.9rem;
  margin-bottom:26px;
}
.projeto-campo{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:18px;
  text-align:left;
}
.projeto-campo label{
  font-size:.82rem;
  font-weight:600;
  color:var(--cinza);
}
.projeto-campo input{
  font-family:var(--sans);
  font-size:1rem;
  padding:13px 15px;
  border:1px solid var(--linha);
  border-radius:10px;
  background:#fff;
  outline:none;
  transition:border-color .2s;
}
.projeto-campo input:focus{ border-color:var(--esmeralda); }
.projeto-login-erro{
  color:#e74c3c;
  font-size:.85rem;
  min-height:1.2em;
  margin-top:4px;
}
.projeto-voltar{
  display:block;
  margin-top:26px;
  font-size:.85rem;
  color:var(--cinza);
  font-weight:500;
}
.projeto-voltar:hover{ color:var(--esmeralda); }

/* Conteúdo do projeto (após login) */
.projeto-content{ display:none; }
.conteudo-cabecalho{ margin-bottom:40px; }
.etiqueta{ margin-bottom:12px; }

.projeto-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:34px;
}

.projeto-status-box{
  background:#fff;
  border:1px solid var(--linha);
  border-radius:16px;
  padding:26px 28px;
  margin-bottom:32px;
}
.projeto-status-titulo{
  font-family:var(--serif);
  font-weight:600;
  font-size:1.2rem;
  margin-bottom:16px;
  color:var(--esmeralda);
}
.projeto-status-lista{
  list-style:none;
  color:var(--cinza);
  line-height:1.7;
  font-size:.95rem;
}
.projeto-status-lista li{ padding:4px 0; }
.projeto-status-lista code{
  background:rgba(14,107,76,.08);
  padding:2px 8px;
  border-radius:4px;
  font-size:.88rem;
}

.projeto-apresentacao{ margin-top:40px; }
.projeto-apTitulo{
  font-family:var(--serif);
  font-weight:600;
  font-size:1.3rem;
  margin-bottom:24px;
  color:var(--texto);
}
.projeto-slide{
  background:#fff;
  border:1px solid var(--linha);
  border-radius:16px;
  padding:28px 30px;
  margin-bottom:18px;
}
.projeto-slide h4{
  font-family:var(--serif);
  font-weight:600;
  font-size:1.15rem;
  color:var(--esmeralda);
  margin-bottom:14px;
}
.projeto-slide p{ color:var(--cinza); line-height:1.7; }
.projeto-slide-list{
  list-style:none;
  margin-top:12px;
  line-height:1.7;
}
.projeto-slide-list li{ padding:5px 0; }
.destaque-vermelho{ color:#e74c3c; font-weight:600; }

.projeto-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px;
  margin-top:14px;
}
.projetoMiniCard{
  background:rgba(14,107,76,.04);
  border:1px solid var(--linha);
  border-radius:14px;
  padding:20px;
  text-align:center;
}
.projetoMiniCard.quest{
  background:rgba(248,113,113,.06);
  border-color:rgba(248,113,113,.2);
}
.projetoMiniCard .ico{ font-size:1.8rem; margin-bottom:10px; }
.projetoMiniCard h5{
  font-family:var(--sans);
  font-weight:600;
  font-size:.95rem;
  margin-bottom:6px;
}
.projetoMiniCard p{ color:var(--cinza); font-size:.85rem; line-height:1.5; }

.projeto-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}
.projeto-step{
  text-align:center;
  padding:18px 10px;
  border:1px solid var(--linha);
  border-radius:14px;
  background:#fff;
}
.projeto-step .num{
  width:36px;
  height:36px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  background:var(--esmeralda);
  color:#fff;
  border-radius:50%;
  font-family:var(--serif);
  font-weight:600;
  font-size:1.1rem;
}
.projeto-step h5{ font-family:var(--sans); font-weight:600; font-size:.9rem; margin-bottom:4px; }
.projeto-step p{ color:var(--cinza); font-size:.8rem; line-height:1.4; }

.projeto-fases{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:18px;
}
.projetoFase{
  text-align:center;
  padding:18px 10px;
  border:1px solid var(--linha);
  border-radius:14px;
  background:#fff;
}
.projetoFase .pnum{
  width:36px;
  height:36px;
  margin:0 auto 10px;
  display:grid;
  place-items:center;
  background:var(--esmeralda);
  color:#fff;
  border-radius:50%;
  font-family:var(--serif);
  font-weight:600;
  font-size:1.1rem;
}
.projetoFase h5{ font-family:var(--sans); font-weight:600; font-size:.9rem; margin-bottom:4px; }
.projetoFase p{ color:var(--cinza); font-size:.82rem; line-height:1.4; }

.projeto-sair{ margin-top:30px; text-align:right; }

@media (max-width:840px){
  .projeto-steps{ grid-template-columns:1fr 1fr; }
  .projeto-fases{ grid-template-columns:1fr 1fr; }
  .projeto-login-card{ padding:32px 24px; }
  .projeto-links{ justify-content:center; }
}
@media (max-width:560px){
  .projeto-steps{ grid-template-columns:1fr; }
  .projeto-fases{ grid-template-columns:1fr; }
}
