* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: #f5f5f5; color: #333; line-height: 1.6; }
.container { max-width: 800px; margin: 48px auto; padding: 40px; background: white; border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.05); text-align: center; }

/* Navbar moderna */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef2f7;
}
.navbar-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  background: linear-gradient(135deg, #4f46e5, #0ea5e9);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar-links { display: flex; gap: 8px; }
.navbar-links a {
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: .95rem;
  transition: background .2s ease, color .2s ease;
}
.navbar-links a:hover { color: #1e293b; background: #f1f5f9; }
.navbar-links a.ativo { color: #fff; background: linear-gradient(135deg, #4f46e5, #0ea5e9); }

@media (max-width: 480px) {
  .navbar-inner { flex-direction: column; gap: 12px; }
}
.hero h1 { font-size: 2.5rem; margin-bottom: 16px; color: #1e293b; }
.hero p { font-size: 1.1rem; color: #64748b; margin-bottom: 12px; }
.hero small { color: #94a3b8; font-size: 0.85rem; }

/* Texto principal maior na pagina Sobre */
.hero-sobre p { font-size: 1.6rem; line-height: 1.5; }

/* Grid de servicos */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.servico-card {
  background: #fff;
  border: 1px solid #eef2f7;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(15, 23, 42, .06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
}
.servico-icone {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
  color: #4f46e5;
}
.servico-icone svg { width: 30px; height: 30px; }
.servico-card h2 { font-size: 1.25rem; color: #1e293b; margin-bottom: 10px; }
.servico-card p { font-size: .95rem; color: #64748b; line-height: 1.5; }
