.image-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 40%;
  overflow: hidden;
  border-radius: 10px;
}

.image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #192537;
  opacity: 0.10;
  border-radius: 10px;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.text-overlay h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.text-overlay p {
  font-size: 16px;
}

/* Regras de mídia para ajustar a visualização em dispositivos móveis */

@media (max-width: 768px) {
  .image-container {
    padding-bottom: 60%; /* Ajusta o height da imagem para melhor encaixe */
  }
  
  .text-overlay {
    width: 80%; /* Ajusta a largura do texto para melhor encaixe */
  }
  
  .text-overlay h2 {
    font-size: 18px; /* Reduz o tamanho do título para melhor encaixe */
  }
  
  .text-overlay p {
    font-size: 14px; /* Reduz o tamanho do texto para melhor encaixe */
  }
}


.btn-personalizado {
  display: inline-block;
  padding: 12px 24px;
  background-color: #192537;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}

.btn-personalizado:hover {
  background-color: #1c2c3b;
  color: #fff;
}

.btn-personalizado:focus {
  outline: none;
}

.btn-personalizado:active {
  transform: translateY(2px);
}


.client-section {
  text-align: center;
}

.client-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #1c2c3b;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  margin-bottom: 20px;
  opacity: 0.10;
  transition: opacity 0.3s;
}

.client-card:hover {
  opacity: 1;
}

.client-card img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
  background-color: #1c2c3b;
}

.client-card h3 {
  width: 200px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}








.card {
  position: relative;
  overflow: hidden;
  border: none;
  background-color: transparent;
  
	
}

.card-img {
  transition: all 0.3s ease;
max-height: 250px;
opacity: 0.5;
}

.card:hover .card-img {
  opacity: 0.7;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #192537;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover .card-img-overlay {
  opacity: 0.7;
}

.card-title {
  color: #E9E9E9;
  font-weight: bold;
  transition: all 0.3s ease;
}

.card:hover .card-title {
  transform: translateY(-50%);
}

.card-text {
  color: #E9E9E9;
  transition: all 0.3s ease;
}

.card:hover .card-text {
  transform: translateY(0%);
}




.navbar {

  width: 100%;
  background-color: rgba(25, 37, 55, 0.9); /* Cor de fundo com opacidade */
  transition: background-color 0.3s ease-in-out;

}

.navbar-scrolled {
  background-color: rgba(25, 37, 55, 1); /* Cor de fundo sem opacidade */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra para efeito visual */
  z-index: 9999; /* Definir ordem de empilhamento alta */
  position: fixed;
  top: 0;
    width: 100%;
}

