/* Reset básico */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

/* Global */
:root {
  --container: 1100px;
  --bg: #f8f8f8;
  --text: #1f1f1f;
  --muted: #555;
}
* { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif; color: var(--text); }

/* Estrutura de layout */
.container { width: min(1100px, 90%); margin: 0 auto; }

/* Cabeçalho */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo { font-weight: 700; font-size: 1.05rem; }
.main-nav a {
  margin-left: 16px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.main-nav a:hover { color: #111; }

/* Hero */
.hero {
  padding: 64px 0;
  background: linear-gradient(135deg, #e9f0ff 0%, #ffffff 60%);
}
.hero-content { max-width: 800px; }
.hero h1 { margin: 0 0 12px; font-size: 2rem; }
.hero p { margin: 0 0 18px; color: var(--muted); }
.btn {
  display: inline-block;
  padding: 10px 16px;
  background: #1e90ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}
.btn:hover { background: #1a7bd6; }

/* Seções */
.section { padding: 48px 0; }
.section h2 { margin-bottom: 8px; }

/* Grid de times */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.subtitle { color: var(--muted); }

/* Cards de times */
.team-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  border-left: 6px solid var(--c);
  box-shadow: 0 2px 6px rgba(0,0,0,.05);
}
.team-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  flex-shrink: 0;
  background: var(--c);
}
.team-content h3 { margin: 6px 0 4px; font-size: 1.15rem; }
.team-content p { margin: 0 0 6px; color: #555; }
.team-content ul { margin: 0; padding-left: 16px; font-size: 0.92em; color: #555; }

@media (max-width: 600px) {
  .team-card { flex-direction: column; align-items: center; text-align: center; }
  .team-logo { margin: 0 auto 6px; }
}

/* Rodapé */
.site-footer { padding: 20px 0; background: #fff; border-top: 1px solid #eee; text-align: center; color: #555; }

/* Cores de acessibilidade para cada time (opcional) */
.team-card[style] { /* Garantir que a cor de borda funcione com inline style com --c */ }