@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #f0f0f0;
}

header {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #ffffff33;
}

header h1 {
  font-size: 2.8rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

nav a {
  margin: 0 1rem;
  color: #cccccc;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: border 0.3s, color 0.3s;
}

nav a:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}

.sobre {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 2rem;
}

.texto {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 2rem;
  border: none;
  max-width: 800px;
  text-align: justify;
  font-size: 1rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.texto strong {
  color: #ffffff;
  font-weight: 600;
}
