        /* Reset de margin e padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: #000;
            font-family: Arial, sans-serif;
        }

        .card {
            width: 350px;
            background-color: #efefef;
            border: none;
            cursor: pointer;
            transition: all 0.5s;
        }

        .image img {
            transition: all 0.5s;
        }

        .card:hover .image img {
            transform: scale(1.5);
        }

        .btn {
            height: 140px;
            width: 140px;
            border-radius: 50%;
        }

        .name {
            font-size: 22px;
            font-weight: bold;
            margin-top: 20px;
            text-align: center;
        }

        .btn1 {
            height: 40px;
            width: 150px;
            border: none;
            background-color: #28a745;
            color: white;
            font-size: 15px;
            margin-top: 20px;
        }

        .btn1:hover {
            background-color: #218838;
        }

        /* Estilos de notificações Vue.js */
        .vue-notification-group {
            display: block;
            position: fixed;
            z-index: 5000;
        }

        .vue-notification {
            font-size: 12px;
            padding: 10px;
            margin: 0 5px 5px;
            color: #fff;
            background: #44a4fc;
            border-left: 5px solid #187fe7;
        }

        /* Estilos responsivos */
        @media (max-width: 768px) {
            .card {
                width: 100%;
            }
        }