.main-card {
  width: 100%;
  height: 200px;
  border-radius: 20px;
  background-color: #105398;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  padding: 20px;
}

.main-card img {
  width: 27%;
}

.fvs-image {
  width: 33% !important;
}

.card-title {
  font-family: "Galano Grotesque", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
}

a {
  text-decoration: none;
  display: block;
  border-radius: 20px;
}

.footer {
  background-color: #105398;
  color: #fff;
  font-family: "Galano Grotesque", sans-serif;
  font-size: 1rem;
  bottom: 0;
  left: 0;
  width: 100%;
}


.btn-voltar-icon {  
  position: fixed; /* Fixed position relative to the viewport */   
  top: 1rem; /* Adjust as needed for spacing from the top */  
  left: 1rem; /* Adjust as needed for spacing from the left */  
  font-size: 1.5rem; /* Icon size */  
  color: white;   
  text-decoration: none;    
  z-index: 999; /* Ensure it stays on top of other content */  
  background-color: rgba(0, 0, 0, 0.3); /* Slightly transparent background for visibility */ 
  padding: 0.9rem 0.8rem;      
  border-radius: 50%; /* Make it a circle */     
  display: flex;    
  align-items: center;   
  justify-content: center;   
}

.btn-voltar-icon:hover {       
  color: #f0f0f0; /* Hover effect */                                                                                                                                                                        
  background-color: rgba(0, 0, 0, 0.5); 
}

/* Media query for responsiveness */  
/*
@media (max-width: 768px) {  
   .btn-voltar-icon {     
     font-size: 1.2rem;  
     top: 0.5rem;   
     left: 0.5rem;  
     padding: 0.4rem 0.6rem;   
    }
}
*/


/****** header *******/
.banner-green2 {
  background-color: #32cd35;
  padding-top: 15px;
  padding-bottom: 35px;
  width: 100%;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-border-bottom-left-radius: 20px;
  -webkit-border-bottom-right-radius: 20px;
  overflow: hidden;
}

.banner-container {
  display: flex; /* Ativa o Flexbox */
  justify-content: center; /* space-around; /* Espaça as imagens */
  align-items: center; /* Alinha verticalmente */
  flex-wrap: wrap; /* Quebra para a próxima linha em telas pequenas */
  gap: 0; /* Remove o espaço entre as imagens */
}

.banner-imagem1 {
  width: 40%; /* Ocupa quase metade da largura */
  max-width: 500px; /* Limita o tamanho máximo em telas grandes */
  height: auto; /* Mantém a proporção da imagem */
 /* margin: 1%; /* Pequena margem */
  padding-right: 25px;
}

.banner-imagem2 {
  width: 32%; /* Ocupa quase metade da largura */
  max-width: 500px; /* Limita o tamanho máximo em telas grandes */
  height: auto; /* Mantém a proporção da imagem */
  /*margin: 1%; /* Pequena margem */
}


@media (max-width: 657px) {
  .banner-container {
    flex-direction: column;     
  }

  .btn-voltar-icon { 
    font-size: 1.0rem; /* Icon size */  
  }
}
