body {
  font-family: 'Inter', Arial, sans-serif;
  background: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 50px 20px;
}

.perfil {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-top: 10px;
  border: 3px solid #2d2d2d; 
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6);
}

h1 {
  margin: 20px 0 10px 0;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif; 
}

p {
  color: #b5b5b5;
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
  margin: auto;
  margin-bottom: 70px;
  font-family: 'Inter', sans-serif; 
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: #1e1e1e;
  color: #ffffff;
  padding: 14px 40px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  width: 260px;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2a;
  font-family: 'Inter', sans-serif;
}

.links a:hover {
  background: #2a2a2a; 
  transform: translateY(-2px);
  box-shadow: 0px 4px 12px rgba(0,0,0,0.6);
}

.botao {
  display: inline-block;
  margin-top: 70px;
  padding: 14px 28px;
  background: #2a2a2a; 
  color: #ffffff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.botao:hover {
  background: #1e1e1e; 
  transform: translateY(-2px);
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 25px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.foto {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.2s ease;
}

.foto:hover {
  transform: scale(1.05);
}

.foto img {
  width: 100%;
  aspect-ratio: 1 / 1;   /* Mantém quadrado */
  object-fit: cover;     /* Corta sem distorcer */
  border-radius: 8px;
  display: block;
}

.foto p {
  margin-top: 10px;
  font-size: 15px;
  color: #b5b5b5;
}