.elementor-35 .elementor-element.elementor-element-862367f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-a66b101 *//* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111;
  color: #fff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
}

.container-bio {
    
    display: flex;
    flex-direction: column;
    gap: 2rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.avatar-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem auto;
}

.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile h1 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.bio {
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.link-button {
  text-decoration: none;
  background-color: #222;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.link-button:hover {
  background-color: #444;
  transform: scale(1.02);
  color: #fff;
}/* End custom CSS */