body {
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

.grayscale-logo {
  max-height: 60px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: 0.3s ease;
}

.grayscale-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}


.bg-cover {
  background-size: cover;
  background-position: center;
}

#servicos .card i {
  color: #0d6efd;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 14px 16px;
  border-radius: 50%;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  border-radius: 12px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.icon-wrapper i {
  display: inline-block;
  transition: transform 0.2s;
}

.service-card:hover .icon-wrapper i {
  transform: scale(1.1);
}



footer {
  font-size: 0.9rem;
}
