* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  scroll-behavior: smooth;
  background: #f5f5f5;
  color: #031831;
}

a {
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  padding: 20px 0;
}

/* HERO */

.hero {
  background: linear-gradient(to right, #031831, #1c419c);
  padding: 80px 20px;
  color: #ffffff;
}

#logo {
  width: 260px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
}

.hero-proof {
  margin-top: 25px;
  font-size: 1rem;
  opacity: 0.9;
}

/* BOTÃO PRINCIPAL */

.btn-whatsapp {
  background: #a88c58;
  color: #031831;
  padding: 16px 35px;
  font-weight: 700;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp:hover {
  background: #b69f74;
  transform: translateY(-3px);
}

/* TITULOS */

section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* SERVIÇOS */

.servicos .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* DIFERENCIAIS */

.diferenciais ul {
  list-style: none;
  margin-top: 20px;
}

.diferenciais li {
  margin: 10px 0;
  font-size: 1.1rem;
}

/* AVALIAÇÕES */

.avaliacoes {
  padding: 80px 20px;
  background: linear-gradient(to right, #f4f6fb, #ffffff);
}

.avaliacoes h2 {
  color: #1c419c;
}

.subtitulo {
  margin-bottom: 40px;
}

.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.avaliacao {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

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

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.btn-avaliacoes {
  margin-top: 30px;
  padding: 14px 30px;
  background: #1c419c;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.btn-avaliacoes:hover {
  background: #16367e;
  transform: scale(1.05);
}

.linkGoogle {
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  color: #1c419c;
  transition: 0.3s;
}

.linkGoogle:hover {
  color: #a88c58;
}

.hidden {
  display: none;
}

/* CTA FINAL */

.cta {
  background: #031831;
  color: #ffffff;
  padding: 80px 20px;
}

/* FOOTER */

footer {
  background: linear-gradient(to right, #031831, #1c419c);
  padding: 30px 0;
  text-align: center;
  color: white;
}

.reference {
  margin-top: 15px;
}

/* REDES SOCIAIS */

.redes-sociais {
  margin-top: 25px;
}

.redes-sociais a {
  margin: 0 12px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s;
}

.redes-sociais a:hover {
  color: #a88c58;
}

.icons {
  width: 40px;
  height: 40px;
  border-radius: 50px;
}

/* WHATSAPP FLUTUANTE */

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* TOOLTIP */
.whatsapp-float .tooltip {
  position: absolute;
  right: 80px; /* distância do botão */
  background: #1c419c;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
  pointer-events: none;
}

/* Mostrar ao passar o mouse */
.whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMAÇÃO */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .servicos .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .avaliacoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .servicos .cards {
    grid-template-columns: 1fr;
  }

  .avaliacoes-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
