:root {
  --primary-color: #004a8f;
  --secondary-color: #0066cc;
  --text-color: #333;
  --background-color: #ffffff;
  --section-bg: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.unifil-logo {
  height: 40px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.section {
  padding: 6rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.section:nth-child(even) {
  background-color: var(--section-bg);
}

h1,
h2,
h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 3rem;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
}

h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

.project-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.team-member {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  width: 200px;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-course {
  color: #666;
  margin-bottom: 0.5rem;
}

.member-github {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.member-github:hover {
  text-decoration: underline;
}

.tema-content,
.comunidade-content {
  max-width: 800px;
  margin: 0 auto;
}

.flex{
  display: flex;
  align-items: center;
}

a button{
  margin-left: 1rem;
  margin-top: 0.5rem;
  background: var(--secondary-color);
  color: white;
  padding: 0.5rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}a button:hover {
  background: var(--primary-color);
}

.casoUso{
  width: 50%;
  object-fit: cover;
}

footer {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem;
}

@media (max-width: 1200px) {
  .team-members {
    justify-content: center;
  }

  .team-member {
    width: calc(33.33% - 1rem);
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .team-member {
    width: 100%;
  }
}
