/*Perfil*/
.seu-perfil h1 {
    color: #3EBBEB;
    font-weight: bold;
    font-size: 1.8rem;
}

.seu-perfil p {
    color: #8A8A8A;
}

.row {
    overflow-x: hidden;
}

.perfil-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.perfil-container .img-fluid {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin-left: 10px;
    object-fit: cover;
    cursor: pointer;
}

.perfil-container h6 {
    font-size: 20px;
}

.seu-perfil .btn-trocar-foto {
    background: linear-gradient(90deg, rgba(19, 180, 238, 1) 0%, rgba(45, 248, 250, 1) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    width: 220px;
    transition: transform .3s ease;
}

.seu-perfil .btn-trocar-foto:hover {
    transform: scale(1.1);
}

.seu-perfil .btn-outline-perfil {
    color: #3EBBEB;
    border: 1px solid #3EBBEB;
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    transition: .3s ease;
    font-weight: bold;
}

.seu-perfil .btn-outline-perfil:hover {
    color: #fff;
    border: 1px solid #3EBBEB;
    background-color: #3EBBEB;
    border-radius: 10px;
    padding: 10px;
}

.seu-perfil .form-label {
    color: #C2C2C2;
    font-weight: 600;
}

.btn-gradient {
    background: linear-gradient(90deg, #D15153, #862EF6);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.btn-gradient:hover {
    background: linear-gradient(90deg, #C02FEA, #E63B6E);
    color: #fff;
}

.botoes-container {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-encerrar {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container-encerrar a {
    color: #3EBBEB;
    text-decoration: none;
    font-weight: 800;
}

.container-encerrar a:hover {
    text-decoration: underline;
}

.container-encerrar p {
    color: #828282;
}