body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(to bottom right, #4e54c8, #8f94fb);
    color: #ffffff;
}

.perfil-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.profile-container {
    background: #ffffff;
    border-radius: 25px;
    padding: 20px;
    width: 90%;
    max-width: 700px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 20px;
}

.icone-msg{
    color: var(--verde);
}

.welcome-text {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    position: relative;    
    margin-bottom: 50px;
}

.profile-pic-container {
    position: relative;
    margin-top: -190px;
    margin-bottom: 50px;
}

.profile-pic-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
}

.profile-pic-container button {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 800;
    color: var(--verde);
}

.profile-info {
    margin-bottom: 20px;
}

.profile-info input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 25px;
    background: #f0f0f0;
    text-align: center;
    font-size: 16px;
    color: #000000;
}

.profile-info input[readonly] {
    color: #d0d0d0;
}

.save-button {
    background: var(--verde);
    color: #ffffff;
    padding: 15px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

.save-button:hover {
    background: #333333;
}
