
body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  
}

/* Container principal com fundo azul */
.hero-container {
  background-color: #005BAC; /* Azul Porto Seguro */
  color: white;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Texto do lado esquerdo */
.hero-text {
  flex: 1 1 45%;
  max-width: 500px;
}

/* Imagem ou cards do lado direito */
.hero-image {}

/* tamanho de texto */


  .navbar-brand-text {
    font-size: 20px;
  }


  /* rodapé */
.rodape-consorcio {
  
  color: black;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.logo{
  font-size: 32px;
  
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
}
