body{
    margin:0;
    font-family:'Inter', sans-serif;
    background:#f5f7fa;
    display:flex;
    justify-content:center;
}

.container{
    width:100%;
    max-width:680px;
    padding:30px 20px 60px;
    text-align:center;
}

.profile-img{
    width:110px;
    height:110px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

h1{
    margin:10px 0 5px;
    font-size:22px;
}

.subtitle{
    color:#555;
    font-weight:500;
    margin-bottom:25px;
}

.section-title{
    margin:35px 0 15px;
    font-weight:600;
    color:#333;
}

.btn-link{
    display:flex;
    align-items:center;
    background:#2A3235;
    color:white;
    text-decoration:none;
    padding:16px 20px;
    border-radius:14px;
    margin-bottom:14px;
    font-weight:600;
    transition:0.2s ease;
}

.btn-link:hover{
    transform:scale(1.02);
}

.btn-link i{
    width:28px;              /* largura fixa */
    font-size:20px;          /* tamanho fixo */
    text-align:center;
    margin-right:16px;       /* espaço entre ícone e texto */
}

.btn-link span{
    flex:1;
    text-align:left;         /* texto alinhado à esquerda */
}

.btn-pix{
    background:#009688;
}

.toast{
    position:fixed;
    bottom:20px;
    right:20px;
    background:#28a745;
    color:white;
    padding:12px 18px;
    border-radius:8px;
    opacity:0;
    transition:0.3s;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
}