@import url(footer.css);
@import url(header.css);

.oque-fazemos {
  margin-top: 140px;
  text-align: center;
  padding: 0 20px;
}

.oque-container {
  max-width: 1100px;
  margin: 0 auto;
}

.oque-fazemos h2 {
  color: #0485ac;
  font-size: 2rem;
  margin-bottom: 20px;
}

.oque-fazemos p {
  color: #444;
  font-size: 16px;
  margin-bottom: 40px;
}

.oque-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.oque-item {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.oque-item:hover {
  transform: translateY(-5px);
}

.oque-item i {
  font-size: 30px;
  color: #0485ac;
  margin-bottom: 10px;
}

.oque-item h3 {
  color: #333;
  font-size: 18px;
  margin-bottom: 10px;
}

.oque-item p {
  color: #666;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  animation: pulsar 2s infinite;
}

.whatsapp-float img {
  width: 35px;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.secao-cta{
    margin-top: 90px;
}