#card_contacto {
    background: var(--gradient);
    margin: 100px auto 20px;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    color: var(--background-color);
    a{
        color: var(--background-color);
        text-decoration: none;
    }
    p{
        margin-bottom: 1px;
    }
    #profile_image {
        width: 50%;
        max-width: 200px;
        margin: -100px auto 5px;
        border-radius: 50%;
        box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
    }
    #name{
        font-family: AllianzNeo-Bold;
        font-size: 1.5em;
        margin: 0;
    }
    #social{
        display: flex;
        width: 80%;
        margin: 0 auto;
        a{
            margin: 4%;
            display: block;
            width: inherit;
        }
    }
    #botones{
        display: flex;
        flex-direction: column;
        *{
            text-decoration: none;
            background-color: var(--background-color);
            color: var(--dark-gray);
            height: 60px;
            width: 80%;
            margin: 10px auto;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--border-radius);
            box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        *:hover{
            background-color: var(--light-gray);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }
    }
    #wallet{
        display: none;
        width: 80%;
        *{
            width: 100%;
        }
        margin: 10px auto;
    }
    #qr{
        background-color: var(--background-color);
        border-radius: var(--border-radius);
        box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.3), 0 2px 2px 0 rgba(0, 0, 0, 0.2);
        width: 80%;
        margin: 10px auto;
    }
}
