body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #121212;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    background: radial-gradient(ellipse at top left, #1a1a1a, #0a0a0a);
}

.card {
    position: relative;
    background: rgba(30, 30, 30, 0.65);
    backdrop-filter: blur(12px);
    border: 2px solid #9b5de5;
    border-radius: 25px;
    /* padding: 40px; */
    padding: 40px 40px 10px 40px;
    /* top 40px, right 40px, bottom 0, left 40px */

    text-align: center;
    box-shadow: 0 0 25px #9b5de550;
    width: 90%;
    max-width: 400px;
}



.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #9b5de5;
    object-fit: cover;
    margin-bottom: 20px;
    /* animation: float 3s ease-in-out infinite; */
}

.typing {
    width: 0;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #9b5de5;
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: typing 3s steps(40, end) forwards, blink 0.75s step-end infinite;
}

.quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn {
    background-color: #2a2a2a;
    color: #ffffff;
    border: 2px solid #9b5de5;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #9b5de5;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 0 12px #9b5de5;
}

.btn-container {
    display: flex;
    margin-right: -30px;
    justify-content: flex-end;
    /* alinha conteúdo à direita */
    margin-top: 30px;
    /* espaçamento superior opcional */
}



@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes blink {
    50% {
        border-color: transparent
    }
}


.btn-back {
    position: fixed;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

.btn-back:hover {
    background-color: rgba(155, 93, 229, 0.2);
}

.btn-back svg {
    display: block;
    stroke: #9b5de5;
    width: 18px;
    height: 18px;
}