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

body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
  border-bottom: 1px solid #000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo span {
  color: #888;
}

nav a {
  margin-left: 2rem;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

#hero {
  text-align: center;
  padding: 8rem 2rem;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #000;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #444;
}

section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

#projetos .projetos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.projeto {
  border: 1px solid #000;
  padding: 1.5rem;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.projeto:hover {
  transform: translateY(-5px);
  background: #f9f9f9;
}

footer {
  text-align: center;
  border-top: 1px solid #000;
  padding: 2rem;
  font-size: 0.9rem;
}




.logo-img {
  height: 60px;
  vertical-align: middle;
}

.hero-logo {
  height: 300px;
  margin-bottom: 50px;
}

