body {
  font-family: 'Roboto', sans-serif;
}

.footer {
  background-color: #0d111c;
  color: #fff !important;
  padding: 60px 20px 40px;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

.footer p {
  color: #fff !important; 
}

.footer h3,
.footer h4 {
  color: #fff !important;
  text-transform: uppercase;
  text-align: center;
}

.footer a {
  color: #ffffff !important;
}

.footer a:hover {
  color: #FFD700 !important; /* amarelo no hover */
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  text-align: center;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  transition: transform 0.3s ease;
  text-align: center;
}

.footer-col h3,
.footer-col h4 {
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

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

.footer-col ul li a,
.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover,
.footer-col a:hover {
  color: #f1c40f !important;
}

.footer-social {
  margin-top: 16px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.footer-social a {
  margin: 0 8px;
  font-size: 22px;
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
}

.footer-social a:hover {
  color: #000000 !important;
  background-color: #f1c40f;
  transform: scale(1.15);
}

.btn-contact,
.btn-whatsapp {
  display: inline-block;
  min-width: 160px;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  margin-bottom: 12px;
  text-align: center;
  font-size: 15px;
  margin-left: auto;
  margin-right: auto;
}

.btn-sac {
  display: inline-block;
  min-width: 160px;
  padding: 12px 18px;
  border: 2px solid #f1c40f;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  text-align: center;
  background-color: transparent;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.btn-sac:hover {
  background-color: #f1c40f;
  color: #0d111c !important;
  cursor: pointer;
}

.btn-contact {
  background-color: #1c88e5;
  color: #fff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.btn-contact:hover,
.btn-whatsapp:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
  filter:contrast(3.08);
  cursor: pointer;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .footer-col {
    min-width: 100%;
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
}

.footer a.btn-sac:hover,
.footer a.btn-whatsapp:hover,
.footer a.btn-contact:hover {
  color: #000000 !important;
}