/* HERO */

.projeto-detalhe-hero {
  min-height: 260px;
  display: flex;
  align-items: center;
  text-align: center;
}

.projeto-detalhe-hero .titulo-secao {
  color: #fff;
}

.projeto-detalhe-bloco.azul .titulo-secao {
  color: #fff;
}

.projeto-detalhe-bloco.branco .titulo-secao {
  color: var(--azul-primario);
}


/* BLOCOS */

.projeto-detalhe-bloco {
  padding: 90px 0;
}

/* CARD VISÃO GERAL */

.card-detalhe {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
}

.descricao-projeto {
  font-size: 18px;
  margin-bottom: 25px;
  color: var(--cinza-medio);
}

.lista-dados li {
  margin-bottom: 8px;
}

/* FASES */

.card-fase {
  display: flex;
  gap: 30px;
  align-items: center;

  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--sombra);
  overflow: hidden;

  transition: 0.4s;
}

.card-fase:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

.card-fase img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.card-fase:hover img {
  transform: scale(1.08);
}

.fase-texto {
  padding: 30px;
}

/* CTA */

.projeto-detalhe-cta {
  text-align: center;
  padding: 100px 0;
}

.btn-projeto {
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn-projeto:hover {
  transform: scale(1.05);
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .card-fase {
    flex-direction: column;
  }

  .card-fase img {
    width: 100%;
    height: 220px;
  }
}
