body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('macman.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20px 0;
    min-height: 100vh;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
  }
  
  .container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 520px;
    color: #fff;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #fff;
  }

  h1 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .bio {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .social-links a {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s, transform 0.3s;
  }
  
  .social-links a:hover {
    color: #00bfff;
    transform: scale(1.1);
  }
  
  @media (max-width: 500px) {
    .container {
        max-width: 90%;
        padding: 20px;
    }
  }

.contact {
  margin-top: 25px;
  text-align: left;
}

.contact h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  text-align: center;
}

#formContato input,
#formContato textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  outline: none;

  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  font-size: 14px;
}

#formContato textarea {
  min-height: 110px;
  resize: vertical;
}

#formContato input::placeholder,
#formContato textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

#formContato input:focus,
#formContato textarea:focus {
  border-color: rgba(0, 191, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.18);
}

.botoes {
  display: flex;
  gap: 10px;
}

.botoes button {
  flex: 1;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  padding: 12px 10px;

  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: bold;

  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}

.botoes button:hover {
  background: rgba(0, 191, 255, 0.25);
  color: #fff;
  transform: translateY(-1px);
}

#msgErro {
  margin: 10px 0 0 0;
  font-size: 13px;
  min-height: 18px;
  color: #ffd1d1;
  text-align: center;
}
