    body {
        font-family: 'Inter', sans-serif;
        margin: 0;
        padding: 0;
        color: #333;
        background-color: #f7f9fc;
    }

    header {
        background: #ffffff;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }
    
    .logo {
            text-align: center;
            padding: 20px;
            background: #fff;
        }

        .logo img {
            max-height: 60px;
        }
    
        .container {
            max-width: 800px;
            margin: 10px auto;    
            padding: 20px;    
            padding: 30px 20px;        
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.03);
        }

    h1, h2, h3 {
        color: #003366;
        margin-bottom: 10px;
    }

    p {
        line-height: 1.6;
    }

    .section {
        margin-bottom: 40px;
    }
    .section ul {
        line-height: 1.4;
    }

    .stats {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-box {
        flex: 1 1 200px;
        background-color: #e6f0ff;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    
    .flow {
        background-color: #f0f8ff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    }
    .flow ol {
        padding-left: 20px;
        margin: 0;
        line-height: 1.4;
    }

    .ad-table {
        width: 100%;
        border-collapse: collapse;
        min-width: 600px;
        font-size: 15px;
        background-color: #fff;
        border: 1px solid #ddd;
    }

    .ad-table th,
    .ad-table td {
        padding: 12px;
        border: 1px solid #ddd;
        text-align: left;
        white-space: nowrap;
    }

    .ad-table tbody tr {
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .ad-table tbody tr:hover {
        background-color: #f0f8ff;
    }

    .cta {
        background-color: #e6f0ff;
        color: #fff;
        padding: 40px 20px;
        text-align: center;
        border-radius: 12px;
    }

    .cta-button {
        display: inline-block;
        background-color: #007bff;
        color: white;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        margin-top: 10px;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #0056b3;
    }

    .actions {
        text-align: right;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .actions button,
    .actions a {
        background-color: #004080;
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 6px;
        cursor: pointer;
        text-decoration: none;
        font-size: 14px;
        margin-left: 10px;
    }

    .actions button:hover,
    .actions a:hover {
        background-color: #0066cc;
    }

    .gold, .silver, .bronze {
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        color: #fff;
        font-size: 15px;
        line-height: 1.6;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .gold { background-color: #d4af37; }
    .silver { background-color: #c0c0c0; }
    .bronze { background-color: #cd7f32; }

    .table-responsive {
        width: 100%;
        overflow-x: auto;
    }
    
    .aviso-desconto {
    margin-top: 15px;
    color: #0a7a0a; /* verde mais suave */
    font-weight: bold;
    font-size: 1rem;
}

    @media (max-width: 768px) {
        .ad-table th.ver-col,
        .ad-table td.ver-col {
            display: none;
        }

        .stats {
            flex-direction: column;
        }

       
    }

    /* Lightbox */
    #lightbox-modal {
        display: none;
        position: fixed;
        z-index: 9999;
        padding-top: 60px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0,0,0,0.9);
    }

    #lightbox-modal img {
        display: block;
        margin: auto;
        max-width: 90%;
        max-height: 80vh;
    }

    #lightbox-modal .close {
        position: absolute;
        top: 20px;
        right: 35px;
        color: #fff;
        font-size: 40px;
        font-weight: bold;
        cursor: pointer;
    }


        .toast {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #ff9800;
            color: white;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease;
            z-index: 9999;
        }
        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }
        .plano {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            background: #fff;
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
        }

        .plano img {
            max-width: 120px;
            height: auto;
            margin-right: 20px;
            cursor: pointer;
            border-radius: 4px;
        }

        .plano label {
            flex: 1;
            font-size: 16px;
        }
        .plano input {
            width: auto;
        }
        .dura {
            margin: 20px 20px;
            display: ruby;
        }
        @media (max-width: 600px) {
            .plano {
                flex-direction: column;
                align-items: flex-start;
            }

            .plano img {
                margin-bottom: 10px;
            }
        }

        .resumo-selecao {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            margin-top: 30px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }

        .resumo-selecao h3 {
            margin-top: 0;
        }
        .resumo ul {
            list-style: none;
            padding: 0;
        }

        .resumo li {
            padding: 8px 0;
            border-bottom: 1px solid #ddd;
        }

        #itens-selecionados {
            list-style: none;
            padding: 0;
        }

        #itens-selecionados li {
            padding: 4px 0;
        }

        .btn-continuar {
            display: block;
            background-color: #007BFF;
            color: white;
            padding: 14px;
            text-align: center;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            margin-top: 30px;
            text-decoration: none;
        }

        .btn-continuar:hover {
            background-color: #0056b3;
        }

        

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            padding-top: 60px;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
        }

        .lightbox-content {
            margin: auto;
            display: block;
            max-width: 90%;
        }

        .lightbox:target {
            display: block;
        }

        .close {
            position: absolute;
            top: 20px;
            right: 35px;
            color: white;
            font-size: 40px;
            font-weight: bold;
            text-decoration: none;
        }

        .close:hover {
            color: #bbb;
        }
  
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff9800;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 9999;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}
form label {
            font-weight: bold;
            margin-top: 15px;
            display: block;
        }

        form input {
            padding: 10px;
            width: 100%;
            margin-top: 5px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }

        form button {
            margin-top: 30px;
            background-color: #0077cc;
            color: #fff;
            padding: 12px 20px;
            border: none;
            cursor: pointer;
            width: 100%;
            font-size: 16px;
            border-radius: 4px;
        }

        form button:hover {
            background-color: #005fa3;
        }
        
      
        .box {
            
            padding: 25px;
            max-width: 500px;
            margin: 0 auto;
            border-radius: 8px;
            text-align: center;
        }
        
        #btnPagarMP,#btnPagarPix {
            background-color: #28a745;
            color: white;
            border: none;
            padding: 15px 25px;
            font-size: 16px;
            cursor: pointer;
            border-radius: 5px;
        }
        #btnPagarMP,#btnPagarPix:hover {
            background-color: #218838;
        }
        #qrcode {
            max-width: 300px;
            margin: 0 auto;
        }
        #qrcode img {
            margin-top: 20px;
            max-width: 100%;
            height: auto;
        }
        
        .ohnohoney{
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        height: 0;
        width: 0;
        z-index: -1;
    }
    .briefing {
    height: 110px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 5px;
}

.preview {
    position: relative;
    display: inline-block;
    margin: 5px;
}

.preview img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 4px;
    border: 1px solid #ccc;
    display: block;
}

/* botão de excluir */
.btn-remove {
    position: absolute;
    margin-top: 0;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: rgba(220, 0, 0, 0.85);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    line-height: 1;
}

/* ícone menorzinho */
.btn-remove i {
    font-size: 18px;
    line-height: 1;
}

/* aparece só no hover */
.preview:hover .btn-remove {
    opacity: 1;
}

.btn-remove {
    opacity: 0;
    transition: opacity 0.2s;
}

