body {
    font-family: 'Barlow', sans-serif;
    --bege: #E6E0D6;
    --marrom-escuro: #816D4F;
    --marrom-claro: #B29463;
}

input[type=checkbox] {
    border: 2px solid var(--marrom-claro);
    box-shadow: none;
  }

  input[type=checkbox]:checked,
  input[type="checkbox"]:focus {
    background-color: var(--marrom-claro);
    border-color: var(--marrom-claro);
    box-shadow: none;
    outline: none;
  }

  /* .banner-1 img{
    margin-top: 600px;
    margin-bottom: 60px;
  } */

  .banner-2 {
    background-image: url('img/morcego-1.png');
    background-position: center;
  }

  .banner-3 {
    background-image: url('img/banner-3.png');
  }

  .banners {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }


.banners-titulo {
    --bs-bg-opacity: 0.5;
}


.botao-padrao {
    background-color: var(--marrom-claro);
    color: black;
  }

.botao-padrao:hover {
    background-color: var(--marrom-escuro);
  }


  .input-range::-webkit-slider-thumb {
    background-color: var(--marrom-claro);
  }

  footer {
    background-color: var(--marrom-claro);
  }
  .responsive-img {
    max-width: 100%;
    height: auto;
}
  .modal-body {
    text-align: justify;
  }

  [data-bs-theme="dark"] {
    color: white;
    .nav-link, card-body, .offcanvas, .accordion, .btn {
        --bs-nav-link-color: white;
        --bs-card-color: white;
        --bs-offcanvas-color: white;
        --bs-body-color: white;
        --bs-body-color: white;
    }
  }

  #btnVoltarTopo {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--marrom-escuro);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: opacity 0.3s;
}


.logo-pref {
  width: 650px;
}


hr {
 margin-top: 60px;
}

.encontrar-vacina {
  width: 100%;
  height: 100%;
}

#aviso {
  background-color: #816D4F;
  color: #fff;
  transition: transform 0.3s ease-in-out;


}

.importante-aviso {
  padding: 20px;
  text-align: center;
  cursor: pointer;
  /* border: 2px solid var(--marrom-escuro); */
  font-size: 1.5em;
  margin-bottom:50px;
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  
}


#aviso:hover {
  background-color: var(--marrom-claro); /* Muda a cor de fundo */
  transform: scale(1.05); /* Aumenta levemente o tamanho */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: black;

}

.icone {
  width: 30px;
  height: 30px;
  animation: piscar 1s infinite; /* Faz o ícone piscar */
}


.piscar-icone {
  animation: piscar 1s infinite; /* Faz o ícone piscar */
  
}
/* animaçao do icone */

@keyframes piscar {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0;
  }
}


/* Estilos para telas menores que 768px (md) */
@media (max-width: 767.98px) {
  .banners img {
      display: block;
      width: 100%;
  }
  .logo-pref {
    width: 100%;
}
}

/* Estilos para telas entre 768px (md) e 1199.98px (xl) */
@media (min-width: 768px) and (max-width: 1199.98px) {
  .banners img {
      display: none; /* Oculta a imagem por padrão */
  }
  .banners img.d-md-block {
      display: block; /* Mostra a imagem para telas md */
  }
  .logo-pref {
    width: 80%;
}
}

/* Estilos para telas maiores ou igual a 1200px (xl) */
@media (min-width: 1200px) {
  .banners img {
      display: none; /* Oculta a imagem por padrão */
  }
  .banners img.d-xl-block {
      display: block; /* Mostra a imagem para telas xl */
  }

  .logo-pref {
    width: 60%;
}
}

/* Estilos para telas maiores ou igual a 1400px (xxl) */
@media (min-width: 1400px) {
  .banners img {

      display: none; /* Oculta a imagem por padrão */
  }
  .banners img.d-xxl-block {
      display: block; /* Mostra a imagem para telas xxl */
  }

  .logo-pref {
    width: 50%;
}
}