body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffeef5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .profile-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 6px 18px rgba(255, 182, 193, 0.2);
  }
  
  .foto-perfil {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f48fb1;
    margin-bottom: 20px;
  }
  
  .nome {
    font-size: 1.8rem;
    color: #d81b60;
    margin-bottom: 10px;
  }
  
  .sobre h2 {
    font-size: 1.2rem;
    color: #f06292;
    margin-bottom: 10px;
  }
  
  .sobre p {
    font-size: 1rem;
    color: #5e5e5e;
    line-height: 1.6;
  }
  
  .botao-link {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background-color: #f48fb1;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 30px;
    transition: background 0.3s ease;
  }
  
  .botao-link:hover {
    background-color: #ec407a;
  }
  