body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fbfd;
  color: #222;
  line-height: 1.6;
}

/* Topbar com destaque branco para o logo */
.topbar {
  background-color: #fff;
  padding: 20px;
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .logo {
  height: 70px;
}

.cta-button {
  background-color: #0066cc;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 16px;
}

.cta-button:hover {
  background-color: #004999;
}

/* Banner */
.hero {
  background-image: url('img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  position: relative;
}

.hero .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  color: #fff;
  max-width: 700px;
  margin-left: 10%;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: #00a859;
  color: #fff;
  padding: 14px 24px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: #007b42;
}

/* Seções */
section {
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 10px;
  flex: 1 1 30%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* WhatsApp botão flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.whatsapp-float img {
  height: 60px;
}

/* Rodapé */
footer {
  background-color: #1e2a38;
  color: white;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}
.sobre-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1 1 50%;
}

.sobre-imagem {
  flex: 1 1 40%;
  text-align: center;
}

.sobre-imagem img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.servicos-btn {
  text-align: center;
  margin-top: 40px;
}

.botao-destaque {
  display: inline-block;
  margin-top: 20px;
  background-color: #28a745;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.botao-destaque:hover {
  background-color: #218838;
}
.vantagens-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.vantagens-img {
  flex: 1 1 40%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.vantagens-lista {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.vantagens-lista li {
  margin-bottom: 12px;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vantagens-lista li::before {
  content: "✔";
  color: #28a745;
  font-weight: bold;
}

