.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;
}

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

.footer i {
  margin-right: 8px;
  color: #fa7900;
}

.footer a {
  color: white;
  font-size: 20px;
  margin-right: 15px;
  display: inline-block;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #fa7900;
}
.footer-col:hover {
  color: #ffffff;
}

.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 */
  color: #ffffff;        /* Torna branco */
}

#whatsapp-btn {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
}

/* 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;
  }
}


#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);
}