/* Hero topo */
.hero-projetos {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 100px 20px 80px;
  text-align: center;
}

.hero-projetos h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #212529;
}

.hero-projetos p {
  color: #6c757d;
  font-size: 1.1rem;
  margin-top: 15px;
}

/* Botão com pixels (já no style.css) reaproveitado */

/* Cards de projetos em estilo tela */
.projeto-card-fx {
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  border: 8px solid #343a40;
  border-bottom-width: 16px;
  cursor: pointer;
}

.projeto-card-fx::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 8px;
  background: #ccc;
  border-radius: 10px;
}

.projeto-card-fx:hover {
  transform: translateY(-6px);
}

.projeto-card-fx .overlay {
  background: rgba(0,0,0,0.65);
  color: #fff;
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  text-align: left;
  transition: background 0.3s ease;
}

.projeto-card-fx .overlay h5 {
  margin: 0 0 5px;
  font-size: 1rem;
  font-weight: 600;
}

.projeto-card-fx .overlay p {
  font-size: 0.875rem;
  color: #ddd;
  margin-bottom: 0;
}

/* Seção chamada para orçamento */
.cta-orcamento {
  background: linear-gradient(135deg, #003566, #0077b6);
  color: #fff;
}

.cta-orcamento h2 {
  font-weight: bold;
  font-size: 2rem;
}

.cta-orcamento p {
  font-size: 1.1rem;
}

.cta-orcamento .btn {
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-projetos h1 {
    font-size: 2rem;
  }

  .projeto-card-fx {
    height: 220px;
  }

  .cta-orcamento h2 {
    font-size: 1.5rem;
  }
}

.typing-wrapper {
  display: flex;
  justify-content: center;
}
