.projetos {
    padding: 40px;
    margin: 10px;
}

.titulo-header {
  display: flex;
  align-items: center; /* centraliza verticalmente */
  justify-content: center; /* centraliza horizontalmente */
  gap: 16px; /* espaço entre imagem e texto */
  margin-bottom: 20px;
}

.titulo-img {
  width: 70px; /* ou o tamanho desejado */
  height: auto;
  padding-top: 1.5rem;
  
}

.container-projetos {
    display: inline-flex;
    border: solid 2px #ffffff;
    border-radius: 1rem;
    background-color: #1e3c64;
    flex-wrap: nowrap;
    gap: 20px;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.texto-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.foto-projeto1 {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    border: solid 2px #ffffff;
    border-radius: 1rem;
    object-fit: contain;
    
}

.titulo-pagina {
    text-align: center;
    color: #ffffff;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.subtitulo {
    font-size: 1.5rem;
    color: #fbfbfb;
    margin: 0;
    margin-left: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    display: inline-block;
    border-bottom: 3px solid;
    padding-bottom: 8px;
}

.texto-projeto {
    font-size: 1rem;
    color: #e0e0e0;
    margin: 20px;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.texto-projeto2 {
    font-size: 1rem;
    color: #fef968;
    margin: 20px;
    text-align: justify;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.link-contato {
    color: #fef968;
    text-decoration: none;
    font-weight: bold;
}

.container-incentivo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}
/* ====== Responsividade ====== */

@media (max-width: 600px) {
   .container-projetos {
    flex-direction: column;
    align-items: center;
   }

   .texto-container {
    align-items: center;
    width: 100%;
   }

   .subtitulo {
    text-align: center;
    margin-left: 0;
   }

   .texto-projeto {
    text-align: center;
    margin: 10px;
   }

   .titulo-img{
    padding-top: 1rem;
   }
}
