body {
  margin: 0 !important;
  font-family: 'Segoe UI', sans-serif !important;
  background-color: #f5f7fa !important;
  color: #003262 !important;
}

/* Cabeçalho */
header {
  background: linear-gradient(90deg, #003366, #0055a5);
  color: white;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

header img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin-right: 1px; /* garante espaço entre foto e texto */
}

header .info {
  text-align: left;
  flex: 0;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
  header img {
    margin-right: 0px;
    margin-bottom: 1px;
  }
  header .info {
    flex: unset;
    text-align: center;
  }
}


/* Hero */
.hero {
  text-align: center !important;
  padding: 40px 20px !important;
  background: #eaf2f8 !important;
}

.hero h2 {
  font-size: 1.6em !important;
  color: #003366 !important;
}

.destaque {
  font-size: 1.3em !important;
  font-weight: bold !important;
  color: #0055a5 !important;
  margin: 20px 0 !important;
  background: #ffffff !important;
  padding: 15px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
  display: inline-block !important;
}

/* Serviços */
.servicos {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 20px !important;
  margin: 30px !important;
}

.card {
  background: white !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1) !important;
  padding: 20px !important;
  width: 220px !important;
  text-align: center !important;
  transition: transform 0.3s, background 0.3s, color 0.3s !important;
  cursor: pointer !important;
}

.card:hover {
  transform: scale(1.05) !important;
}

.card.selecionado {
  background: #25D366 !important;
  color: white !important;
}

/* Botões */
.btn {
  display: inline-block !important;
  padding: 15px 25px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  font-weight: bold !important;
  margin: 10px !important;
  transition: background 0.3s !important;
}

.whatsapp-btn {
  background-color: #25D366 !important;
  color: white !important;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d !important;
}

.grupo-btn {
  background-color: #ff9800 !important;
  color: white !important;
}

.grupo-btn:hover {
  background-color: #e68900 !important;
}

/* Rodapé */
footer {
  background-color: #003366 !important;
  color: white !important;
  text-align: center !important;
  padding: 20px !important;
}

footer a {
  color: #ffcc00 !important;
  text-decoration: none !important;
  font-weight: bold !important;
}