.footer {
  background-color: #040024 !important;
  color: white;
  padding: 40px 0;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.footer .footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .footer-col {
  flex: 1 1 250px;
  padding: 10px 20px;
  box-sizing: border-box;
  text-align: center;
}

.footer .footer-col p {
  margin: 8px 0;
}





.footer .social-icons a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer .social-icons a:hover i {
  transform: scale(1.3);
  /* Aumenta o ícone */

}

/* Responsivo */
@media (max-width: 768px) {
  .footer .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer .footer-col {
    padding: 15px 0;
  }

  .footer a {
    margin: 10px;
  }
}


/* ====== NOVO ESTILO REDES SOCIAIS====== */
.social-tst {
  display: grid;
  grid-template-columns: repeat(4, 50px);
  grid-template-rows: repeat(2, 50px);
  gap: 20px;
  justify-content: center;
  margin-top: 15px;
}


.social-tst .a_tst {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  --color: #4cd137;
}

.social-tst a:nth-child(1),
.social-tst a:nth-child(2),
.social-tst a:nth-child(3),
.social-tst a:nth-child(4) {
  grid-row: 1;
}

.social-tst a:nth-child(5),
.social-tst a:nth-child(6) {
  grid-row: 2;
  grid-column: 2 / span 1;
}

.social-tst a:nth-child(6) {
  grid-column: 3 / span 1;
}


.social-tst .a_tst:hover {
  text-decoration: none;
}

.social-tst .fa-brands,
.social-tst .fa-solid {
  font-size: 32px;
  color: white;
  transition: all 0.2s ease-in-out;
}

.social-tst .a_tst:hover .fa-brands,
.social-tst .a_tst:hover .fa-solid {
  color: var(--color);
  text-shadow: 0 0 30px var(--color);
}

/* Cores diferentes para cada ícone */
.social-tst a:nth-child(1) {
  --color: #4cd137;
}

/* WhatsApp */
.social-tst a:nth-child(2) {
  --color: #ff0050;
}

/* Instagram */
.social-tst a:nth-child(3) {
  --color: #429cf0;
}

/* LinkedIn */
.social-tst a:nth-child(4) {
  --color: #1155ad;
}

/* Facebook */
.social-tst a:nth-child(5) {
  --color: #fa0000;
}

/* Localização */
.social-tst a:nth-child(6) {
  --color: #fa7900;
}

/* Comprovante */


#whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 999;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#whatsapp-btn:hover {
  transform: scale(1.3);
}





/* Botão ferramentas */
/* Botão ferramentas */
/* Botão ferramentas */
.tools-float-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Botão principal de ferramentas */
.main-tool-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #343a40;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 22px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Efeito de hover no botão principal */
.main-tool-btn:hover {
  transform: scale(1.2); /* aumenta o botão */
  background-color: #495057; /* opcional: muda cor ao passar o mouse */
}

/* Botões filhos */
.tool-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  border: none;
  margin-bottom: 10px;
  text-align: center;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
}
/* Efeito de hover nos botões filhos (quando visíveis) */
.tool-btn:hover {
  background-color: #fa7900;
}



/* Mostrar os botões */
.tools-float-container.show .tool-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Classe extra que garante que fiquem invisíveis antes da classe .show */
.tool-btn.hidden {
  opacity: 0;
  pointer-events: none;
}


.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.footer-small {
  font-size: 13px;
  line-height: 1.7;
  opacity: 0.85;
}

.footer-copy {
  margin-top: 20px !important;
  font-size: 13px;
  opacity: 0.7;
}

.footer-legal {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}

.footer-legal p {
  font-size: 12px !important;
  opacity: 0.75;
  margin: 6px 0 !important;
  line-height: 1.6;
}
