body {
  font-family: 'Ubuntu', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #f8f9fa;
}

.perfil-header h1 {
  margin-top: 20px;
  margin-bottom: 40px;
  font-size: 2rem;
  text-align: center;
  background-color: #35b0e56b;
  border-radius: 8px;
  padding: 10px 0;
}

.perfil-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #35b0e5;
  padding: 10px 30px;
  background: #fff;
}

.perfil-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}
.perfil-avatar:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(53, 176, 229, 0.2);
}

.perfil-main {
  display: flex;
  gap: 32px;
  max-width: 900px;
  margin: 40px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 32px;
}

.perfil-detalhes {
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-right: 1px solid #eee;
  padding-right: 24px;
}

.social-link {
  display: block;
  color: #1976d2;
  text-decoration: none;
  margin-bottom: 8px;
  font-weight: 500;
  transition: color 0.2s;
}
.social-link:hover {
  color: #f44336;
}

.capa-img {
  border-radius: 8px;
  transition: border 0.2s, filter 0.2s;
}
.capa-img:hover {
  border: 2px solid #1976d2;
  filter: brightness(90%);
}

.perfil-about {
  flex: 1;
}
.perfil-about p {
  margin-bottom: 18px;
}

.perfil-rodape {
  border-top: 2px solid #35b0e5;
  margin-top: 40px;
  padding: 16px 0;
  text-align: center;
  background: #fff;
  border-radius: 0 0 12px 12px;
  font-size: 0.95rem;
}
.perfil-rodape a {
  color: #1976d2;
  text-decoration: underline;
}
.perfil-rodape a:hover {
  color: #f44336;
}
