        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(149deg, #ffffff, #ff6a0011);
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #333;
            text-align: center;
        }

        .container {
            width: 90%;
            max-width: 420px;
            background: white;
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px 25px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
        }

        .icon {
            font-size: 70px;
            margin-bottom: 20px;
            animation: pulse 2s infinite;
            color: #ee7c2b;
        }

        h1 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
        }

        p {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .btn-scan {
            width: 100%;
            padding: 15px;
            border-radius: 50px;
            border: none;
            background: #ee7c2b;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-cardapio{
            width: 47%;
            padding: 10px;
            border-radius: 50px;
            border: 1px solid #818181;
            background: #f6f6f6;
            color: #333;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 12px;
            display: inline-block;
        }

        .btn-scan:hover, .btn-cardapio:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.25);
        }

        .footer {
            margin-top: 25px;
            font-size: 12px;
            opacity: 0.7;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }


        .error{
            margin-bottom: 23px;
            background: #ff000042;
            border-radius: 5px;
            padding: 10px 17px;
            border: 1px solid #aa02024d;
            width: fit-content;
            display: inline-block;
        }