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

body {
  font-family: 'Segoe UI', sans-serif;
  background-image: url("arquivos/back.jpg");
  color: #111111;
  padding: 2rem;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header h1 span {
  color: #333333;
}

header p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.foto-perfil {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #ccc;
}


.buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid #222;
  border-radius: 25px;
  text-decoration: none;
  color: #222;
  transition: all 0.3s ease;
}

.buttons a:hover {
  background-color: #ffffff;
}

/* Seção de projetos */
.projects {
  max-width: 800px;
  margin: 4rem auto;
}

.projects h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.project-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background-color: #f9f9f9;
  transition: transform 0.2s ease;
}
.project-card img{
  width: 100%;
  height: 120px; 
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  margin-bottom: 0.5rem;
}

.project-card p {
  color: #555;
  margin-bottom: 1rem;
}

.project-card a {
  color: #007bff;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

/* Rodapé */
footer {
  text-align: center;
  color: #777;
  font-size: 0.9rem;
  margin-top: 3rem;
}

/* Responsividade */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  .projects h2 {
    font-size: 1.5rem;
  }
}
