html, body {
  overflow-x: hidden;
}

img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}
.nav-fixed{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background-color: #063a88c2;
}

body {
    padding-top: 80px;
    
}
.titulo-azul {
    color: #084298;
}
.main-color{
    background-color:#ebebeb;
}
.logo-header {
    height: clamp(40px, 5vw, 80px); /* cresce suavemente com a tela */
  }
  
  .titulo-header {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 700;
  }
  
  .subtitulo-header {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 400;
  }

.whatsapp-icone {
  position: fixed;
  bottom: 20px;
  right: 40px;
  z-index: 9999;
  background-color: #25D366;
  color: white;
  font-size: 28px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  text-decoration: none;
}

.whatsapp-icone:hover {
  transform: scale(1.1);
  background-color: #1DA851;
}
.btn-filiese {
  padding: 2px 14px; /* altura x largura interna */
  font-size: 1rem;   /* mantém o tamanho da fonte */
  border-radius: 6px; /* pode deixar mais "justo" se quiser */
  margin-top: 5px;
}
