/* ====== RODAPÉ GODOY ====== */
.footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  color: #f5bc1c;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-section p,
.footer-section ul,
.footer-section li {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #ccc;
  font-size: 14px;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-section.social a {
  font-size: 20px;
  margin-right: 15px;
  color: #ccc;
  transition: color 0.3s ease-in-out;
}

.footer-section.social a:hover {
  color: #f5bc1c;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  font-size: 13px;
  color: #999;
}


.footer-bottom .whatsapp-rodape {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 1.3rem;
  color: #25D366;
  text-decoration: none;
  font-weight: bold;
  animation: pulse 2s infinite;
  transition: transform 0.3s;
}

.footer-bottom .whatsapp-rodape i {
  font-size: 2rem;
}

.footer-bottom .whatsapp-rodape:hover {
  color: #1ebe5d;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.9; }
}


/* Tornar o botão do WhatsApp fixo no canto inferior direito */
.footer-bottom .whatsapp-rodape {
  position: fixed;
  bottom: 25px;
  right: 25px;
}
