
/* Pierre Santos - Estilo leve complementar ao TailwindCSS */

body {
  background-color: #f9fafb;
  color: #1f2937;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
}

header {
  background-color: #111827;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 4px solid #2563eb;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
}

main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 200px;
  border-radius: 9999px;
  margin: 1rem auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  color: #111827;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.25rem;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}
