
body {
  background: #ffffff;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  padding: 15px 40px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}
header h1 {
  font-size: 1.5em;
  color: #2c3e50;
  margin: 0;
}
nav a {
  margin: 0 15px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
}
nav a:hover {
  color: #007BFF;
}
section {
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #2c3e50;
}
.botoes-acao-centro {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}
.btn-ligacao {
  background: #E53935;
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s;
}
.btn-whatsapp i, .btn-ligacao i {
  margin-right: 8px;
}
.btn-whatsapp:hover, .btn-ligacao:hover {
  transform: scale(1.05);
}
.avaliacoes {
  display: grid;
  gap: 20px;
}
.avaliacao {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.servicos-lista {
  list-style: none;
  padding: 0;
  font-size: 18px;
}
.servicos-lista li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
  color: #666;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  z-index: 999;
}
.whatsapp-float i {
  margin-right: 8px;
}
