/* Cores personalizadas */
.fundo-principal {
  background-color: #610200;
}

.btn-principal {
  background-color: #610200;
  color: white;
  border: none;
}

.btn-principal:hover {
  background-color: #4e0100;
  color: white;
}

/* Seção destaque com imagem no topo */
.destaque-principal {
  padding-top: 0px;
  background: url('../imgs/slide.jpg') no-repeat top center;
  background-size: cover;
  color: white;
  text-align: center;
  padding-bottom: 120px;
}

/* Textos sob imagem em fundo preto */
.bg-dark a.btn-principal {
  background-color: #D6AC72;
  color: #610200;
}

.bg-dark a.btn-principal:hover {
  background-color: #DEC092;
  color: #610200;
}

/* Seção de depoimentos */
.depoimento {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.depoimento img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Rodapé */
.rodape {
  background-color: #DEC092;
  padding: 15px 0;
  font-size: 14px;
  color: #333;
}

.links-uteis {
  background-color: #fdf7ef;
}

.links-uteis h2 {
  color: #610200;
}

.link-card {
  border: 1px solid #D6AC72;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.text-bordo {
  color: #610200;
}

.duvidas-frequentes .accordion-button {
  background-color: #D6AC72;
  color: #610200;
  font-weight: bold;
}

.duvidas-frequentes .accordion-button:not(.collapsed) {
  background-color: #DEC092;
  color: #610200;
}

.duvidas-frequentes .accordion-body {
  background-color: #fffaf2;
}


.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 22px;
  background-color: #610200;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  z-index: 9999;
  display: none; /* inicialmente oculto */
}

.back-to-top:hover {
  background-color: #4e0100;
}


  .whatsapp-fixo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
  }
 
  .icones-sociais {
    text-align: center;
    padding: 20px 0;
  }
  .icones-sociais img {
    transition: transform 0.2s ease;
  }
  .icones-sociais img:hover {
    transform: scale(1.2);
  }